You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-`flash-jump.cancel`: cancel flash jump during input, biding to `escape` by default
13
+
14
+
## For vscode vim users
15
+
16
+
1. If you find this extension does not work, add following to your `settings.json`:
17
+
18
+
```json
19
+
"extensions.experimental.affinity": {
20
+
"vscodevim.vim": 1
21
+
},
22
+
```
23
+
24
+
This setting also [improves vscode vim's performance](https://github.com/VSCodeVim/Vim?tab=readme-ov-file#-faq), you might find it helpful to enable it even if you don't use this extension
25
+
26
+
1. If you find that `escape` shortcut of `flash-jump.cancel` does not work, app following to the end of your `keybindings.json`:
27
+
28
+
```json
29
+
{
30
+
"key": "escape",
31
+
"command": "flash-jump.cancel",
32
+
"when": "editorTextFocus && flash-jump.active"
33
+
},
34
+
```
35
+
36
+
The order matters here since the latter keybindings have higher priorities.
0 commit comments