summaryrefslogtreecommitdiff
path: root/.vim/vimrc_files/functions.vim
diff options
context:
space:
mode:
Diffstat (limited to '.vim/vimrc_files/functions.vim')
-rw-r--r--.vim/vimrc_files/functions.vim4
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()