I am trying to check if a line of code is in a file in vimscript. I need to use the return value of grep inside my if but I don't know hot get it.
This does not work of course:
if $(execute '!grep -q ' . shellescape(lineToAdd) . ' ' . shellescape(g:projectPath))
echom "Already added."
return
endif
See
v:shell_error
as seen in this Vim documentation,