mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-26 10:43:47 +08:00
complete: support -k (--keep-files) in printed completions
This commit is contained in:
parent
7302dcc12b
commit
e9ee2fb089
|
@ -1686,6 +1686,9 @@ wcstring complete_print() {
|
|||
const option_list_t &options = e.get_options();
|
||||
for (const complete_entry_opt_t &o : options) {
|
||||
out.append(L"complete");
|
||||
|
||||
if (o.flags & COMPLETE_DONT_SORT) append_switch(out, L'k');
|
||||
|
||||
if (o.result_mode.no_files && o.result_mode.requires_param) {
|
||||
append_switch(out, L'x');
|
||||
} else if (o.result_mode.no_files) {
|
||||
|
|
Loading…
Reference in New Issue
Block a user