* keybindings/common: add a carriage return to the F5-refresh keybinding

Signed-off-by: Dustin Kirkland <kirkland@canonical.com>
This commit is contained in:
Dustin Kirkland 2009-04-23 16:15:19 -05:00
commit 8c46c3755e
4 changed files with 5 additions and 5 deletions

4
debian/changelog vendored
View file

@ -1,8 +1,8 @@
screen-profiles (1.50) unreleased; urgency=low
* UNRELEASED
* keybindings/common: add a carriage return to the F5-refresh keybinding
-- Dustin Kirkland <kirkland@ubuntu.com> Wed, 22 Apr 2009 22:02:05 -0500
-- Dustin Kirkland <kirkland@ubuntu.com> Thu, 23 Apr 2009 16:13:18 -0500
screen-profiles (1.49-0ubuntu1) jaunty; urgency=low

View file

@ -35,7 +35,7 @@ register n "^a^c" # | Goes with the F2 definition
bindkey -k k2 process n # F2 | Create new window
bindkey -k k3 prev # F3 | Previous Window
bindkey -k k4 next # F4 | Next Window
register r "^a:source $HOME/.screen-profiles/profile" # | Goes with F5 definition
register r "^a:source $HOME/.screen-profiles/profile^M" # | Goes with F5 definition
bindkey -k k5 process r # F5 | Reload profile
bindkey -k k6 detach # F6 | Detach from this session
bindkey -k k7 copy # F7 | Enter copy/scrollback mode

View file

@ -30,7 +30,7 @@ HOME=os.getenv("HOME")
SHARE='/usr/share/screen-profiles'
DOC='/usr/share/doc/screen-profiles'
DEF_ESC="A"
RELOAD = "If you are using the default set of keybindings, press\n<F5><enter> to activate these changes.\n\nOtherwise, exit this screen session and start a new one."
RELOAD = "If you are using the default set of keybindings, press\n<F5> to activate these changes.\n\nOtherwise, exit this screen session and start a new one."
gettext.bindtextdomain('screen-profiles', SHARE+'/po')
gettext.textdomain('screen-profiles')

View file

@ -127,7 +127,7 @@ setprofile() {
found=1
echo
if [ "$TERM" = "screen" ]; then
echo `gettext 'If you are using the default set of keybindings, press\n<F5><enter> to activate these changes.\n\nOtherwise, exit this screen session and start a new one.'`
echo `gettext 'If you are using the default set of keybindings, press\n<F5> to activate these changes.\n\nOtherwise, exit this screen session and start a new one.'`
else
echo `gettext 'Run "screen" to activate'`
fi