6 lines
204 B
VimL
6 lines
204 B
VimL
function! codelines#close()
|
|
let n_line = search('//>', 'bnW')
|
|
return trim(substitute(getline(n_line), '>', '<', ''))
|
|
endfunction
|
|
inoremap <silent> <Plug>(codelines-close) <c-r>=codelines#close()<cr>
|