Skip to content

Commit

Permalink
Merge pull request #469 from VSCodeVim/visual-block-mode
Browse files Browse the repository at this point in the history
Visual Block Mode
  • Loading branch information
johnfn authored Aug 9, 2016
2 parents 4e0bf31 + 6cc99d1 commit 62d00e1
Show file tree
Hide file tree
Showing 11 changed files with 517 additions and 104 deletions.
7 changes: 7 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@
"search.exclude": {
"out": true // set this to false to include "out" folder in search results
},
"vim.insertModeKeyBindings": [
{
"before": ["j", "j"],
"after": ["<esc>"]
}
],

"typescript.tsdk": "./node_modules/typescript/lib", // we want to use the TS server from our node_modules folder to control its version
"editor.tabSize": 2,
"editor.insertSpaces": true,
Expand Down
11 changes: 10 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,11 @@
"command": "extension.vim_ctrl+u",
"when": "editorTextFocus"
},
{
"key": "ctrl+v",
"command": "extension.vim_ctrl+v",
"when": "editorTextFocus && vim.mode != 'Insert Mode'"
},
{
"key": "ctrl+d",
"command": "extension.vim_ctrl+d",
Expand Down Expand Up @@ -150,6 +155,10 @@
"type": "boolean",
"description": "Enable some vim ctrl key commands that override otherwise common operations, like ctrl+c"
},
"vim.blahblah": {
"type": "boolean",
"description": "blah"
},
"vim.insertModeKeyBindings": {
"type": "array",
"description": "Keybinding overrides to use for insert mode."
Expand Down Expand Up @@ -199,4 +208,4 @@
"typings": "^1.0.4",
"vscode": "^0.11.13"
}
}
}
Loading

0 comments on commit 62d00e1

Please sign in to comment.