Stupid markdown numbering system

This commit is contained in:
Grant Mathews 2016-07-04 10:06:25 -07:00 committed by GitHub
parent 6c22df4d6f
commit c6b42bf764

View File

@ -27,25 +27,25 @@ Adjust configurations through user settings (File -> Preferences -> User Setting
* How can I bind `jj` to `<esc>`?
1. Open the Command palette (cmd-p on OSX, probably ctrl-shift-p on Windows), and add the following:
```
"vim.insertModeKeyBindings": [
{
"before": ["j", "j"],
"after": ["<esc>"]
}
]
```
```
"vim.insertModeKeyBindings": [
{
"before": ["j", "j"],
"after": ["<esc>"]
}
]
```
2. If you want to press `jj` in modes which are not Insert Mode and still have it trigger `<esc>`, do the following as well:
```
"vim.otherModesKeyBindings": [
{
"before": ["j", "j"],
"after": ["<esc>"]
}
]
```
"vim.otherModesKeyBindings": [
{
"before": ["j", "j"],
"after": ["<esc>"]
}
]
```
3. Restart VSCode!