You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
s:parseArgs() incorrectly assumes that the first non-option argument is the entire search pattern. Vim's <f-args> doesn't handle quotes like shell quoting does, unfortunately, making this assumption in s:parseArgs() incorrect.
The text was updated successfully, but these errors were encountered:
This fixes the following upstream issues:
<yegappan#9>
<yegappan#11>
<yegappan#17>
Removes find and xargs dependencies.
Removes the following features/options:
Prompting for <search_pattern> if not specified
Prompting for <file_names> if not specified
Grep_Find_Path
Grep_Xargs_Path
Grep_Default_Filelist
Grep_Find_Use_Xargs
Grep_Xargs_Options
Grep_Cygwin_Find
Grep_Shell_Escape_Char
lalbornoz
added a commit
to lalbornoz/vim-greppie
that referenced
this issue
Mar 6, 2023
This fixes the following upstream issues:
<yegappan#9>
<yegappan#11>
<yegappan#17>
Removes find and xargs dependencies.
Removes the following features/options:
Prompting for <search_pattern> if not specified
Prompting for <file_names> if not specified
Grep_Find_Path
Grep_Xargs_Path
Grep_Default_Filelist
Grep_Find_Use_Xargs
Grep_Xargs_Options
Grep_Cygwin_Find
Grep_Shell_Escape_Char
See #10
s:parseArgs() incorrectly assumes that the first non-option argument is the entire search pattern. Vim's
<f-args>
doesn't handle quotes like shell quoting does, unfortunately, making this assumption in s:parseArgs() incorrect.The text was updated successfully, but these errors were encountered: