mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-27 20:25:12 +00:00
remove mention of __fish_sgrep
This is a trivial change to address issue #2450 by eliminating a inconsequential reference to `__fish_sgrep` in the core C++ code.
This commit is contained in:
parent
ef313dc8c5
commit
095e04cb0d
1 changed files with 1 additions and 2 deletions
|
@ -1567,8 +1567,7 @@ static wrapper_map_t &wrap_map() {
|
||||||
return *wrapper_map;
|
return *wrapper_map;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Add a new target that is wrapped by command. Example: __fish_sgrep (command) wraps grep
|
/// Add a new target that wraps a command. Example: __fish_XYZ (function) wraps XYZ (target).
|
||||||
/// (target).
|
|
||||||
bool complete_add_wrapper(const wcstring &command, const wcstring &new_target) {
|
bool complete_add_wrapper(const wcstring &command, const wcstring &new_target) {
|
||||||
if (command.empty() || new_target.empty()) {
|
if (command.empty() || new_target.empty()) {
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Reference in a new issue