File tree 3 files changed +13
-10
lines changed 3 files changed +13
-10
lines changed Original file line number Diff line number Diff line change @@ -4,11 +4,14 @@ All notable changes to this project will be documented here.
4
4
5
5
---
6
6
7
- ## [ Unreleased ]
7
+ ## [ 2.2.2 ] - 2025-04-26
8
8
9
9
### Changed
10
10
11
11
- Updated Screenshots
12
+ - tools/dbg_vars.sh - When running with 'clear' it clears env before displaying
13
+ current state
14
+ - whiptail / dialog - useses ` --title ` option to display title
12
15
13
16
---
14
17
Original file line number Diff line number Diff line change @@ -184,7 +184,7 @@ alt_prefix() {
184
184
whiptail | dialog) ;;
185
185
* ) error_msg " Un-recognized cfg_alt_menu_handler: [$cfg_alt_menu_handler ]" ;;
186
186
esac
187
- menu_items=" $cfg_alt_menu_handler --menu \" $menu_name \" 0 0 0 "
187
+ menu_items=" $cfg_alt_menu_handler --title \" $menu_name \" --menu \" \" 0 0 0 "
188
188
}
189
189
190
190
alt_open_menu () {
Original file line number Diff line number Diff line change 9
9
# Available debug variables
10
10
#
11
11
12
+ [ " $1 " = " clear" ] && {
13
+ unset TMUX_MENUS_SHOW_CMDS
14
+ unset TMUX_MENUS_LOGGING_MINIMAL
15
+ unset TMUX_MENUS_NO_DISPLAY
16
+ unset TMUX_MENUS_PROFILING
17
+ unset TMUX_MENUS_HANDLER
18
+ }
19
+
12
20
echo " TMUX_MENUS_SHOW_CMDS $TMUX_MENUS_SHOW_CMDS "
13
21
echo " 1 Display cmd used for an action, if a prefix sequence show it"
14
22
echo
33
41
echo " To clear all debug variables, source this with option: clear"
34
42
echo " . $0 clear"
35
43
echo
36
-
37
- [ " $1 " = " clear" ] && {
38
- unset TMUX_MENUS_SHOW_CMDS
39
- unset TMUX_MENUS_LOGGING_MINIMAL
40
- unset TMUX_MENUS_NO_DISPLAY
41
- unset TMUX_MENUS_PROFILING
42
- unset TMUX_MENUS_HANDLER
43
- }
You can’t perform that action at this time.
0 commit comments