2006-10-27 20:31:44 -04:00
|
|
|
" surround.vim - Surroundings
|
|
|
|
" Maintainer: Tim Pope <vimNOSPAM@tpope.info>
|
|
|
|
" $Id$
|
2006-10-29 20:34:06 -05:00
|
|
|
" Help is below; it may be read here. Alternatively, after the plugin is
|
|
|
|
" installed and running, :call SurroundHelp() to install a proper help file.
|
2006-10-29 19:09:40 -05:00
|
|
|
|
|
|
|
" *surround.txt* Plugin for deleting, changing, and adding "surroundings"
|
2006-10-27 20:31:44 -04:00
|
|
|
"
|
2006-10-29 19:09:40 -05:00
|
|
|
" Author: Tim Pope <vimNOSPAM@tpope.info> *surround-author*
|
|
|
|
" License: Same terms as Vim itself (see |license|)
|
2006-10-27 20:31:44 -04:00
|
|
|
"
|
2006-10-29 19:09:40 -05:00
|
|
|
" This plugin is only available if 'compatible' is not set.
|
2006-10-27 20:31:44 -04:00
|
|
|
"
|
2006-10-29 19:09:40 -05:00
|
|
|
" Introduction: *surround*
|
2006-10-27 20:31:44 -04:00
|
|
|
"
|
2006-10-29 19:09:40 -05:00
|
|
|
" This plugin is a tool for dealing with pairs of "surroundings." Examples
|
|
|
|
" of surroundings include parentheses, quotes, and HTML tags. They are
|
|
|
|
" closely related to what Vim refers to as |text-objects|. Provided
|
|
|
|
" are mappings to allow for removing, changing, and adding surroundings.
|
2006-10-27 20:31:44 -04:00
|
|
|
"
|
2006-10-29 19:09:40 -05:00
|
|
|
" Details follow on the exact semantics, but first, consider the following
|
|
|
|
" examples. An asterisk (*) is used to denote the cursor position.
|
2006-10-27 20:31:44 -04:00
|
|
|
"
|
2006-10-29 19:09:40 -05:00
|
|
|
" Old text Command New text ~
|
|
|
|
" "Hello *world!" ds" Hello world!
|
|
|
|
" [123+4*56]/2 cs]) (123+456)/2
|
|
|
|
" "Look ma, I'm *HTML!" cs"<q> <q>Look ma, I'm HTML!</q>
|
|
|
|
" if *x>3 { ysW( if ( x>3 ) {
|
|
|
|
" my $str = *whee!; vlllls' my $str = 'whee!';
|
2006-10-27 20:31:44 -04:00
|
|
|
"
|
2006-10-29 19:09:40 -05:00
|
|
|
" While a few features of this plugin will work in older versions of Vim,
|
|
|
|
" Vim 7 is recommended for full functionality.
|
2006-10-27 20:31:44 -04:00
|
|
|
"
|
2006-10-29 19:09:40 -05:00
|
|
|
" Mappings: *surround-mappings*
|
|
|
|
"
|
|
|
|
" Delete surroundings is *ds*. The next character given determines the target
|
|
|
|
" to delete. The exact nature of the target are explained in
|
|
|
|
" |surround-targets| but essentially it is the last character of a
|
|
|
|
" |text-object|. This mapping deletes the difference between the "inner"
|
|
|
|
" object and "an" object. This is easiest to understand with some examples:
|
|
|
|
"
|
|
|
|
" Old text Command New text ~
|
|
|
|
" "Hello *world!" ds" Hello world!
|
|
|
|
" (123+4*56)/2 ds) 123+456/2
|
|
|
|
" <div>Yo!*</div> dst Yo!
|
2006-10-27 20:31:44 -04:00
|
|
|
"
|
2006-10-29 19:09:40 -05:00
|
|
|
" Change surroundings is *cs*. It takes two arguments, a target like with
|
|
|
|
" |ds|, and a replacement. Details about the second argument can be found
|
|
|
|
" below in |surround-replacements|. Once again, examples are in order.
|
2006-10-27 20:31:44 -04:00
|
|
|
"
|
2006-10-29 19:09:40 -05:00
|
|
|
" Old text Command New text ~
|
|
|
|
" "Hello *world!" cs"' 'Hello world!'
|
|
|
|
" "Hello *world!" cs"<q> <q>Hello world!</q>
|
|
|
|
" (123+4*56)/2 cs)] [123+456]/2
|
|
|
|
" (123+4*56)/2 cs)[ [ 123+456 ]/2
|
|
|
|
" <div>Yo!*</div> cst<p> <p>Yo!</p>
|
|
|
|
"
|
|
|
|
" *ys* takes an valid Vim motion or text object as the first object, and wraps
|
|
|
|
" it using the second argument as with |cs|. (Unfortunately there's no good
|
|
|
|
" mnemonic for "ys").
|
|
|
|
"
|
|
|
|
" Old text Command New text ~
|
|
|
|
" Hello w*orld! ysiw) Hello (world)!
|
|
|
|
"
|
|
|
|
" As a special case, *yss* operates on the current line, ignoring leading
|
|
|
|
" whitespace.
|
2006-10-27 20:31:44 -04:00
|
|
|
"
|
2006-10-29 19:09:40 -05:00
|
|
|
" Old text Command New text ~
|
|
|
|
" Hello w*orld! yssB {Hello world!}
|
2006-10-27 20:31:44 -04:00
|
|
|
"
|
2006-10-31 15:59:02 -05:00
|
|
|
" There is also *yS* and *ySS* which indent the surrounded text and place it
|
|
|
|
" on a line of its own.
|
|
|
|
"
|
2006-10-29 19:09:40 -05:00
|
|
|
" In visual mode, a simple "s" with an argument wraps the selection. This is
|
|
|
|
" referred to as the *vs* mapping, although ordinarily there will be
|
2006-10-30 21:02:17 -05:00
|
|
|
" additional keystrokes between the v and s. In linewise visual mode, the
|
|
|
|
" surroundings are placed on separate lines. In blockwise visual mode, each
|
|
|
|
" line is surrounded.
|
|
|
|
"
|
2006-10-31 15:59:02 -05:00
|
|
|
" An "S" in visual mode (*vS*) behaves similarly but always places the
|
|
|
|
" surroundings on separate lines. Additionally, the surrounded text is
|
|
|
|
" indented.
|
|
|
|
"
|
|
|
|
" Note that "s" and "S" already have valid meaning in visual mode, but it is
|
2006-10-30 21:02:17 -05:00
|
|
|
" identical to "c". If you have muscle memory for "s" and would like to use a
|
|
|
|
" different key, add your own mapping and the existing one will be disabled.
|
2006-10-29 19:09:40 -05:00
|
|
|
" >
|
2006-10-31 15:59:02 -05:00
|
|
|
" vmap <Leader>s <Plug>Vsurround
|
|
|
|
" vmap <Leader>S <Plug>VSurround
|
2006-10-29 19:09:40 -05:00
|
|
|
" <
|
2006-10-28 23:44:12 -04:00
|
|
|
" Finally, there is an experimental insert mode mapping on <C-S>. Beware that
|
|
|
|
" this won't work on terminals with flow control (if you accidentally freeze
|
2006-10-29 19:09:40 -05:00
|
|
|
" your terminal, use <C-Q> to unfreeze it). The mapping inserts the specified
|
|
|
|
" surroundings and puts the cursor between them. If, immediately after <C-S>
|
2006-10-31 15:59:02 -05:00
|
|
|
" and before the replacement, a second <C-S> or carriage return is pressed,
|
|
|
|
" the prefix, cursor, and suffix will be placed on three separate lines. If
|
|
|
|
" this is a common use case you can add a mapping for it as well.
|
2006-10-29 19:09:40 -05:00
|
|
|
" >
|
|
|
|
" imap <C-Z> <Plug>Isurround<CR>
|
|
|
|
" <
|
|
|
|
" Targets: *surround-targets*
|
2006-10-28 23:44:12 -04:00
|
|
|
"
|
2006-10-29 19:09:40 -05:00
|
|
|
" The |ds| and |cs| commands both take a target as their first argument. The
|
|
|
|
" possible targets are based closely on the |text-objects| provided by Vim.
|
|
|
|
" In order for a target to work, the corresponding text object must be
|
|
|
|
" supported in the version of Vim used (Vim 7 adds several text objects, and
|
|
|
|
" thus is highly recommended). All targets are currently just one character.
|
2006-10-27 20:31:44 -04:00
|
|
|
"
|
2006-10-29 19:09:40 -05:00
|
|
|
" Eight punctuation marks, (, ), {, }, [, ], <, and >, represent themselves
|
|
|
|
" and their counterpart. If the opening mark is used, contained whitespace is
|
|
|
|
" also trimmed. The targets b, B, r, and a are aliases for ), }, ], and >
|
|
|
|
" (the first two mirror Vim; the second two are completely arbitrary and
|
|
|
|
" subject to change).
|
2006-10-27 20:31:44 -04:00
|
|
|
"
|
2006-10-29 19:09:40 -05:00
|
|
|
" Three quote marks, ', ", `, represent themselves, in pairs. They are only
|
|
|
|
" searched for on the current line.
|
2006-10-27 20:31:44 -04:00
|
|
|
"
|
2006-10-29 23:57:40 -05:00
|
|
|
" A t is a pair of HTML or XML tags. See |tag-blocks| for details. Remember
|
|
|
|
" that you can specify a numerical argument if you want to get to a tag other
|
|
|
|
" than the innermost one.
|
2006-10-29 19:09:40 -05:00
|
|
|
"
|
|
|
|
" The letters w, W, and s correspond to a |word|, a |WORD|, and a |sentence|,
|
|
|
|
" respectively. These are special in that they have nothing do delete, and
|
|
|
|
" used with |ds| they are a no-op. With |cs|, one could consider them a
|
|
|
|
" slight shortcut for ysi (cswb == ysiwb, more or less).
|
|
|
|
"
|
|
|
|
" A p represents a |paragraph|. This behaves similarly to w, W, and s above;
|
|
|
|
" however, newlines are sometimes added and/or removed.
|
|
|
|
"
|
|
|
|
" Replacements: *surround-replacements*
|
|
|
|
"
|
|
|
|
" A replacement argument is a single character, and is required by |cs|, |ys|,
|
|
|
|
" and |vs|. Undefined replacement characters default to placing themselves at
|
|
|
|
" the beginning and end of the destination, which can be useful for characters
|
|
|
|
" like / and |.
|
|
|
|
"
|
|
|
|
" If either ), }, ], or > is used, the text is wrapped in the appropriate
|
|
|
|
" pair of characters. Similar behavior can be found with (, {, and [ (but not
|
|
|
|
" <), which append an additional space to the inside. Like with the targets
|
|
|
|
" above, b, B, r, and a are aliases for ), }, ], and >.
|
|
|
|
"
|
|
|
|
" If t or < is used, Vim prompts for an HTML/XML tag to insert. You may
|
2006-10-27 20:31:44 -04:00
|
|
|
" specify attributes here and they will be stripped from the closing tag.
|
2006-10-30 21:02:17 -05:00
|
|
|
" End your input by pressing <CR> or >. As an experimental feature, if , or
|
|
|
|
" <C-T> is used, the tags will appear on lines by themselves.
|
2006-10-27 20:31:44 -04:00
|
|
|
"
|
2006-10-29 19:09:40 -05:00
|
|
|
" An experimental replacement of a LaTeX environment is provided on \ and l.
|
|
|
|
" The name of the environment and any arguments will be input from a prompt.
|
2006-10-30 14:19:57 -05:00
|
|
|
" The following shows the resulting environment from csp\tabular}{lc<CR>
|
2006-10-29 19:09:40 -05:00
|
|
|
" >
|
|
|
|
" \begin{tabular}{lc}
|
|
|
|
" \end{tabular}
|
|
|
|
" <
|
|
|
|
" Customizing: *surround-customizing*
|
2006-10-27 20:31:44 -04:00
|
|
|
"
|
|
|
|
" The following adds a potential replacement on "-" (ASCII 45) in PHP files.
|
2006-10-30 14:19:57 -05:00
|
|
|
" (To determine the ASCII code to use, :echo char2nr("-")). The carriage
|
|
|
|
" return will be replaced by the original text.
|
2006-10-29 19:09:40 -05:00
|
|
|
" >
|
2006-10-30 14:19:57 -05:00
|
|
|
" autocmd FileType php let b:surround_45 = "<?php \r ?>"
|
2006-10-29 19:09:40 -05:00
|
|
|
" <
|
2006-10-27 20:31:44 -04:00
|
|
|
" This can be used in a PHP file as in the following example.
|
|
|
|
"
|
2006-10-29 19:09:40 -05:00
|
|
|
" Old text Command New text ~
|
|
|
|
" print "Hello *world!" yss- <?php print "Hello world!" ?>
|
2006-10-27 20:31:44 -04:00
|
|
|
"
|
|
|
|
" Additionally, one can use a global variable for globally available
|
|
|
|
" replacements.
|
2006-10-29 19:09:40 -05:00
|
|
|
" >
|
2006-10-30 14:19:57 -05:00
|
|
|
" let g:surround_45 = "<% \r %>"
|
|
|
|
" let g:surround_61 = "<%= \r %>"
|
2006-10-29 19:09:40 -05:00
|
|
|
" <
|
|
|
|
" Issues: *surround-issues*
|
2006-10-27 20:31:44 -04:00
|
|
|
"
|
|
|
|
" Vim could potentially get confused when deleting/changing occurs at the very
|
2006-10-29 19:09:40 -05:00
|
|
|
" end of the line. Please report any repeatable instances of this.
|
2006-10-27 20:31:44 -04:00
|
|
|
"
|
2006-10-29 19:09:40 -05:00
|
|
|
" Do we need to use |inputsave()|/|inputrestore()| with the tag replacement?
|
2006-10-27 20:31:44 -04:00
|
|
|
"
|
2006-10-29 19:09:40 -05:00
|
|
|
" Customization isn't very flexible. Need a system that allows for prompting,
|
|
|
|
" like with HTML tags and LaTeX environments.
|
2006-10-27 20:31:44 -04:00
|
|
|
"
|
2006-10-29 19:09:40 -05:00
|
|
|
" Indenting is handled haphazardly. Need to decide the most appropriate
|
2006-10-28 23:44:12 -04:00
|
|
|
" behavior and implement it. Right now one can do :let b:surround_indent = 1
|
2006-10-29 19:09:40 -05:00
|
|
|
" (or the global equivalent) to enable automatic re-indenting by Vim via |=|;
|
|
|
|
" should this be the default?
|
2006-10-28 23:44:12 -04:00
|
|
|
"
|
2006-10-29 19:09:40 -05:00
|
|
|
" It would be nice if |.| would work to repeat an operation.
|
2006-10-27 20:31:44 -04:00
|
|
|
|
|
|
|
" ============================================================================
|
|
|
|
|
|
|
|
" Exit quickly when:
|
|
|
|
" - this plugin was already loaded (or disabled)
|
|
|
|
" - when 'compatible' is set
|
|
|
|
if (exists("g:loaded_surround") && g:loaded_surround) || &cp
|
|
|
|
finish
|
|
|
|
endif
|
|
|
|
let g:loaded_surround = 1
|
|
|
|
|
|
|
|
let s:cpo_save = &cpo
|
|
|
|
set cpo&vim
|
|
|
|
|
2006-10-29 19:09:40 -05:00
|
|
|
function! SurroundHelp() " {{{1
|
|
|
|
if !isdirectory(s:dir."/doc/") && exists("*mkdir")
|
|
|
|
call mkdir(s:dir."/doc/")
|
|
|
|
endif
|
|
|
|
let old_hidden = &hidden
|
|
|
|
let old_cpo = &cpo
|
|
|
|
set hidden
|
|
|
|
set cpo&vim
|
|
|
|
exe "split ".fnamemodify(s:dir."/doc/surround.txt",":~")
|
|
|
|
setlocal noai modifiable noreadonly
|
|
|
|
%d_
|
|
|
|
exe "0r ".fnamemodify(s:file,":~")
|
|
|
|
norm "_d}}"_dG
|
|
|
|
a
|
|
|
|
vim:tw=78:ts=8:ft=help:norl:
|
|
|
|
.
|
|
|
|
1d_
|
|
|
|
%s/^" \=//
|
|
|
|
silent! %s/^\(\u\l\+\):\(\s\+\*\)/\U\1 \2/
|
|
|
|
setlocal noreadonly
|
|
|
|
write
|
|
|
|
bwipe!
|
|
|
|
let &hidden = old_hidden
|
|
|
|
let &cpo = old_cpo
|
|
|
|
exe "helptags ".fnamemodify(s:dir."/doc",":~")
|
|
|
|
help surround
|
|
|
|
endfunction
|
|
|
|
let s:file = expand("<sfile>:p")
|
|
|
|
let s:dir = expand("<sfile>:p:h:h") " }}}1
|
|
|
|
|
2006-10-28 23:44:12 -04:00
|
|
|
" Input functions {{{1
|
|
|
|
|
|
|
|
function! s:getchar()
|
|
|
|
let c = getchar()
|
|
|
|
if c =~ '^\d\+$'
|
|
|
|
let c = nr2char(c)
|
|
|
|
endif
|
|
|
|
return c
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:inputtarget()
|
|
|
|
let c = s:getchar()
|
2006-10-29 23:57:40 -05:00
|
|
|
while c =~ '^\d\+$'
|
|
|
|
let c = c . s:getchar()
|
|
|
|
endwhile
|
2006-10-29 16:03:15 -05:00
|
|
|
if c == " "
|
|
|
|
let c = c . s:getchar()
|
|
|
|
endif
|
2006-10-28 23:44:12 -04:00
|
|
|
if c =~ "\<Esc>\|\<C-C>\|\0"
|
|
|
|
return ""
|
|
|
|
else
|
|
|
|
return c
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:inputreplacement()
|
|
|
|
"echo '-- SURROUND --'
|
|
|
|
let c = s:getchar()
|
|
|
|
if c == " "
|
|
|
|
let c = c . s:getchar()
|
|
|
|
endif
|
2006-10-31 15:59:02 -05:00
|
|
|
if c =~ "\<Esc>" || c =~ "\<C-C>"
|
2006-10-28 23:44:12 -04:00
|
|
|
return ""
|
|
|
|
else
|
|
|
|
return c
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:beep()
|
|
|
|
exe "norm! \<Esc>"
|
|
|
|
return ""
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:redraw()
|
|
|
|
redraw
|
|
|
|
return ""
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
" }}}1
|
|
|
|
|
2006-10-30 14:19:57 -05:00
|
|
|
" Wrapping functions {{{1
|
|
|
|
|
|
|
|
function! s:extractbefore(str)
|
|
|
|
if a:str =~ '\r'
|
|
|
|
return matchstr(a:str,'.*\ze\r')
|
|
|
|
else
|
|
|
|
return matchstr(a:str,'.*\ze\n')
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:extractafter(str)
|
|
|
|
if a:str =~ '\r'
|
|
|
|
return matchstr(a:str,'\r\zs.*')
|
|
|
|
else
|
|
|
|
return matchstr(a:str,'\n\zs.*')
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:repeat(str,count)
|
|
|
|
let cnt = a:count
|
|
|
|
let str = ""
|
|
|
|
while cnt > 0
|
|
|
|
let str = str . a:str
|
|
|
|
let cnt = cnt - 1
|
|
|
|
endwhile
|
|
|
|
return str
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:fixindent(str,spc)
|
|
|
|
let str = substitute(a:str,'\t',s:repeat(' ',&sw),'g')
|
|
|
|
let spc = substitute(a:spc,'\t',s:repeat(' ',&sw),'g')
|
2006-10-30 21:02:17 -05:00
|
|
|
let str = substitute(str,'\(\n\|\%^\).\@=','\1'.spc,'g')
|
2006-10-30 14:19:57 -05:00
|
|
|
if ! &et
|
|
|
|
let str = substitute('\s\{'.&ts.'\}',"\t",'g')
|
|
|
|
endif
|
|
|
|
return str
|
|
|
|
endfunction
|
|
|
|
|
2006-10-31 15:59:02 -05:00
|
|
|
function! s:wrap(string,char,type,...)
|
2006-10-27 20:31:44 -04:00
|
|
|
let keeper = a:string
|
|
|
|
let newchar = a:char
|
2006-10-31 15:59:02 -05:00
|
|
|
let type = a:type
|
2006-10-30 21:02:17 -05:00
|
|
|
let linemode = type ==# 'V' ? 1 : 0
|
2006-10-31 15:59:02 -05:00
|
|
|
let special = a:0 ? a:1 : 0
|
2006-10-28 23:44:12 -04:00
|
|
|
let before = ""
|
|
|
|
let after = ""
|
2006-10-31 15:59:02 -05:00
|
|
|
if type == "V"
|
2006-10-30 14:19:57 -05:00
|
|
|
let initspaces = matchstr(keeper,'\%^\s*')
|
|
|
|
else
|
|
|
|
let initspaces = matchstr(getline('.'),'\%^\s*')
|
|
|
|
endif
|
2006-10-29 16:03:15 -05:00
|
|
|
" Duplicate b's are just placeholders (removed)
|
2006-10-28 23:44:12 -04:00
|
|
|
let pairs = "b()B{}r[]a<>"
|
|
|
|
let extraspace = ""
|
|
|
|
if newchar =~ '^ '
|
|
|
|
let newchar = strpart(newchar,1)
|
|
|
|
let extraspace = ' '
|
|
|
|
endif
|
2006-10-27 20:31:44 -04:00
|
|
|
let idx = stridx(pairs,newchar)
|
|
|
|
if exists("b:surround_".char2nr(newchar))
|
2006-10-30 14:19:57 -05:00
|
|
|
let before = s:extractbefore(b:surround_{char2nr(newchar)})
|
|
|
|
let after = s:extractafter(b:surround_{char2nr(newchar)})
|
2006-10-27 20:31:44 -04:00
|
|
|
elseif exists("g:surround_".char2nr(newchar))
|
2006-10-30 14:19:57 -05:00
|
|
|
let before = s:extractbefore(g:surround_{char2nr(newchar)})
|
|
|
|
let after = s:extractafter(g:surround_{char2nr(newchar)})
|
2006-10-29 16:03:15 -05:00
|
|
|
elseif newchar ==# "p"
|
2006-10-27 20:31:44 -04:00
|
|
|
let before = "\n"
|
|
|
|
let after = "\n\n"
|
2006-10-30 21:02:17 -05:00
|
|
|
elseif newchar =~# "[tT\<C-T><,]"
|
2006-10-30 14:19:57 -05:00
|
|
|
"let dounmapr = 0
|
2006-10-27 20:31:44 -04:00
|
|
|
let dounmapb = 0
|
2006-10-30 14:19:57 -05:00
|
|
|
"if !mapcheck("<CR>","c")
|
|
|
|
"let dounmapr = 1
|
|
|
|
"cnoremap <CR> ><CR>
|
|
|
|
"endif
|
2006-10-27 20:31:44 -04:00
|
|
|
if !mapcheck(">","c")
|
|
|
|
let dounmapb= 1
|
|
|
|
cnoremap > ><CR>
|
|
|
|
endif
|
2006-10-28 23:44:12 -04:00
|
|
|
let default = ""
|
2006-10-29 16:03:15 -05:00
|
|
|
if newchar ==# "T"
|
2006-10-30 21:02:17 -05:00
|
|
|
if !exists("s:lastdel")
|
|
|
|
let s:lastdel = ""
|
|
|
|
endif
|
|
|
|
let default = matchstr(s:lastdel,'<\zs.\{-\}\ze>')
|
2006-10-28 23:44:12 -04:00
|
|
|
endif
|
|
|
|
let tag = input("<",default)
|
|
|
|
echo "<".substitute(tag,'>*$','>','')
|
2006-10-30 14:19:57 -05:00
|
|
|
"if dounmapr
|
|
|
|
"silent! cunmap <CR>
|
|
|
|
"endif
|
2006-10-27 20:31:44 -04:00
|
|
|
if dounmapb
|
|
|
|
silent! cunmap >
|
|
|
|
endif
|
|
|
|
if tag != ""
|
2006-10-28 23:44:12 -04:00
|
|
|
let tag = substitute(tag,'>*$','','')
|
2006-10-27 20:31:44 -04:00
|
|
|
let before = "<".tag.">"
|
|
|
|
let after = "</".substitute(tag," .*",'','').">"
|
2006-10-30 21:02:17 -05:00
|
|
|
if newchar == "\<C-T>" || newchar == ","
|
|
|
|
if type ==# "v" || type ==# "V"
|
|
|
|
let before = before . "\n\t"
|
|
|
|
endif
|
|
|
|
if type ==# "v"
|
2006-10-31 16:34:54 -05:00
|
|
|
let after = "\n". after
|
2006-10-30 21:02:17 -05:00
|
|
|
endif
|
|
|
|
endif
|
2006-10-28 23:44:12 -04:00
|
|
|
endif
|
2006-10-29 16:03:15 -05:00
|
|
|
elseif newchar ==# 'l' || newchar == '\'
|
2006-10-31 15:59:02 -05:00
|
|
|
" LaTeX
|
2006-10-30 14:19:57 -05:00
|
|
|
let env = input('\begin{')
|
|
|
|
let env = '{' . env
|
2006-10-29 16:03:15 -05:00
|
|
|
let env = env . s:closematch(env)
|
2006-10-28 23:44:12 -04:00
|
|
|
echo '\begin'.env
|
|
|
|
if env != ""
|
2006-10-30 21:02:17 -05:00
|
|
|
let before = '\begin'.env
|
|
|
|
let after = '\end'.matchstr(env,'[^}]*').'}'
|
|
|
|
endif
|
2006-10-31 15:59:02 -05:00
|
|
|
"if type ==# 'v' || type ==# 'V'
|
|
|
|
"let before = before ."\n\t"
|
|
|
|
"endif
|
|
|
|
"if type ==# 'v'
|
|
|
|
"let after = "\n".initspaces.after
|
|
|
|
"endif
|
2006-10-29 16:03:15 -05:00
|
|
|
elseif newchar ==# 'f' || newchar ==# 'F'
|
2006-10-30 21:02:17 -05:00
|
|
|
let fnc = input('function: ')
|
|
|
|
if fnc != ""
|
|
|
|
let before = substitute(fnc,'($','','').'('
|
2006-10-28 23:44:12 -04:00
|
|
|
let after = ')'
|
2006-10-29 16:03:15 -05:00
|
|
|
if newchar ==# 'F'
|
|
|
|
let before = before . ' '
|
|
|
|
let after = ' ' . after
|
|
|
|
endif
|
2006-10-27 20:31:44 -04:00
|
|
|
endif
|
|
|
|
elseif idx >= 0
|
|
|
|
let spc = (idx % 3) == 1 ? " " : ""
|
|
|
|
let idx = idx / 3 * 3
|
|
|
|
let before = strpart(pairs,idx+1,1) . spc
|
|
|
|
let after = spc . strpart(pairs,idx+2,1)
|
|
|
|
else
|
|
|
|
let before = newchar
|
|
|
|
let after = newchar
|
|
|
|
endif
|
2006-10-31 16:34:54 -05:00
|
|
|
"let before = substitute(before,'\n','\n'.initspaces,'g')
|
|
|
|
let after = substitute(after ,'\n','\n'.initspaces,'g')
|
2006-10-31 15:59:02 -05:00
|
|
|
if type ==# 'V' || (special && type ==# "v")
|
2006-10-30 21:02:17 -05:00
|
|
|
let before = substitute(before,' \+$','','')
|
|
|
|
let after = substitute(after ,'^ \+','','')
|
2006-10-31 15:59:02 -05:00
|
|
|
if after !~ '^\n'
|
|
|
|
let after = initspaces.after
|
|
|
|
endif
|
|
|
|
if keeper !~ '\n$' && after !~ '^\n'
|
|
|
|
let keeper = keeper . "\n"
|
|
|
|
endif
|
2006-10-30 21:02:17 -05:00
|
|
|
if before !~ '\n\s*$'
|
2006-10-31 15:59:02 -05:00
|
|
|
let before = before . "\n"
|
|
|
|
if special
|
|
|
|
let before = before . "\t"
|
|
|
|
endif
|
2006-10-30 14:19:57 -05:00
|
|
|
endif
|
2006-10-30 21:02:17 -05:00
|
|
|
endif
|
2006-10-31 15:59:02 -05:00
|
|
|
if type ==# 'V'
|
|
|
|
let before = initspaces.before
|
|
|
|
endif
|
|
|
|
let g:initspc = initspaces
|
2006-10-30 21:02:17 -05:00
|
|
|
if before =~ '\n\s*\%$'
|
|
|
|
if type ==# 'v'
|
|
|
|
let keeper = initspaces.keeper
|
2006-10-30 14:19:57 -05:00
|
|
|
endif
|
2006-10-30 21:02:17 -05:00
|
|
|
let padding = matchstr(before,'\n\zs\s\+\%$')
|
|
|
|
let before = substitute(before,'\n\s\+\%$','\n','')
|
|
|
|
let keeper = s:fixindent(keeper,padding)
|
|
|
|
endif
|
|
|
|
"if linemode || keeper =~ '\%^\s*\n'
|
|
|
|
"let before = substitute(before,' *\%$','','')
|
|
|
|
"endif
|
|
|
|
"if linemode || keeper =~ '\n\s*\%$'
|
|
|
|
"let after = substitute(after,'\%^ *','','')
|
|
|
|
"endif
|
|
|
|
if type ==# 'V'
|
|
|
|
let keeper = before.keeper.after
|
|
|
|
elseif type =~ "^\<C-V>"
|
|
|
|
let keeper = substitute(keeper."\n",'\(.\{-\}\)\n',before.'\1'.after.'\n','g')
|
2006-10-27 20:31:44 -04:00
|
|
|
else
|
2006-10-28 23:44:12 -04:00
|
|
|
let keeper = before.extraspace.keeper.extraspace.after
|
2006-10-27 20:31:44 -04:00
|
|
|
endif
|
|
|
|
return keeper
|
2006-10-30 21:02:17 -05:00
|
|
|
endfunction
|
|
|
|
|
2006-10-31 15:59:02 -05:00
|
|
|
function! s:wrapreg(reg,char,...)
|
2006-10-30 21:02:17 -05:00
|
|
|
let orig = getreg(a:reg)
|
|
|
|
let type = getregtype(a:reg)
|
2006-10-31 15:59:02 -05:00
|
|
|
let special = a:0 ? a:1 : 0
|
|
|
|
let new = s:wrap(orig,a:char,type,special)
|
2006-10-30 21:02:17 -05:00
|
|
|
call setreg(a:reg,new,type)
|
|
|
|
endfunction
|
|
|
|
" }}}1
|
2006-10-27 20:31:44 -04:00
|
|
|
|
2006-10-28 23:44:12 -04:00
|
|
|
function! s:insert(...) " {{{1
|
|
|
|
" Optional argument causes the result to appear on 3 lines, not 1
|
2006-10-30 21:02:17 -05:00
|
|
|
"call inputsave()
|
2006-10-28 23:44:12 -04:00
|
|
|
let linemode = a:0 ? a:1 : 0
|
|
|
|
let char = s:inputreplacement()
|
2006-10-31 15:59:02 -05:00
|
|
|
while char == "\<CR>" || char == "\<C-S>"
|
2006-10-28 23:44:12 -04:00
|
|
|
" TODO: use total count for additional blank lines
|
|
|
|
let linemode = linemode + 1
|
|
|
|
let char = s:inputreplacement()
|
|
|
|
endwhile
|
2006-10-30 21:02:17 -05:00
|
|
|
"call inputrestore()
|
2006-10-28 23:44:12 -04:00
|
|
|
if char == ""
|
|
|
|
return ""
|
|
|
|
endif
|
2006-10-30 21:02:17 -05:00
|
|
|
"call inputsave()
|
2006-10-31 15:59:02 -05:00
|
|
|
let reg_save = @@
|
|
|
|
call setreg('"',"\r",'v')
|
|
|
|
call s:wrapreg('"',char,linemode)
|
|
|
|
"if linemode
|
|
|
|
"call setreg('"',substitute(getreg('"'),'^\s\+','',''),'c')
|
|
|
|
"endif
|
|
|
|
if col('.') > col('$')
|
|
|
|
norm! p`]
|
|
|
|
else
|
|
|
|
norm! P`]
|
|
|
|
endif
|
|
|
|
call search('\r','bW')
|
|
|
|
return "\<Del>"
|
2006-10-31 16:34:54 -05:00
|
|
|
" Old implementation follows
|
2006-10-31 15:59:02 -05:00
|
|
|
let @@ = reg_save
|
2006-10-30 21:02:17 -05:00
|
|
|
"let text = s:wrap("\r",char,0)
|
|
|
|
"call inputrestore()
|
2006-10-30 14:19:57 -05:00
|
|
|
set paste
|
|
|
|
let nopaste = "\<Esc>:set nopaste\<CR>:\<BS>gi"
|
2006-10-28 23:44:12 -04:00
|
|
|
if linemode
|
2006-10-30 21:02:17 -05:00
|
|
|
let first = substitute(matchstr(text,'.\{-\}\ze\s*\r'),'\n$','','')
|
|
|
|
let last = substitute(matchstr(text,'\r\s*\zs.*'),'^\n\s*','','')
|
2006-10-30 14:19:57 -05:00
|
|
|
let text = first.nopaste."\<CR>".last."\<C-O>O"
|
|
|
|
elseif text =~ '\r\n'
|
|
|
|
" doesn't work with multiple newlines in second half.
|
|
|
|
let text = substitute(text,'\r\n',"\<CR>",'').nopaste."\<Up>\<End>"
|
2006-10-28 23:44:12 -04:00
|
|
|
else
|
2006-10-30 14:19:57 -05:00
|
|
|
let len = strlen(substitute(substitute(text,'.*\r','',''),'.','.','g'))
|
2006-10-28 23:44:12 -04:00
|
|
|
let left = ""
|
|
|
|
while len > 0
|
|
|
|
let len = len - 1
|
|
|
|
let left = left . "\<Left>"
|
|
|
|
endwhile
|
2006-10-30 14:19:57 -05:00
|
|
|
let text = substitute(text,'\r','','') . left . nopaste
|
2006-10-28 23:44:12 -04:00
|
|
|
endif
|
2006-10-30 14:19:57 -05:00
|
|
|
return text
|
2006-10-28 23:44:12 -04:00
|
|
|
endfunction " }}}1
|
|
|
|
|
|
|
|
function! s:reindent() " {{{1
|
2006-10-29 00:18:16 -04:00
|
|
|
if (exists("b:surround_indent") || exists("g:surround_indent"))
|
2006-10-28 23:44:12 -04:00
|
|
|
silent norm! '[=']
|
|
|
|
endif
|
|
|
|
endfunction " }}}1
|
|
|
|
|
2006-10-27 20:31:44 -04:00
|
|
|
function! s:dosurround(...) " {{{1
|
2006-10-29 16:03:15 -05:00
|
|
|
let scount = v:count1
|
2006-10-28 23:44:12 -04:00
|
|
|
let char = (a:0 ? a:1 : s:inputtarget())
|
2006-10-29 00:18:16 -04:00
|
|
|
let spc = ""
|
2006-10-29 23:57:40 -05:00
|
|
|
if char =~ '^\d\+'
|
|
|
|
let scount = scount * matchstr(char,'^\d\+')
|
|
|
|
let char = substitute(char,'^\d\+','','')
|
|
|
|
endif
|
2006-10-29 00:18:16 -04:00
|
|
|
if char =~ '^ '
|
|
|
|
let char = strpart(char,1)
|
|
|
|
let spc = 1
|
|
|
|
endif
|
2006-10-30 14:19:57 -05:00
|
|
|
if char == 'a'
|
|
|
|
let char = '>'
|
|
|
|
endif
|
|
|
|
if char == 'r'
|
|
|
|
let char = ']'
|
|
|
|
endif
|
2006-10-28 23:44:12 -04:00
|
|
|
let newchar = ""
|
|
|
|
if a:0 > 1
|
|
|
|
let newchar = a:2
|
|
|
|
if newchar == "\<Esc>" || newchar == "\<C-C>" || newchar == ""
|
|
|
|
return s:beep()
|
|
|
|
endif
|
2006-10-27 20:31:44 -04:00
|
|
|
endif
|
|
|
|
let append = ""
|
2006-10-30 21:02:17 -05:00
|
|
|
let original = getreg('"')
|
|
|
|
let otype = getregtype('"')
|
|
|
|
call setreg('"',"")
|
2006-10-29 16:03:15 -05:00
|
|
|
exe "norm d".(scount==1 ? "": scount)."i".char
|
2006-10-27 20:31:44 -04:00
|
|
|
"exe "norm vi".char."d"
|
2006-10-30 21:02:17 -05:00
|
|
|
let keeper = getreg('"')
|
2006-10-29 00:18:16 -04:00
|
|
|
let okeeper = keeper " for reindent below
|
2006-10-30 21:02:17 -05:00
|
|
|
if keeper == ""
|
|
|
|
call setreg('"',original,otype)
|
2006-10-27 20:31:44 -04:00
|
|
|
return ""
|
|
|
|
endif
|
|
|
|
let oldline = getline('.')
|
|
|
|
let oldlnum = line('.')
|
2006-10-29 16:03:15 -05:00
|
|
|
if char ==# "p"
|
2006-10-30 21:02:17 -05:00
|
|
|
"let append = matchstr(keeper,'\n*\%$')
|
|
|
|
"let keeper = substitute(keeper,'\n*\%$','','')
|
|
|
|
call setreg('"','','V')
|
2006-10-29 16:03:15 -05:00
|
|
|
elseif char ==# "s" || char ==# "w" || char ==# "W"
|
2006-10-27 20:31:44 -04:00
|
|
|
" Do nothing
|
2006-10-30 21:02:17 -05:00
|
|
|
call setreg('"','')
|
2006-10-27 20:31:44 -04:00
|
|
|
elseif char =~ "[\"'`]"
|
|
|
|
exe "norm! i \<Esc>d2i".char
|
2006-10-30 21:02:17 -05:00
|
|
|
call setreg('"',substitute(getreg('"'),' ','',''))
|
2006-10-27 20:31:44 -04:00
|
|
|
else
|
|
|
|
exe "norm! da".char
|
|
|
|
endif
|
2006-10-30 21:02:17 -05:00
|
|
|
let removed = getreg('"')
|
2006-10-27 20:31:44 -04:00
|
|
|
let rem2 = substitute(removed,'\n.*','','')
|
|
|
|
let oldhead = strpart(oldline,0,strlen(oldline)-strlen(rem2))
|
|
|
|
let oldtail = strpart(oldline, strlen(oldline)-strlen(rem2))
|
|
|
|
let regtype = getregtype('"')
|
2006-10-30 21:02:17 -05:00
|
|
|
if char == 'p'
|
|
|
|
let regtype = "V"
|
|
|
|
endif
|
2006-10-29 16:03:15 -05:00
|
|
|
if char =~# '[\[({<T]' || spc
|
2006-10-29 00:18:16 -04:00
|
|
|
let keeper = substitute(keeper,'^\s\+','','')
|
|
|
|
let keeper = substitute(keeper,'\s\+$','','')
|
|
|
|
endif
|
2006-10-30 21:02:17 -05:00
|
|
|
if col("']") == col("$") && col('.') + 1 == col('$')
|
|
|
|
"let keeper = substitute(keeper,'^\n\s*','','')
|
|
|
|
"let keeper = substitute(keeper,'\n\s*$','','')
|
2006-10-27 20:31:44 -04:00
|
|
|
if oldhead =~# '^\s*$' && a:0 < 2
|
2006-10-30 21:02:17 -05:00
|
|
|
"let keeper = substitute(keeper,oldhead.'\%$','','')
|
2006-10-27 20:31:44 -04:00
|
|
|
let keeper = substitute(keeper,'\%^\n'.oldhead.'\(\s*.\{-\}\)\n\s*\%$','\1','')
|
|
|
|
endif
|
|
|
|
let pcmd = "p"
|
|
|
|
else
|
|
|
|
if oldhead == "" && a:0 < 2
|
2006-10-30 21:02:17 -05:00
|
|
|
"let keeper = substitute(keeper,'\%^\n\(.*\)\n\%$','\1','')
|
2006-10-27 20:31:44 -04:00
|
|
|
endif
|
|
|
|
let pcmd = "P"
|
|
|
|
endif
|
2006-10-29 16:03:15 -05:00
|
|
|
if line('.') < oldlnum && regtype ==# "V"
|
2006-10-27 20:31:44 -04:00
|
|
|
let pcmd = "p"
|
|
|
|
endif
|
2006-10-30 21:02:17 -05:00
|
|
|
call setreg('"',keeper,regtype)
|
2006-10-27 20:31:44 -04:00
|
|
|
if newchar != ""
|
2006-10-30 21:02:17 -05:00
|
|
|
call s:wrapreg('"',newchar)
|
2006-10-27 20:31:44 -04:00
|
|
|
endif
|
2006-10-30 21:02:17 -05:00
|
|
|
silent exe "norm! ".pcmd.'`['
|
|
|
|
if removed =~ '\n' || okeeper =~ '\n' || getreg('"') =~ '\n'
|
2006-10-29 00:18:16 -04:00
|
|
|
call s:reindent()
|
2006-10-30 14:19:57 -05:00
|
|
|
else
|
2006-10-29 00:18:16 -04:00
|
|
|
endif
|
2006-10-27 20:31:44 -04:00
|
|
|
if getline('.') =~ '^\s\+$' && keeper =~ '^\s*\n'
|
|
|
|
silent norm! cc
|
|
|
|
endif
|
2006-10-30 21:02:17 -05:00
|
|
|
call setreg('"',removed,regtype)
|
|
|
|
let s:lastdel = removed
|
2006-10-27 20:31:44 -04:00
|
|
|
endfunction " }}}1
|
|
|
|
|
2006-10-28 23:44:12 -04:00
|
|
|
function! s:changesurround() " {{{1
|
|
|
|
let a = s:inputtarget()
|
|
|
|
if a == ""
|
|
|
|
return s:beep()
|
|
|
|
endif
|
|
|
|
let b = s:inputreplacement()
|
|
|
|
if b == ""
|
|
|
|
return s:beep()
|
|
|
|
endif
|
|
|
|
call s:dosurround(a,b)
|
|
|
|
endfunction " }}}1
|
2006-10-27 20:31:44 -04:00
|
|
|
|
2006-10-31 15:59:02 -05:00
|
|
|
function! s:opfunc(type,...) " {{{1
|
2006-10-28 23:44:12 -04:00
|
|
|
let char = s:inputreplacement()
|
|
|
|
if char == ""
|
2006-10-27 20:31:44 -04:00
|
|
|
return s:beep()
|
|
|
|
endif
|
2006-10-30 21:02:17 -05:00
|
|
|
let reg = '"'
|
2006-10-27 20:31:44 -04:00
|
|
|
let sel_save = &selection
|
|
|
|
let &selection = "inclusive"
|
2006-10-30 21:02:17 -05:00
|
|
|
let reg_save = getreg(reg)
|
|
|
|
let reg_type = getregtype(reg)
|
|
|
|
let type = a:type
|
2006-10-27 20:31:44 -04:00
|
|
|
if a:type == "char"
|
2006-10-30 21:02:17 -05:00
|
|
|
silent exe 'norm! `[v`]"'.reg."y"
|
|
|
|
let type = 'v'
|
2006-10-27 20:31:44 -04:00
|
|
|
elseif a:type == "line"
|
2006-10-30 21:02:17 -05:00
|
|
|
silent exe 'norm! `[V`]"'.reg."y"
|
|
|
|
let type = 'V'
|
|
|
|
elseif a:type ==# "v" || a:type ==# "V" || a:type ==# "\<C-V>"
|
|
|
|
silent exe 'norm! gv"'.reg."y"
|
2006-10-27 20:31:44 -04:00
|
|
|
elseif a:type =~ '^\d\+$'
|
2006-10-30 21:02:17 -05:00
|
|
|
silent exe 'norm! ^v'.a:type.'$h"'.reg.'y'
|
2006-10-27 20:31:44 -04:00
|
|
|
else
|
|
|
|
let &selection = sel_save
|
|
|
|
return s:beep()
|
|
|
|
endif
|
2006-10-30 21:02:17 -05:00
|
|
|
let keeper = getreg(reg)
|
|
|
|
if type == "v"
|
2006-10-27 20:31:44 -04:00
|
|
|
let append = matchstr(keeper,'\s*$')
|
|
|
|
let keeper = substitute(keeper,'\s*$','','')
|
|
|
|
endif
|
2006-10-30 21:02:17 -05:00
|
|
|
call setreg(reg,keeper,type)
|
2006-10-31 15:59:02 -05:00
|
|
|
call s:wrapreg(reg,char,a:0)
|
2006-10-30 21:02:17 -05:00
|
|
|
silent exe 'norm! gv'.(reg == '"' ? '' : '"' . reg).'p`['
|
|
|
|
if type == 'V' || getreg(reg) =~ '\n'
|
2006-10-28 23:44:12 -04:00
|
|
|
call s:reindent()
|
|
|
|
endif
|
2006-10-30 21:02:17 -05:00
|
|
|
call setreg(reg,reg_save,reg_type)
|
2006-10-27 20:31:44 -04:00
|
|
|
let &selection = sel_save
|
2006-10-31 15:59:02 -05:00
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:opfunc2(arg)
|
|
|
|
call s:opfunc(a:arg,1)
|
2006-10-27 20:31:44 -04:00
|
|
|
endfunction " }}}1
|
|
|
|
|
2006-10-29 19:09:40 -05:00
|
|
|
function! s:closematch(str) " {{{1
|
2006-10-28 23:44:12 -04:00
|
|
|
" Close an open (, {, [, or < on the command line.
|
2006-10-29 16:03:15 -05:00
|
|
|
let tail = matchstr(a:str,'.[^\[\](){}<>]*$')
|
2006-10-28 23:44:12 -04:00
|
|
|
if tail =~ '^\[.\+'
|
|
|
|
return "]"
|
|
|
|
elseif tail =~ '^(.\+'
|
|
|
|
return ")"
|
|
|
|
elseif tail =~ '^{.\+'
|
|
|
|
return "}"
|
|
|
|
elseif tail =~ '^<.+'
|
|
|
|
return ">"
|
|
|
|
else
|
|
|
|
return ""
|
|
|
|
endif
|
2006-10-29 19:09:40 -05:00
|
|
|
endfunction " }}}1
|
2006-10-28 23:44:12 -04:00
|
|
|
|
2006-10-29 19:09:40 -05:00
|
|
|
nnoremap <silent> <Plug>Dsurround :<C-U>call <SID>dosurround(<SID>inputtarget())<CR>
|
|
|
|
nnoremap <silent> <Plug>Csurround :<C-U>call <SID>changesurround()<CR>
|
|
|
|
nnoremap <silent> <Plug>Ysurround :set opfunc=<SID>opfunc<CR>g@
|
2006-10-31 15:59:02 -05:00
|
|
|
nnoremap <silent> <Plug>YSurround :set opfunc=<SID>opfunc2<CR>g@
|
2006-10-29 19:09:40 -05:00
|
|
|
nnoremap <silent> <Plug>Yssurround :<C-U>call <SID>opfunc(v:count1)<CR>
|
2006-10-31 15:59:02 -05:00
|
|
|
nnoremap <silent> <Plug>YSsurround :<C-U>call <SID>opfunc2(v:count1)<CR>
|
2006-10-29 19:09:40 -05:00
|
|
|
vnoremap <silent> <Plug>Vsurround :<C-U>call <SID>opfunc(visualmode())<CR>
|
2006-10-31 15:59:02 -05:00
|
|
|
vnoremap <silent> <Plug>VSurround :<C-U>call <SID>opfunc2(visualmode())<CR>
|
2006-10-29 19:09:40 -05:00
|
|
|
inoremap <silent> <Plug>Isurround <C-R>=<SID>insert()<CR>
|
2006-10-31 15:59:02 -05:00
|
|
|
inoremap <silent> <Plug>ISurround <C-R>=<SID>insert(1)<CR>
|
2006-10-27 20:31:44 -04:00
|
|
|
|
2006-10-29 19:09:40 -05:00
|
|
|
if !exists("g:surround_no_mappings") || ! g:surround_no_mappings
|
|
|
|
nmap ds <Plug>Dsurround
|
|
|
|
nmap cs <Plug>Csurround
|
|
|
|
nmap ys <Plug>Ysurround
|
2006-10-31 15:59:02 -05:00
|
|
|
nmap yS <Plug>YSurround
|
2006-10-29 19:09:40 -05:00
|
|
|
nmap yss <Plug>Yssurround
|
2006-10-31 15:59:02 -05:00
|
|
|
nmap ySs <Plug>YSsurround
|
|
|
|
nmap ySS <Plug>YSsurround
|
2006-10-29 19:09:40 -05:00
|
|
|
if !hasmapto("<Plug>Vsurround","v")
|
|
|
|
vmap s <Plug>Vsurround
|
|
|
|
endif
|
2006-10-31 15:59:02 -05:00
|
|
|
if !hasmapto("<Plug>VSurround","v")
|
|
|
|
vmap S <Plug>VSurround
|
|
|
|
endif
|
2006-10-29 19:09:40 -05:00
|
|
|
if !hasmapto("<Plug>Isurround","i")
|
|
|
|
imap <C-S> <Plug>Isurround
|
|
|
|
endif
|
2006-10-31 15:59:02 -05:00
|
|
|
"imap <C-S><C-S> <Plug>ISurround
|
2006-10-28 23:44:12 -04:00
|
|
|
endif
|
|
|
|
|
2006-10-27 20:31:44 -04:00
|
|
|
let &cpo = s:cpo_save
|
|
|
|
|
2006-10-29 19:09:40 -05:00
|
|
|
" vim:set ft=vim sw=4 sts=4 et:
|