Merge pull request #218 from dmitmel/master

[pull] master from dmitmel:master
This commit is contained in:
pull[bot] 2021-02-27 14:13:28 +00:00 committed by GitHub
commit b31bea45ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 16 additions and 0 deletions

View File

@ -119,6 +119,22 @@ set commentstring=//%s
xnoremap <leader>dg :diffget<CR>
xnoremap <leader>dp :diffput<CR>
" Horizontal scroll
" normal mode
nnoremap <M-h> zh
nnoremap <M-H> zH
nnoremap <M-Left> zh
nnoremap <M-l> zl
nnoremap <M-L> zL
nnoremap <M-Right> zl
" visual mode
xnoremap <M-h> zh
xnoremap <M-H> zH
xnoremap <M-Left> zh
xnoremap <M-l> zl
xnoremap <M-L> zL
xnoremap <M-Right> zl
" }}}