mirror of
https://github.com/zyedidia/micro.git
synced 2025-06-18 14:55:38 -04:00

Syscall is replaced with IoctlSetWinsize in this version to fix a build error that occurs with Solaris.
40 lines
1.3 KiB
Modula-2
40 lines
1.3 KiB
Modula-2
module github.com/zyedidia/micro/v2
|
|
|
|
require (
|
|
github.com/blang/semver v3.5.1+incompatible
|
|
github.com/dustin/go-humanize v1.0.0
|
|
github.com/go-errors/errors v1.0.1
|
|
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51
|
|
github.com/mattn/go-isatty v0.0.20
|
|
github.com/mattn/go-runewidth v0.0.16
|
|
github.com/micro-editor/json5 v1.0.1-micro
|
|
github.com/micro-editor/tcell/v2 v2.0.11
|
|
github.com/micro-editor/terminal v0.0.0-20250324214352-e587e959c6b5
|
|
github.com/mitchellh/go-homedir v1.1.0
|
|
github.com/sergi/go-diff v1.1.0
|
|
github.com/stretchr/testify v1.4.0
|
|
github.com/yuin/gopher-lua v1.1.1
|
|
github.com/zyedidia/clipper v0.1.1
|
|
github.com/zyedidia/glob v0.0.0-20170209203856-dd4023a66dc3
|
|
golang.org/x/text v0.4.0
|
|
gopkg.in/yaml.v2 v2.2.8
|
|
layeh.com/gopher-luar v1.0.11
|
|
)
|
|
|
|
require (
|
|
github.com/creack/pty v1.1.18 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/gdamore/encoding v1.0.0 // indirect
|
|
github.com/lucasb-eyer/go-colorful v1.0.3 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/rivo/uniseg v0.2.0 // indirect
|
|
github.com/zyedidia/poller v1.0.1 // indirect
|
|
golang.org/x/sys v0.28.0 // indirect
|
|
)
|
|
|
|
replace github.com/kballard/go-shellquote => github.com/micro-editor/go-shellquote v0.0.0-20250101105543-feb6c39314f5
|
|
|
|
replace layeh.com/gopher-luar v1.0.11 => github.com/layeh/gopher-luar v1.0.11
|
|
|
|
go 1.19
|