Skip to content

Instantly share code, notes, and snippets.

@itsip
Last active September 19, 2017 21:59
Show Gist options
  • Save itsip/2e1598ea8dcec6c23fba1b8804007169 to your computer and use it in GitHub Desktop.
Save itsip/2e1598ea8dcec6c23fba1b8804007169 to your computer and use it in GitHub Desktop.
function for stepping through blade partials
nnoremap <leader>p :call GoToPartial()<CR>
function! GoToPartial()
normal "lyi'
let partial = @l
let file = substitute(partial, "\\.", "/", "g")
execute "edit resources/views/" . file . ".blade.php"
endfunction
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment