summaryrefslogtreecommitdiff
path: root/.vim/vimrc_files/functions.vim
diff options
context:
space:
mode:
authorBlubber <f2005278@mvrht.com>2016-10-11 23:37:37 +0200
committerBlubber <f2005278@mvrht.com>2016-10-11 23:37:37 +0200
commit7e7256d1dc22619373271ff12ff677e3b11067dc (patch)
tree3c4f5ff090fce5c08e11dec8f091f1168b478c78 /.vim/vimrc_files/functions.vim
parent3c2961a0d7c16407428b1f8bdae3f9810ebf2049 (diff)
downloaddotfiles-7e7256d1dc22619373271ff12ff677e3b11067dc.tar.gz
dotfiles-7e7256d1dc22619373271ff12ff677e3b11067dc.zip
merged git files into vimrc and added markers
Diffstat (limited to '.vim/vimrc_files/functions.vim')
-rw-r--r--.vim/vimrc_files/functions.vim21
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