Skip to content

Instantly share code, notes, and snippets.

@skwp
Created February 16, 2014 01:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save skwp/9027810 to your computer and use it in GitHub Desktop.
Save skwp/9027810 to your computer and use it in GitHub Desktop.
" This function is trying to pass a grep pattern to Ag
" but it seems that the grepPattern is not well escaped
function! AgCurrentPartial()
let fileNameWithoutExtension = expand('%:t:r')
let fileNameWithoutUnderscore = substitute(fileNameWithoutExtension, '^_','','g')
let grepPattern = "render.*[\'\"].*" . fileNameWithoutUnderscore
echom renderInvocationGrepPattern
exec 'Ag "' . grepPattern . '"'
endfunction
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment