summaryrefslogtreecommitdiff
path: root/.vim/vimrc_files
diff options
context:
space:
mode:
Diffstat (limited to '.vim/vimrc_files')
-rw-r--r--.vim/vimrc_files/functions.vim4
-rw-r--r--.vim/vimrc_files/keymaps.vim10
2 files changed, 7 insertions, 7 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()
diff --git a/.vim/vimrc_files/keymaps.vim b/.vim/vimrc_files/keymaps.vim
index f7cb026..0469920 100644
--- a/.vim/vimrc_files/keymaps.vim
+++ b/.vim/vimrc_files/keymaps.vim
@@ -83,6 +83,10 @@ vnoremap <C-e> $
" Shortcut to toggle relative numbering mode
nnoremap <c-n> :call ToggleRelativeNumber()<CR>
+" add a marker fold snippet (for C/C++)
+vnoremap <C-f> VV'<O//{{{ <Esc>'>o//}}}<Esc>'<<ESC><Up>A
+nnoremap <C-f> o//{{{ <Esc>o//}}}<Esc><Up>A
+imap <C-f> <ESC><C-f>
" Open BufferExplorer
nnoremap <C-b> :call BufExplorer()<CR>
@@ -90,9 +94,5 @@ nnoremap <C-b> :call BufExplorer()<CR>
" Toggle Tagbar
nnoremap <leader>t :TagbarToggle<CR>
-
-" invoke grep and print output into current buffer
-nnoremap <C-g> :read !grep -nI
-
-" substituce selection
+" substitute selection
vnoremap <C-r> "hy:%s/<C-r>h//gc<left><left><left>