Skip to content

Instantly share code, notes, and snippets.

@kianryan
Created August 30, 2018 11:05
Show Gist options
  • Save kianryan/66b43e35d7af94ad1cd108f9ceb0bcca to your computer and use it in GitHub Desktop.
Save kianryan/66b43e35d7af94ad1cd108f9ceb0bcca to your computer and use it in GitHub Desktop.
Quick NERD Commenting for VS Code/VIM
"vim.normalModeKeyBindings": [
{
"before": ["<leader>", "c", "c"],
"commands": [
"editor.action.addCommentLine"
]
},
{
"before": ["<leader>", "c", "u"],
"commands": [
"editor.action.removeCommentLine"
]
}
],
"vim.visualModeKeyBindingsNonRecursive": [
{
"before": ["<leader>", "c", "c"],
"commands": [
"editor.action.addCommentLine"
]
},
{
"before": ["<leader>", "c", "u"],
"commands": [
"editor.action.removeCommentLine"
]
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment