" ============================================================================ " File: autoload/delimitMate.vim " Version: 2.1 " Description: This plugin provides auto-completion for quotes, parens, etc. " Maintainer: Israel Chauca F. " Manual: Read ":help delimitMate". " Utilities {{{ function! delimitMate#ShouldJump() "{{{ let col = col('.') let lcol = col('$') let char = getline('.')[col - 1] let nchar = getline('.')[col] let uchar = getline(line('.') + 1)[0] for cdel in b:delimitMate_right_delims + b:delimitMate_quotes_list if char == cdel " Closing delimiter on the right. return 1 endif endfor if b:delimitMate_expand_space && char == " " for cdel in b:delimitMate_right_delims + b:delimitMate_quotes_list if nchar == cdel " Closing delimiter with space expansion. return 1 endif endfor endif if b:delimitMate_expand_cr && char == "" for cdel in b:delimitMate_right_delims + b:delimitMate_quotes_list if uchar == cdel " Closing delimiter with CR expansion. return 1 endif endfor endif return 0 endfunction "}}} function! delimitMate#IsBlockVisual() " {{{ if visualmode() == "" return 1 endif " Store unnamed register values for later use in delimitMate#RestoreRegister(). let b:save_reg = getreg('"') let b:save_reg_mode = getregtype('"') if len(getline('.')) == 0 " This for proper wrap of empty lines. let @" = "\n" endif return 0 endfunction " }}} function! delimitMate#IsEmptyPair(str) "{{{ for pair in b:delimitMate_matchpairs_list if a:str == join( split( pair, ':' ),'' ) return 1 endif endfor for quote in b:delimitMate_quotes_list if a:str == quote . quote return 1 endif endfor return 0 endfunction "}}} function! delimitMate#IsCRExpansion() " {{{ let nchar = getline(line('.')-1)[-1:] let schar = getline(line('.')+1)[-1:] let isEmpty = getline('.') == "" if index(b:delimitMate_left_delims, nchar) > -1 && \ index(b:delimitMate_left_delims, nchar) == index(b:delimitMate_right_delims, schar) && \ isEmpty return 1 elseif index(b:delimitMate_quotes_list, nchar) > -1 && \ index(b:delimitMate_quotes_list, nchar) == index(b:delimitMate_quotes_list, schar) && \ isEmpty return 1 else return 0 endif endfunction " }}} delimitMate#IsCRExpansion() function! delimitMate#IsSpaceExpansion() " {{{ let line = getline('.') let col = col('.')-2 if col > 0 let pchar = line[col - 1] let nchar = line[col + 2] let isSpaces = (line[col] == line[col+1] && line[col] == " ") if index(b:delimitMate_left_delims, pchar) > -1 && \ index(b:delimitMate_left_delims, pchar) == index(b:delimitMate_right_delims, nchar) && \ isSpaces return 1 elseif index(b:delimitMate_quotes_list, pchar) > -1 && \ index(b:delimitMate_quotes_list, pchar) == index(b:delimitMate_quotes_list, nchar) && \ isSpaces return 1 endif endif return 0 endfunction " }}} IsSpaceExpansion() function! delimitMate#WithinEmptyPair() "{{{ let cur = strpart( getline('.'), col('.')-2, 2 ) return delimitMate#IsEmptyPair( cur ) endfunction "}}} function! delimitMate#WriteBefore(str) "{{{ let len = len(a:str) let line = getline('.') let col = col('.')-2 if col < 0 call setline('.',line[(col+len+1):]) else call setline('.',line[:(col)].line[(col+len+1):]) endif return a:str endfunction " }}} function! delimitMate#WriteAfter(str) "{{{ let len = len(a:str) let line = getline('.') let col = col('.')-2 if (col) < 0 call setline('.',a:str.line) else call setline('.',line[:(col)].a:str.line[(col+len):]) endif return '' endfunction " }}} function! delimitMate#RestoreRegister() " {{{ " Restore unnamed register values store in delimitMate#IsBlockVisual(). call setreg('"', b:save_reg, b:save_reg_mode) echo "" endfunction " }}} function! delimitMate#GetCurrentSyntaxRegion() "{{{ return synIDattr(synIDtrans(synID(line('.'), col('.'), 1)), 'name') endfunction " }}} function! delimitMate#GetCurrentSyntaxRegionIf(char) "{{{ let col = col('.') let origin_line = getline('.') let changed_line = strpart(origin_line, 0, col - 1) . a:char . strpart(origin_line, col - 1) call setline('.', changed_line) let region = synIDattr(synIDtrans(synID(line('.'), col, 1)), 'name') call setline('.', origin_line) return region endfunction "}}} function! delimitMate#IsForbidden(char) "{{{ let result = index(b:delimitMate_excluded_regions_list, delimitMate#GetCurrentSyntaxRegion()) >= 0 if result return result endif let region = delimitMate#GetCurrentSyntaxRegionIf(a:char) let result = index(b:delimitMate_excluded_regions_list, region) >= 0 "return result || region == 'Comment' return result endfunction "}}} function! delimitMate#FlushBuffer() " {{{ let b:delimitMate_buffer = [] return '' endfunction " }}} " }}} " Doers {{{ function! delimitMate#JumpIn(char) " {{{ let line = getline('.') let col = col('.')-2 if (col) < 0 call setline('.',a:char.line) call insert(b:delimitMate_buffer, a:char) else "echom string(col).':'.line[:(col)].'|'.line[(col+1):] call setline('.',line[:(col)].a:char.line[(col+1):]) call insert(b:delimitMate_buffer, a:char) endif return '' endfunction " }}} function! delimitMate#JumpOut(char) "{{{ let line = getline('.') let col = col('.')-2 if line[col+1] == a:char call setline('.',line[:(col)].line[(col+2):]) call delimitMate#RmBuffer(1) endif return a:char endfunction " }}} function! delimitMate#JumpAny() " {{{ " Let's get the character on the right. let char = getline('.')[col('.')-1] if char == " " " Space expansion. let char = char . getline('.')[col('.')] . "\" call delimitMate#RmBuffer(2) elseif char == "" " CR expansion. let char = "\" . getline(line('.') + 1)[0] . "\" let b:delimitMate_buffer = [] endif call delimitMate#RmBuffer(1) return char . "\" endfunction " delimitMate#JumpAny() }}} function! delimitMate#SkipDelim(char) "{{{ let cur = strpart( getline('.'), col('.')-2, 3 ) if cur[0] == "\\" " Escaped character return a:char elseif cur[1] == a:char " Exit pair return delimitMate#WriteBefore(a:char) "elseif cur[1] == ' ' && cur[2] == a:char "" I'm leaving this in case someone likes it. Jump an space and delimiter. "return "\\" elseif delimitMate#IsEmptyPair( cur[0] . a:char ) " Add closing delimiter and jump back to the middle. return delimitMate#WriteAfter(a:char) else " Nothing special here, return the same character. return a:char endif endfunction "}}} function! delimitMate#QuoteDelim(char) "{{{ let line = getline('.') let col = col('.') - 2 if line[col] == "\\" " Seems like a escaped character, insert one quotation mark. return a:char elseif line[col + 1] == a:char " Get out of the string. "return delimitMate#WriteBefore(a:char) return a:char . delimitMate#Del() elseif (line[col] =~ '[a-zA-Z0-9]' && a:char == "'") || \(line[col] =~ '[a-zA-Z0-9]' && b:delimitMate_smart_quotes) " Seems like an apostrophe or a closing, insert a single quote. return a:char elseif (line[col] == a:char && line[col + 1 ] != a:char) && b:delimitMate_smart_quotes " Seems like we have an unbalanced quote, insert one quotation mark and jump to the middle. call insert(b:delimitMate_buffer, a:char) return delimitMate#WriteAfter(a:char) else " Insert a pair and jump to the middle. call insert(b:delimitMate_buffer, a:char) call delimitMate#WriteAfter(a:char) return a:char endif endfunction "}}} function! delimitMate#MapMsg(msg) "{{{ redraw echomsg a:msg return "" endfunction "}}} function! delimitMate#ExpandReturn() "{{{ if delimitMate#WithinEmptyPair() && \ b:delimitMate_expand_cr " Expand: call delimitMate#FlushBuffer() return "\a\x\\k$\"_xa" else return "\" endif endfunction "}}} function! delimitMate#ExpandSpace() "{{{ if delimitMate#WithinEmptyPair() && \ b:delimitMate_expand_space " Expand: call insert(b:delimitMate_buffer, 's') return delimitMate#WriteAfter(' ') . "\" else return "\" endif endfunction "}}} function! delimitMate#BS() " {{{ if delimitMate#WithinEmptyPair() call delimitMate#RmBuffer(1) return "\\" " return "\\\" elseif b:delimitMate_expand_cr && \ (delimitMate#IsCRExpansion() != 0 || delimitMate#IsSpaceExpansion()) call delimitMate#RmBuffer(1) return "\\" else return "\" endif endfunction " }}} delimitMate#BS() function! delimitMate#Del() " {{{ if len(b:delimitMate_buffer) > 0 let line = getline('.') let col = col('.') - 2 call delimitMate#RmBuffer(1) call setline('.', line[:col] . line[col+2:]) return '' else return "\" endif endfunction " }}} function! delimitMate#Finish() " {{{ let len = len(b:delimitMate_buffer) if len > 0 let buffer = join(b:delimitMate_buffer, '') let line = getline('.') let col = col('.') -2 echom 'col: ' . col . '-' . line[:col] . "|" . line[col+len+1:] . '%' . buffer call setline('.', line[:col] . line[col+len+1:]) let i = 1 let lefts = '' while i < len let lefts = lefts . "\" let i += 1 endwhile return substitute(buffer, "s", "\", 'g') . lefts endif return '' endfunction " }}} function! delimitMate#RmBuffer(num) " {{{ if len(b:delimitMate_buffer) > 0 call remove(b:delimitMate_buffer, 0, (a:num-1)) endif return "" endfunction " }}} " }}} " Mappers: {{{ function! delimitMate#NoAutoClose() "{{{ " inoremap ) =delimitMate#SkipDelim('\)') for delim in b:delimitMate_right_delims + b:delimitMate_quotes_list exec 'inoremap ' . delim . ' =delimitMate#SkipDelim("' . escape(delim,'"') . '")' endfor endfunction "}}} function! delimitMate#AutoClose() "{{{ " Add matching pair and jump to the midle: " inoremap ( () let i = 0 while i < len(b:delimitMate_matchpairs_list) let ld = b:delimitMate_left_delims[i] let rd = b:delimitMate_right_delims[i] exec 'inoremap ' . ld . ' ' . ld . '=delimitMate#JumpIn("' . rd . '")' "exec 'inoremap ' . ld . ' =delimitMate#JumpIn("' . ld . '")' let i += 1 endwhile " Exit from inside the matching pair: for delim in b:delimitMate_right_delims exec 'inoremap ' . delim . ' =delimitMate#JumpOut("\' . delim . '")' endfor " Add matching quote and jump to the midle, or exit if inside a pair of matching quotes: " inoremap " =delimitMate#QuoteDelim("\"") for delim in b:delimitMate_quotes_list exec 'inoremap ' . delim . ' =delimitMate#QuoteDelim("\' . delim . '")' endfor " Try to fix the use of apostrophes (de-activated by default): " inoremap n't n't for map in b:delimitMate_apostrophes_list exec "inoremap " . map . " " . map endfor endfunction "}}} function! delimitMate#VisualMaps() " {{{ let VMapMsg = "delimitMate: delimitMate is disabled on blockwise visual mode." let vleader = b:delimitMate_visual_leader " Wrap the selection with matching pairs, but do nothing if blockwise visual mode is active: let i = 0 while i < len(b:delimitMate_matchpairs_list) " Map left delimiter: let ld = b:delimitMate_left_delims[i] let rd = b:delimitMate_right_delims[i] exec 'vnoremap ' . vleader . ld . ' delimitMate#IsBlockVisual() ? delimitMate#MapMsg("' . VMapMsg . '") : "s' . ld . '\\"' . rd . '\:call delimitMate#RestoreRegister()"' " Map right delimiter: exec 'vnoremap ' . vleader . rd . ' delimitMate#IsBlockVisual() ? delimitMate#MapMsg("' . VMapMsg . '") : "s' . ld . '\\"' . rd . '\:call delimitMate#RestoreRegister()"' let i += 1 endwhile " Wrap the selection with matching quotes, but do nothing if blockwise visual mode is active: for quote in b:delimitMate_quotes_list " vnoremap \' delimitMate#IsBlockVisual() ? delimitMate#MapMsg("Message") : "s'\\"'\:call delimitMate#RestoreRegister()" exec 'vnoremap ' . vleader . quote . ' delimitMate#IsBlockVisual() ? delimitMate#MapMsg("' . VMapMsg . '") : "s' . escape(quote,'"') .'\\"' . escape(quote,'"') . '\:call delimitMate#RestoreRegister()"' endfor endfunction "}}} function! delimitMate#ExtraMappings() "{{{ " If pair is empty, delete both delimiters: inoremap =delimitMate#BS() " If pair is empty, delete closing delimiter: inoremap delimitMate#WithinEmptyPair() ? "\" : "\" " Expand return if inside an empty pair: if b:delimitMate_expand_cr != 0 inoremap delimitMate#WithinEmptyPair() ? "\=delimitMate#ExpandReturn()\" : "\" endif " Expand space if inside an empty pair: if b:delimitMate_expand_space != 0 inoremap delimitMate#WithinEmptyPair() ? "\=delimitMate#ExpandSpace()\" : "\" endif " Jump out ot any empty pair: if b:delimitMate_tab2exit inoremap delimitMate#ShouldJump() ? delimitMate#JumpAny() : "\" endif " Fix the re-do feature: inoremap =delimitMate#Finish() " Flush the char buffer on mouse click: inoremap =delimitMate#FlushBuffer() inoremap =delimitMate#FlushBuffer() " Flush the char buffer on key movements: inoremap =delimitMate#FlushBuffer() inoremap =delimitMate#FlushBuffer() inoremap =delimitMate#FlushBuffer() inoremap =delimitMate#FlushBuffer() inoremap =delimitMate#Del() endfunction "}}} "}}} " Tools: {{{ function! delimitMate#TestMappings() "{{{ if b:delimitMate_autoclose for i in range(len(b:delimitMate_left_delims)) exec "normal GGAOpen & close: " . b:delimitMate_left_delims[i]. "|" exec "normal A\Delete: " . b:delimitMate_left_delims[i] . "\|" exec "normal A\Exit: " . b:delimitMate_left_delims[i] . b:delimitMate_right_delims[i] . "|" exec "normal A\Space: " . b:delimitMate_left_delims[i] . " |" exec "normal A\Delete space: " . b:delimitMate_left_delims[i] . " \|" exec "normal GGA\Visual-L: v\v" . b:delimitMate_visual_leader . b:delimitMate_left_delims[i] exec "normal A\Visual-R: v\v" . b:delimitMate_visual_leader . b:delimitMate_right_delims[i] exec "normal A\Car return: " . b:delimitMate_left_delims[i] . "\|" exec "normal GGA\Delete car return: " . b:delimitMate_left_delims[i] . "\\|\GGA\\" endfor for i in range(len(b:delimitMate_quotes_list)) exec "normal GGAOpen & close: " . b:delimitMate_quotes_list[i] . "|" exec "normal A\Delete: " exec "normal A". b:delimitMate_quotes_list[i] exec "normal a\|" exec "normal A\Exit: " . b:delimitMate_quotes_list[i] . b:delimitMate_quotes_list[i] . "|" exec "normal A\Space: " . b:delimitMate_quotes_list[i] . " |" exec "normal A\Delete space: " . b:delimitMate_quotes_list[i] . " \|" exec "normal GGA\Visual: v\v" . b:delimitMate_visual_leader . b:delimitMate_quotes_list[i] exec "normal A\Car return: " . b:delimitMate_quotes_list[i] . "\|" exec "normal GGA\Delete car return: " . b:delimitMate_quotes_list[i] . "\\|\GGA\\" endfor else for i in range(len(b:delimitMate_left_delims)) exec "normal GGAOpen & close: " . b:delimitMate_left_delims[i] . b:delimitMate_right_delims[i] . "|" exec "normal A\Delete: " . b:delimitMate_left_delims[i] . b:delimitMate_right_delims[i] . "\|" exec "normal A\Exit: " . b:delimitMate_left_delims[i] . b:delimitMate_right_delims[i] . b:delimitMate_right_delims[i] . "|" exec "normal A\Space: " . b:delimitMate_left_delims[i] . b:delimitMate_right_delims[i] . " |" exec "normal A\Delete space: " . b:delimitMate_left_delims[i] . b:delimitMate_right_delims[i] . " \|" exec "normal GGA\Visual-L: v\v" . b:delimitMate_visual_leader . b:delimitMate_left_delims[i] exec "normal A\Visual-R: v\v" . b:delimitMate_visual_leader . b:delimitMate_right_delims[i] exec "normal A\Car return: " . b:delimitMate_left_delims[i] . b:delimitMate_right_delims[i] . "\|" exec "normal GGA\Delete car return: " . b:delimitMate_left_delims[i] . b:delimitMate_right_delims[i] . "\\|\GGA\\" endfor for i in range(len(b:delimitMate_quotes_list)) exec "normal GGAOpen & close: " . b:delimitMate_quotes_list[i] . b:delimitMate_quotes_list[i] . "|" exec "normal A\Delete: " . b:delimitMate_quotes_list[i] . b:delimitMate_quotes_list[i] . "\|" exec "normal A\Exit: " . b:delimitMate_quotes_list[i] . b:delimitMate_quotes_list[i] . b:delimitMate_quotes_list[i] . "|" exec "normal A\Space: " . b:delimitMate_quotes_list[i] . b:delimitMate_quotes_list[i] . " |" exec "normal A\Delete space: " . b:delimitMate_quotes_list[i] . b:delimitMate_quotes_list[i] . " \|" exec "normal GGA\Visual: v\v" . b:delimitMate_visual_leader . b:delimitMate_quotes_list[i] exec "normal A\Car return: " . b:delimitMate_quotes_list[i] . b:delimitMate_quotes_list[i] . "\|" exec "normal GGA\Delete car return: " . b:delimitMate_quotes_list[i] . b:delimitMate_quotes_list[i] . "\\|\GGA\\" endfor endif exec "normal \i" endfunction "}}} function! delimitMate#Tests() " {{{ endfunction " }}} "}}} " vim:foldmethod=marker:foldcolumn=4