Created
November 12, 2011 09:13
-
-
Save veloce/1360277 to your computer and use it in GitHub Desktop.
Jump to a twig view in symfony 2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" 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