Skip to content

Commit

Permalink
fix normal modes settings per VSCodeVim/Vim#2726
Browse files Browse the repository at this point in the history
add leader a command in vim normal mode to focus next error
some auto formatting of settings.json
  • Loading branch information
kortina committed Oct 8, 2019
1 parent a34b9b0 commit e565618
Showing 1 changed file with 21 additions and 32 deletions.
53 changes: 21 additions & 32 deletions vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,13 +57,10 @@
// "commands": [{ "command": "editor.action.triggerSuggest", "args": [] }]
// }
// ],
"vim.otherModesKeyBindingsNonRecursive": [
"vim.normalModeKeyBindingsNonRecursive": [
{
"after": [],
"before": [
"g",
"l"
],
"before": ["g", "l"],
"commands": [
{
"args": [],
Expand All @@ -73,10 +70,7 @@
},
{
"after": [],
"before": [
"<leader>",
"e"
],
"before": ["<leader>", "e"],
"commands": [
{
"args": [],
Expand All @@ -86,11 +80,7 @@
},
{
"after": [],
"before": [
"<leader>",
"r",
"a"
],
"before": ["<leader>", "r", "a"],
"commands": [
{
"command": "runInTerminal.runLast"
Expand All @@ -99,11 +89,7 @@
},
{
"after": [],
"before": [
"<leader>",
"r",
"l"
],
"before": ["<leader>", "r", "l"],
"commands": [
{
"args": {
Expand All @@ -115,11 +101,7 @@
},
{
"after": [],
"before": [
"<leader>",
"r",
"b"
],
"before": ["<leader>", "r", "b"],
"commands": [
{
"args": {
Expand All @@ -131,11 +113,7 @@
},
{
"after": [],
"before": [
"<leader>",
"r",
"s"
],
"before": ["<leader>", "r", "s"],
"commands": [
{
"args": {
Expand All @@ -144,7 +122,17 @@
"command": "runInTerminal.run"
}
]
}
},
{
"after": [],
"before": ["<leader>", "a"],
"commands": [
{
"command": "editor.action.marker.nextInFiles"
}
]
},
{}
],
"window.zoomLevel": 0,
"workbench.activityBar.visible": false,
Expand All @@ -158,5 +146,6 @@
"workbench.colorTheme": "Tomorrow Night",
"workbench.startupEditor": "newUntitledFile",
"workbench.statusBar.visible": true,
"zenMode.hideStatusBar": false
}
"zenMode.hideStatusBar": false,
"python.pythonPath": "$HOME/.pyenv/shims/python"
}

0 comments on commit e565618

Please sign in to comment.