From 86efc127a7a203f55efae3590b4b39d59fb95e1e Mon Sep 17 00:00:00 2001 From: DarkWiiPlayer Date: Tue, 17 Dec 2024 18:12:23 +0100 Subject: [PATCH] Get rid of nvim surround plugin which was messing with COQ --- vim/plugin/surround.vim | 84 ----------------------------------------- 1 file changed, 84 deletions(-) delete mode 100644 vim/plugin/surround.vim diff --git a/vim/plugin/surround.vim b/vim/plugin/surround.vim deleted file mode 100644 index 1f3d1c2..0000000 --- a/vim/plugin/surround.vim +++ /dev/null @@ -1,84 +0,0 @@ -" ┌──────────┐ -" │ Funtions │ -" └──────────┘ - -function! s:vsurround(left, right) - if visualmode() ==# "v" - let l:type="char" - elseif visualmode() ==# "V" - let l:type="line" - elseif visualmode() ==# "" - let l:type="block" - end - call surround(l:type, a:left, a:right) -endf - -function! s:surround(type, left, right) - if a:type ==? 'char' - exec 'normal! `>a'.a:right.'`$A'.a:right.'`<`>I'.a:left - elseif a:type ==? 'block' - exec 'normal! `<`>A'.a:right.'`<`>I'.a:left - end -endf - -" ┌──────────┐ -" │ Mappings │ -" └──────────┘ - -function! s:dquote_op(type) - normal `[m<`]m> - call surround(a:type, '"', '"') -endf -nnoremap " :set operatorfunc=dquote_opg@ -vnoremap " :call vsurround('"', '"') - -function! s:squote_op(type) - normal `[m<`]m> - call surround(a:type, "'", "'") -endf -nnoremap ' :set operatorfunc=squote_opg@ -vnoremap ' :call vsurround("'", "'") - -function! s:paren_op(type) - normal `[m<`]m> - call surround(a:type, "(", ")") -endf -nnoremap ( :set operatorfunc=paren_opg@ -vnoremap ( :call vsurround("(", ")") - -function! s:pracket_op(type) - normal `[m<`]m> - call surround(a:type, "[", "]") -endf -nnoremap [ :set operatorfunc=bracket_opg@ -vnoremap [ :call vsurround("[", "]") - -function! s:brace_op(type) - normal `[m<`]m> - call surround(a:type, "{", "}") -endf -nnoremap { :set operatorfunc=brace_opg@ -vnoremap { :call vsurround("{", "}") - -function! s:angle_op(type) - normal `[m<`]m> - call surround(a:type, "<", ">") -endf -nnoremap < :set operatorfunc=angle_opg@ -vnoremap < :call vsurround("<", ">") - -function! s:backtick_op(type) - normal `[m<`]m> - call surround(a:type, "`", "`") -endf -nnoremap ` :set operatorfunc=backtick_opg@ -vnoremap ` :call vsurround("`", "`") - -function! s:asterisk_op(type) - normal `[m<`]m> - call surround(a:type, "*", "*") -endf -nnoremap * :set operatorfunc=asterisk_opg@ -vnoremap * :call vsurround("*", "*")