2020-05-04 14:16:15 +00:00
|
|
|
module github.com/zyedidia/micro/v2
|
2019-02-04 04:17:24 +00:00
|
|
|
|
|
|
|
|
require (
|
2019-02-04 05:24:55 +00:00
|
|
|
github.com/blang/semver v3.5.1+incompatible
|
2019-02-04 04:17:24 +00:00
|
|
|
github.com/dustin/go-humanize v1.0.0
|
|
|
|
|
github.com/go-errors/errors v1.0.1
|
2020-01-02 23:30:51 +00:00
|
|
|
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51
|
2024-12-31 12:32:34 +00:00
|
|
|
github.com/mattn/go-isatty v0.0.20
|
2025-01-05 12:20:53 +00:00
|
|
|
github.com/mattn/go-runewidth v0.0.16
|
2025-01-01 10:30:13 +00:00
|
|
|
github.com/micro-editor/json5 v1.0.1-micro
|
2025-01-04 14:55:46 +00:00
|
|
|
github.com/micro-editor/tcell/v2 v2.0.11
|
2025-01-14 17:20:37 +00:00
|
|
|
github.com/micro-editor/terminal v0.0.0-20250105114944-ffd0fc59e777
|
2019-02-04 04:17:24 +00:00
|
|
|
github.com/mitchellh/go-homedir v1.1.0
|
2019-12-26 21:37:02 +00:00
|
|
|
github.com/sergi/go-diff v1.1.0
|
2020-01-02 01:44:45 +00:00
|
|
|
github.com/stretchr/testify v1.4.0
|
2024-12-27 22:59:12 +00:00
|
|
|
github.com/yuin/gopher-lua v1.1.1
|
2022-11-06 01:30:52 +00:00
|
|
|
github.com/zyedidia/clipper v0.1.1
|
2019-02-04 04:17:24 +00:00
|
|
|
github.com/zyedidia/glob v0.0.0-20170209203856-dd4023a66dc3
|
2025-01-01 10:30:13 +00:00
|
|
|
golang.org/x/text v0.4.0
|
2022-01-07 02:14:50 +00:00
|
|
|
gopkg.in/yaml.v2 v2.2.8
|
2024-12-27 23:03:56 +00:00
|
|
|
layeh.com/gopher-luar v1.0.11
|
2019-02-04 04:17:24 +00:00
|
|
|
)
|
2020-01-02 01:44:45 +00:00
|
|
|
|
2024-09-16 17:21:43 +00:00
|
|
|
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
|
2025-01-05 12:20:53 +00:00
|
|
|
github.com/rivo/uniseg v0.2.0 // indirect
|
2024-09-16 17:21:43 +00:00
|
|
|
github.com/zyedidia/poller v1.0.1 // indirect
|
2024-12-31 12:32:34 +00:00
|
|
|
golang.org/x/sys v0.6.0 // indirect
|
2024-09-16 17:21:43 +00:00
|
|
|
)
|
|
|
|
|
|
2025-01-05 11:19:11 +00:00
|
|
|
replace github.com/kballard/go-shellquote => github.com/micro-editor/go-shellquote v0.0.0-20250101105543-feb6c39314f5
|
2020-06-13 20:58:20 +00:00
|
|
|
|
2024-12-27 23:03:56 +00:00
|
|
|
replace layeh.com/gopher-luar v1.0.11 => github.com/layeh/gopher-luar v1.0.11
|
2022-01-07 02:11:02 +00:00
|
|
|
|
2025-01-01 10:31:46 +00:00
|
|
|
go 1.19
|