diff options
author | Johannes Stolp <jstolp@vgfr65cs1.internal.synopsys.com> | 2016-07-13 22:46:45 +0200 |
---|---|---|
committer | Johannes Stolp <jstolp@vgfr65cs1.internal.synopsys.com> | 2016-07-13 22:46:45 +0200 |
commit | 88db1685aded1d4787ce5b81fe82658a6be9274d (patch) | |
tree | ffb1a79c845ecb7c1ab762d16722d1d711b46ad6 /.vim/vimrc_files/functions.vim | |
parent | c6d1aab0a4f24a9f9b18b55ee452fe98b5c91ab3 (diff) | |
download | dotfiles-88db1685aded1d4787ce5b81fe82658a6be9274d.tar.gz dotfiles-88db1685aded1d4787ce5b81fe82658a6be9274d.zip |
enabled foldmethod \'marker\' for vim
added Ctrl-f functions in vim to create fold blocks
Diffstat (limited to '.vim/vimrc_files/functions.vim')
-rw-r--r-- | .vim/vimrc_files/functions.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.vim/vimrc_files/functions.vim b/.vim/vimrc_files/functions.vim index 4ab280d..9f2a1fd 100644 --- a/.vim/vimrc_files/functions.vim +++ b/.vim/vimrc_files/functions.vim @@ -2,14 +2,14 @@ " author: johannst " Split Window and scroll down -fu! SplitScroll() +function! SplitScroll() :wincmd v :wincmd w execute "normal! \<C-d>" :set scrollbind :wincmd w :set scrollbind -endfu +endfunc " toggle relative line number mode function! ToggleRelativeNumber() |