vim-argwrap/wrap.vim

125 lines
4.1 KiB
VimL
Raw Normal View History

2014-11-28 07:37:23 +00:00
" Copyright (c) 2014 Alex Yatskov <alex@foosoft.net>
"
" Permission is hereby granted, free of charge, to any person obtaining a copy of
" this software and associated documentation files (the "Software"), to deal in
" the Software without restriction, including without limitation the rights to
" use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
" the Software, and to permit persons to whom the Software is furnished to do so,
" subject to the following conditions:
"
" The above copyright notice and this permission notice shall be included in all
" copies or substantial portions of the Software.
"
" THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
" IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
" FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
" COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
" IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
" CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
function! FindRange()
let [l:lineStart, l:colStart] = searchpairpos("(", "", ")", "Wnb")
2014-12-01 08:49:14 +00:00
let [l:lineEnd, l:colEnd] = searchpairpos("(", "", ")", "Wn")
return {"lineStart": l:lineStart, "colStart": l:colStart, "lineEnd": l:lineEnd, "colEnd": l:colEnd}
2014-11-28 07:37:23 +00:00
endfunction
2014-12-01 08:49:14 +00:00
function! ExtractArgumentText(range)
2014-11-28 07:37:23 +00:00
let l:text = ""
2014-12-01 08:49:14 +00:00
for l:lineIndex in range(a:range.lineStart, a:range.lineEnd)
2014-11-28 07:37:23 +00:00
let l:lineText = getline(l:lineIndex)
let l:extractStart = 0
2014-12-01 08:49:14 +00:00
if l:lineIndex == a:range.lineStart
let l:extractStart = a:range.colStart
2014-11-28 07:37:23 +00:00
endif
let l:extractEnd = strlen(l:lineText)
2014-12-01 08:49:14 +00:00
if l:lineIndex == a:range.lineEnd
let l:extractEnd = a:range.colEnd - 1
2014-11-28 07:37:23 +00:00
endif
if l:extractStart < l:extractEnd
2014-12-01 03:31:53 +00:00
let l:extract = l:lineText[l:extractStart : l:extractEnd - 1]
let l:extract = substitute(l:extract, "^\\s\\+", "", "g")
2014-12-01 09:21:05 +00:00
let l:extract = substitute(l:extract, ",$", ", ", "g")
2014-12-01 03:31:53 +00:00
let l:text .= l:extract
2014-11-28 07:37:23 +00:00
endif
endfor
return l:text
endfunction
function! UpdateScopeStack(stack, char)
2014-11-28 08:06:36 +00:00
let l:pairs = {"\"": "\"", "\'": "\'", ")": "(", "]": "[", "}": "{"}
2014-11-28 07:37:23 +00:00
let l:length = len(a:stack)
2014-11-28 08:06:36 +00:00
if l:length > 0 && get(l:pairs, a:char, "") == a:stack[l:length - 1]
2014-11-28 07:37:23 +00:00
call remove(a:stack, l:length - 1)
2014-11-28 08:06:36 +00:00
elseif index(values(l:pairs), a:char) >= 0
2014-11-28 07:37:23 +00:00
call add(a:stack, a:char)
endif
endfunction
2014-12-01 03:31:53 +00:00
function! StripArgument(text)
let l:stripped = substitute(a:text, "\\s\\+", "", "")
let l:stripped = substitute(l:stripped, "^\\s\\+", "", "")
return l:stripped
endfunction
2014-11-28 07:37:23 +00:00
function! ExtractArguments(text)
let l:stack = []
let l:arguments = []
let l:argument = ""
for l:index in range(strlen(a:text))
let l:char = a:text[l:index]
call UpdateScopeStack(l:stack, l:char)
2014-11-28 08:06:36 +00:00
2014-11-28 07:37:23 +00:00
if len(l:stack) == 0 && l:char == ","
2014-12-01 03:31:53 +00:00
call add(l:arguments, StripArgument(l:argument))
2014-11-28 07:37:23 +00:00
let l:argument = ""
else
let l:argument .= l:char
endif
endfor
2014-12-01 03:31:53 +00:00
call add(l:arguments, StripArgument(l:argument))
2014-11-28 07:37:23 +00:00
return l:arguments
endfunction
2014-12-01 08:49:14 +00:00
function! ExtractContainer(range)
let l:line = getline(a:range.lineStart)
2014-12-01 09:21:05 +00:00
let l:prefix = l:line[: a:range.colStart - 1]
2014-12-01 08:49:14 +00:00
let l:line = getline(a:range.lineEnd)
let l:suffix = l:line[a:range.colEnd - 1:]
2014-12-01 09:21:05 +00:00
return {"prefix": l:prefix, "suffix": l:suffix}
endfunction
function! RebuildContainer(range, container, arguments)
let l:line = a:range.lineStart
call setline(l:line, a:container.prefix)
for l:argument in a:arguments
call append(l:line, l:argument)
let l:line += 1
call cursor(l:line, 1)
normal! >>
endfor
call append(l:line, a:container.suffix)
2014-12-01 08:49:14 +00:00
endfunction
2014-11-28 07:37:23 +00:00
function! Wrap()
2014-12-01 09:21:05 +00:00
let l:range = FindRange()
let l:argText = ExtractArgumentText(l:range)
let l:arguments = ExtractArguments(l:argText)
let l:container = ExtractContainer(l:range)
echo l:arguments
2014-11-28 07:37:23 +00:00
2014-12-01 09:21:05 +00:00
call RebuildContainer(l:range, l:container, l:arguments)
2014-11-28 07:37:23 +00:00
endfunction