mirror of
https://github.com/prurigro/darkcloud-nvimconfig.git
synced 2024-11-09 23:06:38 -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
|
||||
unmap v
|
||||
unmap w
|
||||
if mapcheck('<PageDown>', 'b')|unmap <PageDown>|endif
|
||||
if mapcheck('<PageDown>', 'b')|unmap <kPageDown>|endif
|
||||
if mapcheck('<PageDown>', 'b')|unmap <PageUp>|endif
|
||||
if mapcheck('<PageDown>', 'b')|unmap <kPageUp>|endif
|
||||
map v <Nop>
|
||||
noremap w <S-Right>
|
||||
noremap <PageDown> <C-F>
|
||||
noremap <kPageDown> <C-F>
|
||||
noremap <PageUp> <C-B>
|
||||
noremap <kPageUp> <C-B>
|
||||
|
||||
" Main Settings:
|
||||
set nocursorline nocursorcolumn "disable cursor column/line highlighting
|
||||
|
|
Loading…
Reference in a new issue