mirror of
https://github.com/prurigro/darkcloud-nvimconfig.git
synced 2024-11-09 23:06:38 -05:00
Bind ' to run macros
This commit is contained in:
parent
133987cbfd
commit
52e363521f
1 changed files with 7 additions and 0 deletions
|
@ -188,6 +188,9 @@
|
||||||
" <Leader>< | (V) -> un-indent all the lines currently selected
|
" <Leader>< | (V) -> un-indent all the lines currently selected
|
||||||
" <Leader>< | (N) -> un-indent the current line
|
" <Leader>< | (N) -> un-indent the current line
|
||||||
"
|
"
|
||||||
|
" (macros)
|
||||||
|
" ' | (N) -> run a macro
|
||||||
|
"
|
||||||
" (movement)
|
" (movement)
|
||||||
" = | (N) -> go to the first char on the next line
|
" = | (N) -> go to the first char on the next line
|
||||||
" _ | (N) -> go to the first char on the previous line
|
" _ | (N) -> go to the first char on the previous line
|
||||||
|
@ -701,6 +704,10 @@
|
||||||
nnoremap <Leader>< v<gv<Esc>
|
nnoremap <Leader>< v<gv<Esc>
|
||||||
"}
|
"}
|
||||||
|
|
||||||
|
"MACROS:{
|
||||||
|
nnoremap ' @
|
||||||
|
"}
|
||||||
|
|
||||||
"MOVEMENT:{
|
"MOVEMENT:{
|
||||||
"additional mappings for easier access
|
"additional mappings for easier access
|
||||||
nnoremap = +
|
nnoremap = +
|
||||||
|
|
Loading…
Reference in a new issue