[lastbash-cvs] lastbash lastbash,1.103,1.104
Status: Beta
Brought to you by:
cstroie
|
From: Costin S. <cs...@us...> - 2006-12-21 13:20:06
|
Update of /cvsroot/lastbash/lastbash In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv23768 Modified Files: lastbash Log Message: Keymapping changed. Index: lastbash =================================================================== RCS file: /cvsroot/lastbash/lastbash/lastbash,v retrieving revision 1.103 retrieving revision 1.104 diff -u -d -r1.103 -r1.104 --- lastbash 21 Dec 2006 13:16:47 -0000 1.103 +++ lastbash 21 Dec 2006 13:20:01 -0000 1.104 @@ -73,8 +73,11 @@ CR=$'\x0d' LF=$'\x0a' CTRL_D=$'\x04' +CTRL_H=$'\x08' CTRL_L=$'\x0c' CTRL_S=$'\x13' +CTRL_V=$'\x16' +CTRL_X=$'\x18' NUMBER_REGEXP="+([0-9])" # Set some shell options @@ -1948,16 +1951,16 @@ "k") tui_lastfm_command_skip ;; "p") tui_lastfm_rtp ;; "d") tui_lastfm_discovery ;; - "${CTRL_S}") tui_scroll_toggle ;; + "${CTRL_H}") tui_scroll_toggle ;; # Redisplay the TUI "${CTRL_L}") sigwinch ;; # Toggle debug mode "${CTRL_D}") tui_debug_toggle ;; # Player commands "x") player_load ;; - "X") player_start ;; + "${CTRL_X}") player_start ;; "v") player_stop ;; - "V") player_quit ;; + "${CTRL_V}") player_quit ;; "m") player_mute ;; # Quit "q") DONE="y" ;; |