diff options
author | Max Christian Pohle | 2017-08-16 00:28:47 +0200 |
---|---|---|
committer | Max Christian Pohle | 2017-08-16 00:28:47 +0200 |
commit | bf8e5591401426fadac2a416bc824e65af001dbf (patch) | |
tree | 27f857f798675dd42691a835443338a43e45a2b9 | |
parent | a92f9e9ceb9b59b0227654f4dd87d8a8be5756e2 (diff) | |
download | vim-bf8e5591401426fadac2a416bc824e65af001dbf.tar.bz2 vim-bf8e5591401426fadac2a416bc824e65af001dbf.zip |
fixed calling of editexisting
-rw-r--r-- | vimrc-full | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -5,7 +5,8 @@ set ts=4 sts=4 sw=4 expandtab | " better done with a modeline | |||
5 | set redrawtime=1000 | " Timeout in milliseconds for redrawing the display / CTRL+L to retry | 5 | set redrawtime=1000 | " Timeout in milliseconds for redrawing the display / CTRL+L to retry |
6 | 6 | ||
7 | " scripts from the default vim installation, which do not get loaded by default, but are useful. | 7 | " scripts from the default vim installation, which do not get loaded by default, but are useful. |
8 | silent ":runtime macros/editexisting.vim" | 8 | " silent :runtime macros/editexisting.vim |
9 | packadd! editexisting | ||
9 | 10 | ||
10 | if has("multi_byte") | 11 | if has("multi_byte") |
11 | scriptencoding utf-8 | " tell vim that we are using utf-8 here | 12 | scriptencoding utf-8 | " tell vim that we are using utf-8 here |
@@ -452,9 +453,10 @@ if has("gui_running") | |||
452 | set guioptions-=L | " do not show left scrollbar | 453 | set guioptions-=L | " do not show left scrollbar |
453 | set guioptions-=r | " do not show right scrollbar | 454 | set guioptions-=r | " do not show right scrollbar |
454 | set winaltkeys=menu | " behave like other windows: ALT-key can be used to open the menu (and cannot be :remaped) | 455 | set winaltkeys=menu | " behave like other windows: ALT-key can be used to open the menu (and cannot be :remaped) |
455 | set guifont=Dejavu\ Sans\ Mono\ for\ Powerline\ 10 | 456 | " set guifont=Dejavu\ Sans\ Mono\ for\ Powerline\ 10 |
456 | set guifont=Source\ Code\ Pro\ Semi-Bold\ 10 | 457 | " set guifont=Source\ Code\ Pro\ Semi-Bold\ 10 |
457 | " set guifont=Droid\ Sans\ Mono\ for\ Powerline\ 12 | 458 | " set guifont=Droid\ Sans\ Mono\ for\ Powerline\ 12 |
459 | set guifont=Dejavu\ Sans\ Mono\ For\ Powerline\ Semibold | ||
458 | " set selectmode=mouse,key,cmd | " enters vim's select mode when pressing shift-left or shift-END | 460 | " set selectmode=mouse,key,cmd | " enters vim's select mode when pressing shift-left or shift-END |
459 | " set keymodel=startsel,stopsel | " makes shift-left, shift-right available for selecting text | 461 | " set keymodel=startsel,stopsel | " makes shift-left, shift-right available for selecting text |
460 | endif | 462 | endif |