File tree 3 files changed +11
-0
lines changed 3 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,9 @@ _m_sub () {
18
18
bluetooth)
19
19
subcommands=(status on enable off disable help)
20
20
;;
21
+ dialogs)
22
+ subcommands=(autoexpand)
23
+ ;;
21
24
dir)
22
25
subcommands=(tree size delete help)
23
26
;;
Original file line number Diff line number Diff line change @@ -62,6 +62,9 @@ complete -f -c m -n '__fish_m_using_command bluetooth' -a "off" -d 'turn off blu
62
62
complete -f -c m -n ' __fish_m_using_command bluetooth' -a " disable" -d ' turn off bluetooth'
63
63
complete -f -c m -n ' __fish_m_using_command bluetooth' -a " help" -d ' Show help'
64
64
65
+ complete -f -c m -n ' __fish_m_needs_command' -a dialogs -d ' Manage dialogs'
66
+ complete -f -c m -n ' __fish_m_needs_command dialogs' -a " autoexpand" -d ' Whether print, save and other dialogs auto-expand'
67
+
65
68
# # XXX:
66
69
complete -f -c m -n ' __fish_m_needs_command' -a dir -d ' Show and delete dir trees'
67
70
complete -f -c m -n ' __fish_m_using_command dir' -a " tree" -d ' tree view of folders in the current or specified path'
Original file line number Diff line number Diff line change @@ -417,6 +417,11 @@ function _m_cmd {
417
417
"disable:turn off bluetooth" \
418
418
help
419
419
;;
420
+ dialogs)
421
+ _m_solo \
422
+ $sub \
423
+ "autoexpand:Whether dialogs auto-expand"
424
+ ;;
420
425
dir)
421
426
_m_dir
422
427
;;
You can’t perform that action at this time.
0 commit comments