nvim/lua/lsp/c.lua

12 lines
268 B
Lua
Raw Normal View History

2023-11-24 12:59:48 +08:00
return {
2024-01-06 00:30:26 +08:00
on_attach = function()
G.api.nvim_create_user_command('R', function()
G.cmd [[set splitbelow]]
G.cmd [[sp]]
G.cmd [[term g++ "%" -o "%<" && ./"%<" && rm "%<"]]
2024-01-08 14:23:13 +08:00
G.cmd [[resize 10]]
2024-01-06 00:30:26 +08:00
G.cmd [[startinsert]]
end, {})
end
2023-11-24 12:59:48 +08:00
}