Merge branch 'nd/parseopt-completion'
Teach parse-options API an option to help the completion script,
and make use of the mechanism in command line completion.
* nd/parseopt-completion: (45 commits)
completion: more subcommands in _git_notes()
completion: complete --{reuse,reedit}-message= for all notes subcmds
completion: simplify _git_notes
completion: don't set PARSE_OPT_NOCOMPLETE on --rerere-autoupdate
completion: use __gitcomp_builtin in _git_worktree
completion: use __gitcomp_builtin in _git_tag
completion: use __gitcomp_builtin in _git_status
completion: use __gitcomp_builtin in _git_show_branch
completion: use __gitcomp_builtin in _git_rm
completion: use __gitcomp_builtin in _git_revert
completion: use __gitcomp_builtin in _git_reset
completion: use __gitcomp_builtin in _git_replace
remote: force completing --mirror= instead of --mirror
completion: use __gitcomp_builtin in _git_remote
completion: use __gitcomp_builtin in _git_push
completion: use __gitcomp_builtin in _git_pull
completion: use __gitcomp_builtin in _git_notes
completion: use __gitcomp_builtin in _git_name_rev
completion: use __gitcomp_builtin in _git_mv
completion: use __gitcomp_builtin in _git_merge_base
...
This commit is contained in:
@ -839,8 +839,9 @@ int cmd_grep(int argc, const char **argv, const char *prefix)
|
||||
OPT_BOOL('L', "files-without-match",
|
||||
&opt.unmatch_name_only,
|
||||
N_("show only the names of files without match")),
|
||||
OPT_BOOL('z', "null", &opt.null_following_name,
|
||||
N_("print NUL after filenames")),
|
||||
OPT_BOOL_F('z', "null", &opt.null_following_name,
|
||||
N_("print NUL after filenames"),
|
||||
PARSE_OPT_NOCOMPLETE),
|
||||
OPT_BOOL('c', "count", &opt.count,
|
||||
N_("show the number of matches instead of matching lines")),
|
||||
OPT__COLOR(&opt.color, N_("highlight matches")),
|
||||
@ -891,9 +892,11 @@ int cmd_grep(int argc, const char **argv, const char *prefix)
|
||||
OPT_GROUP(""),
|
||||
{ OPTION_STRING, 'O', "open-files-in-pager", &show_in_pager,
|
||||
N_("pager"), N_("show matching files in the pager"),
|
||||
PARSE_OPT_OPTARG, NULL, (intptr_t)default_pager },
|
||||
OPT_BOOL(0, "ext-grep", &external_grep_allowed__ignored,
|
||||
N_("allow calling of grep(1) (ignored by this build)")),
|
||||
PARSE_OPT_OPTARG | PARSE_OPT_NOCOMPLETE,
|
||||
NULL, (intptr_t)default_pager },
|
||||
OPT_BOOL_F(0, "ext-grep", &external_grep_allowed__ignored,
|
||||
N_("allow calling of grep(1) (ignored by this build)"),
|
||||
PARSE_OPT_NOCOMPLETE),
|
||||
OPT_END()
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user