diff options
Diffstat (limited to '.vim/vimrc_files/functions.vim')
-rw-r--r-- | .vim/vimrc_files/functions.vim | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/.vim/vimrc_files/functions.vim b/.vim/vimrc_files/functions.vim deleted file mode 100644 index 9f2a1fd..0000000 --- a/.vim/vimrc_files/functions.vim +++ /dev/null @@ -1,21 +0,0 @@ -" dotfiles -- .vim/vimrc_files/functions.vim -" author: johannst - -" Split Window and scroll down -function! SplitScroll() - :wincmd v - :wincmd w - execute "normal! \<C-d>" - :set scrollbind - :wincmd w - :set scrollbind -endfunc - -" toggle relative line number mode -function! ToggleRelativeNumber() - if(&relativenumber == 1) - set norelativenumber - else - set relativenumber - endif -endfunc |