aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Christian Pohle2017-07-05 16:22:17 +0200
committerMax Christian Pohle2017-07-05 16:22:17 +0200
commit4ac77e9c172de45b5f903784a0f5f20ec6c3a77b (patch)
treeacc2cd35ca80e1f73e689c9788502df230209e0a
parent16fc627d9a82889119ddb528e53a44d5c64ed850 (diff)
downloadvim-4ac77e9c172de45b5f903784a0f5f20ec6c3a77b.tar.bz2
vim-4ac77e9c172de45b5f903784a0f5f20ec6c3a77b.zip
Removed some key-mappings and added one fill char
-rw-r--r--vimrc-full19
1 files changed, 9 insertions, 10 deletions
diff --git a/vimrc-full b/vimrc-full
index de22dcc..d2dfa23 100644
--- a/vimrc-full
+++ b/vimrc-full
@@ -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>"
499endif 498endif
500 499
..