mirror of
https://github.com/ViViDboarder/vim-settings.git
synced 2024-11-05 23:46:28 +00:00
29 lines
695 B
VimL
29 lines
695 B
VimL
" Avoid installing twice or when in unsupported Vim version.
|
|
if exists('g:loaded_file_line') || (v:version < 700)
|
|
finish
|
|
endif
|
|
let g:loaded_file_line = 1
|
|
|
|
function! s:gotoline()
|
|
let file = bufname("%")
|
|
" Accept file:line:column: or file:line:column and file:line also
|
|
let names = matchlist( file, '\(.\{-1,}\):\(\d\+\)\(:\(\d*\):\?\)\?$')
|
|
|
|
if len(names) != 0 && filereadable(names[1])
|
|
let l:bufn = bufnr("%")
|
|
exec "keepalt edit " . names[1]
|
|
exec ":" . names[2]
|
|
exec ":bwipeout " l:bufn
|
|
if foldlevel(names[2]) > 0
|
|
exec ":foldopen!"
|
|
endif
|
|
|
|
if (names[4] != '')
|
|
exec "normal! " . names[4] . '|'
|
|
endif
|
|
endif
|
|
|
|
endfunction
|
|
|
|
autocmd! BufNewFile *:* nested call s:gotoline()
|