mirror of
https://github.com/zyedidia/micro.git
synced 2026-02-11 01:20:23 +09:00
9 lines
179 B
Lua
9 lines
179 B
Lua
function onSave()
|
|
local handle = io.popen("goimports -w view.go")
|
|
local result = handle:read("*a")
|
|
handle:close()
|
|
|
|
view:ReOpen()
|
|
messenger:Message(result)
|
|
end
|