This commit is contained in:
newbie 2024-01-03 14:18:04 +08:00
parent dc59083710
commit ca0520cd1e
3 changed files with 3 additions and 7 deletions

View File

@ -24,7 +24,6 @@ end
G.opt.rtp:prepend(lazypath)
require("keymap")
require("customcmd")
if G.g.vscode then
require('vscode')

View File

@ -1,6 +0,0 @@
-- G.api.nvim_buf_create_user_command( "*.py", "R" , "!python3 %", { complete = true })
-- G.cmd[[command! R !python3 %]]
-- G.cmd[[command! -range C <line1>,<line2>]]

View File

@ -1,2 +1,5 @@
return {
on_attach = function()
G.cmd[[command! R !python3 %]]
end
}