Skip to content

Instantly share code, notes, and snippets.

@veloce
Created November 12, 2011 09:13
Show Gist options
  • Save veloce/1360277 to your computer and use it in GitHub Desktop.
Save veloce/1360277 to your computer and use it in GitHub Desktop.
Jump to a twig view in symfony 2
" jump to a twig view in symfony
set path+=**
function! JumpToTwigView()
mark C
normal! ]M
let end = line(".")
normal! [m
try
call search('\v[^.:]+\.html\.twig', '', end)
normal! gf
catch
normal! g`C
echohl WarningMsg | echomsg "Template file not found" | echohl None
endtry
endfunction
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment