summaryrefslogblamecommitdiff
path: root/.vim/vimrc_files/functions.vim
blob: 4ab280dbe8a4f55001cdaa4b56f529075b29db2c (plain) (tree)
1
2
3


                                            

















                                           
" dotfiles -- .vim/vimrc_files/functions.vim
" author: johannst

" Split Window and scroll down
fu! SplitScroll()
    :wincmd v
    :wincmd w
    execute "normal! \<C-d>"
    :set scrollbind
    :wincmd w
    :set scrollbind
endfu

" toggle relative line number mode
function! ToggleRelativeNumber()           
    if(&relativenumber == 1)
        set norelativenumber
    else
        set relativenumber
    endif
endfunc