19 lines
449 B
Lua
19 lines
449 B
Lua
return {
|
|
on_attach = function()
|
|
G.api.nvim_create_user_command('R', function()
|
|
G.cmd [[set splitbelow]]
|
|
G.cmd [[sp]]
|
|
G.cmd [[term go run %]]
|
|
G.cmd [[resize 10]]
|
|
G.cmd [[startinsert]]
|
|
end, {})
|
|
G.api.nvim_create_user_command('Rgin', function()
|
|
G.cmd [[set splitbelow]]
|
|
G.cmd [[sp]]
|
|
G.cmd [[term go run ./main.go]]
|
|
G.cmd [[resize 10]]
|
|
G.cmd [[startinsert]]
|
|
end, {})
|
|
end
|
|
}
|