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 @@ -21,6 +21,9 @@ _m_sub () {
21
21
bluetooth)
22
22
subcommands=(status on enable off disable help)
23
23
;;
24
+ dialogs)
25
+ subcommands=(autoexpand)
26
+ ;;
24
27
dir)
25
28
subcommands=(tree size delete help)
26
29
;;
Original file line number Diff line number Diff line change @@ -65,6 +65,9 @@ complete -f -c m -n '__fish_m_using_command bluetooth' -a "off" -d 'turn off blu
65
65
complete -f -c m -n ' __fish_m_using_command bluetooth' -a " disable" -d ' turn off bluetooth'
66
66
complete -f -c m -n ' __fish_m_using_command bluetooth' -a " help" -d ' Show help'
67
67
68
+ complete -f -c m -n ' __fish_m_needs_command' -a dialogs -d ' Manage dialogs'
69
+ complete -f -c m -n ' __fish_m_needs_command dialogs' -a " autoexpand" -d ' Whether print, save and other dialogs auto-expand'
70
+
68
71
# # XXX:
69
72
complete -f -c m -n ' __fish_m_needs_command' -a dir -d ' Show and delete dir trees'
70
73
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 @@ -423,6 +423,11 @@ function _m_cmd {
423
423
"disable:turn off bluetooth" \
424
424
help
425
425
;;
426
+ dialogs)
427
+ _m_solo \
428
+ $sub \
429
+ "autoexpand:Whether dialogs auto-expand"
430
+ ;;
426
431
dir)
427
432
_m_dir
428
433
;;
You can’t perform that action at this time.
0 commit comments