update nvim vscode config

This commit is contained in:
asep komarudin 2023-12-26 13:31:18 +07:00
parent aad95a29a8
commit ccff8a9728
2 changed files with 26 additions and 0 deletions

View file

@ -242,3 +242,24 @@ end
function Navigation_right()
VSCodeNotify("workbench.action.navigateRight")
end
function Select_all()
VSCodeNotify("editor.action.selectAll")
end
function Copy_clipboard()
VSCodeNotify("editor.action.clipboardCopyAction")
end
function Paste_clipboard()
VSCodeNotify("editor.action.clipboardPasteAction")
end
function Save()
VSCodeNotify("workbench.action.files.save")
VSCodeNotify("workbench.action.files.saveAll")
end
function Close()
VSCodeNotify("workbench.action.closeActiveEditor")
end