diff options
author | Max Christian Pohle | 2017-07-05 16:22:17 +0200 |
---|---|---|
committer | Max Christian Pohle | 2017-07-05 16:22:17 +0200 |
commit | 4ac77e9c172de45b5f903784a0f5f20ec6c3a77b (patch) | |
tree | acc2cd35ca80e1f73e689c9788502df230209e0a | |
parent | 16fc627d9a82889119ddb528e53a44d5c64ed850 (diff) | |
download | vim-4ac77e9c172de45b5f903784a0f5f20ec6c3a77b.tar.bz2 vim-4ac77e9c172de45b5f903784a0f5f20ec6c3a77b.zip |
Removed some key-mappings and added one fill char
-rw-r--r-- | vimrc-full | 19 |
1 files changed, 9 insertions, 10 deletions
@@ -463,8 +463,9 @@ if has("multi_byte") | |||
463 | set encoding=utf-8 | " we need default utf-8 encoding to use cool chars as line break and so on (see below) | 463 | set encoding=utf-8 | " we need default utf-8 encoding to use cool chars as line break and so on (see below) |
464 | set termencoding=&encoding | " once we use special chars we assume everybody uses a terminal supporting those | 464 | set termencoding=&encoding | " once we use special chars we assume everybody uses a terminal supporting those |
465 | 465 | ||
466 | set fillchars+=fold:\— | " | 466 | set fillchars+=fold:\— | " |
467 | set fillchars+=vert:\│ | " cool vertical split char | 467 | set fillchars+=vert:\│ | " cool vertical split char |
468 | set fillchars+=diff:\ | " a whitespace gets used here | ||
468 | 469 | ||
469 | set listchars= | " initialize empty listchars | 470 | set listchars= | " initialize empty listchars |
470 | set listchars+=extends:» | " symbols used when using :set list (which displays non-printable chars) | 471 | set listchars+=extends:» | " symbols used when using :set list (which displays non-printable chars) |
@@ -487,14 +488,12 @@ if has('cscope') " compiled with cscope support? | |||
487 | set cscopequickfix=s+,c+,d+,i+,t+,e+ | 488 | set cscopequickfix=s+,c+,d+,i+,t+,e+ |
488 | endif | 489 | endif |
489 | 490 | ||
490 | cnoreabbrev csa cs add | 491 | " cnoreabbrev csa cs add |
491 | cnoreabbrev csf cs find | 492 | " cnoreabbrev csf cs find |
492 | cnoreabbrev csk cs kill | 493 | " cnoreabbrev csk cs kill |
493 | cnoreabbrev csr cs reset | 494 | " cnoreabbrev csr cs reset |
494 | cnoreabbrev css cs show | 495 | " cnoreabbrev css cs show |
495 | cnoreabbrev csh cs help | 496 | " cnoreabbrev csh cs help |
496 | |||
497 | command! -nargs=0 Cscope cs add $VIMSRC/src/cscope.out $VIMSRC/src | ||
498 | let @c = ":cs find s <cword>" | 497 | let @c = ":cs find s <cword>" |
499 | endif | 498 | endif |
500 | 499 | ||