mirror of
https://github.com/mhinz/vim-galore.git
synced 2025-04-03 19:49:28 +08:00
Add mappings for saner behavior of and N
Add visual and operator-pending modes mappings
This commit is contained in:
parent
8bc1efb762
commit
20f20b4105
@ -1997,7 +1997,12 @@ If you want `n` to always search forward and `N` backward, use this:
|
||||
|
||||
```vim
|
||||
nnoremap <expr> n 'Nn'[v:searchforward]
|
||||
xnoremap <expr> n 'Nn'[v:searchforward]
|
||||
onoremap <expr> n 'Nn'[v:searchforward]
|
||||
|
||||
nnoremap <expr> N 'nN'[v:searchforward]
|
||||
xnoremap <expr> N 'nN'[v:searchforward]
|
||||
onoremap <expr> N 'nN'[v:searchforward]
|
||||
```
|
||||
|
||||
## Saner command-line history
|
||||
|
Loading…
x
Reference in New Issue
Block a user