mirror of
https://github.com/prurigro/darkcloud-nvimconfig.git
synced 2024-11-12 16:06:39 -05:00
Fixed less.vim unmappings properly
This commit is contained in:
parent
30e5dff895
commit
caed6a7476
1 changed files with 6 additions and 6 deletions
|
@ -10,12 +10,12 @@
|
||||||
"============================================================"
|
"============================================================"
|
||||||
|
|
||||||
" Undo unwanted less.vim keymappings
|
" Undo unwanted less.vim keymappings
|
||||||
unmap v
|
map v <Nop>
|
||||||
unmap w
|
noremap w <S-Right>
|
||||||
if mapcheck('<PageDown>', 'b')|unmap <PageDown>|endif
|
noremap <PageDown> <C-F>
|
||||||
if mapcheck('<PageDown>', 'b')|unmap <kPageDown>|endif
|
noremap <kPageDown> <C-F>
|
||||||
if mapcheck('<PageDown>', 'b')|unmap <PageUp>|endif
|
noremap <PageUp> <C-B>
|
||||||
if mapcheck('<PageDown>', 'b')|unmap <kPageUp>|endif
|
noremap <kPageUp> <C-B>
|
||||||
|
|
||||||
" Main Settings:
|
" Main Settings:
|
||||||
set nocursorline nocursorcolumn "disable cursor column/line highlighting
|
set nocursorline nocursorcolumn "disable cursor column/line highlighting
|
||||||
|
|
Loading…
Reference in a new issue