aboutsummaryrefslogtreecommitdiff
path: root/vim/vimrc
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-01-04 22:26:37 +1300
committerTom Ryder <tom@sanctum.geek.nz>2019-01-04 22:26:37 +1300
commita394adbdf634ab99b82054b0b3a96f9aadcf4056 (patch)
treebcb73e163eff7b2101adfc4b121555d799a408a0 /vim/vimrc
parentMerge branch 'release/v4.7.0' into develop (diff)
downloaddotfiles-a394adbdf634ab99b82054b0b3a96f9aadcf4056.tar.gz
dotfiles-a394adbdf634ab99b82054b0b3a96f9aadcf4056.zip
Revert "Add experimental delimit_operator.vim plugin"
This reverts commit 6ed48b12e451a0770d5a3f236e66e0e7e9a39c8d. I don't think this is the right approach. The main reason I dropped surround.vim was because I didn't like how often I was doing something that doesn't work at all in vanilla Vim. If I make a half-assed re-implementation, I'm just perpetuating the problem.
Diffstat (limited to 'vim/vimrc')
-rw-r--r--vim/vimrc8
1 files changed, 0 insertions, 8 deletions
diff --git a/vim/vimrc b/vim/vimrc
index bf30df7d..724a32e7 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -421,13 +421,5 @@ nnoremap <Leader>: ^"zyg_:<C-R>z<CR>
" \! executes line with 'shell'
nnoremap <Leader>! ^"zyg_:!<C-R>z<CR>
-" Testing out delimit_operator.vim, in development
-" Use q for a prefix key, followed by the wrapping quote
-for s:char in ["'", '"', '`', '[', '<', '(', '{', '*']
- execute 'nmap q'.s:char.' <Plug>(DelimitOperator)'.s:char
- execute 'xmap q'.s:char.' <Plug>(DelimitOperator)'.s:char
-endfor
-unlet s:char
-
" Source any .vim files from ~/.vim/config
runtime! config/*.vim