mirror of
https://github.com/vale981/tridactyl
synced 2025-03-05 17:41:40 -05:00
Merge pull request #3455 from fluem/visual_mode_fix
Make w in visual mode behave like in vim
This commit is contained in:
commit
45060f89fa
1 changed files with 1 additions and 1 deletions
|
@ -364,7 +364,7 @@ export class default_config {
|
|||
h: 'js document.getSelection().modify("extend","backward","character")',
|
||||
e: 'js document.getSelection().modify("extend","forward","word")',
|
||||
w:
|
||||
'js document.getSelection().modify("extend","forward","word"); document.getSelection().modify("extend","forward","character")',
|
||||
'js document.getSelection().modify("extend","forward","word"); document.getSelection().modify("extend","forward","word"); document.getSelection().modify("extend","backward","word"); document.getSelection().modify("extend","forward","character")',
|
||||
b:
|
||||
'js document.getSelection().modify("extend","backward","character"); document.getSelection().modify("extend","backward","word"); document.getSelection().modify("extend","forward","character")',
|
||||
j: 'js document.getSelection().modify("extend","forward","line")',
|
||||
|
|
Loading…
Add table
Reference in a new issue