mirror of
https://github.com/duncs/clusterssh.git
synced 2025-04-21 00:59:07 +00:00
Amend key_quit from 'Control-q' to 'Alt-q'
This is to remove a long-standing conflict with 'Control-s/Control-q' Github issue #50
This commit is contained in:
parent
9431f57a60
commit
7706fdc45e
4 changed files with 7 additions and 4 deletions
3
Changes
3
Changes
|
@ -1,3 +1,6 @@
|
|||
4.05 0000-00-00 Duncan Ferguson <duncan_ferguson@user.sf.net>
|
||||
- Change default key_quit from 'Control-q' to 'Alt-q' (Github issue #50)
|
||||
|
||||
4.04_01 2015-11-21 Duncan Ferguson <duncan_ferguson@user.sf.net>
|
||||
- Ensure documentation is generated using same perl as the build (Github issue #45)
|
||||
- Pass '--action' through macro parsing (Github issue #42)
|
||||
|
|
|
@ -3,7 +3,7 @@ package App::ClusterSSH;
|
|||
use 5.008.004;
|
||||
use warnings;
|
||||
use strict;
|
||||
use version; our $VERSION = version->new('4.04_01');
|
||||
use version; our $VERSION = version->new('4.05');
|
||||
|
||||
use Carp qw/cluck :DEFAULT/;
|
||||
|
||||
|
|
|
@ -33,7 +33,7 @@ my %default_config = (
|
|||
terminal_size => "80x24",
|
||||
|
||||
use_hotkeys => "yes",
|
||||
key_quit => "Control-q",
|
||||
key_quit => "Alt-q",
|
||||
key_addhost => "Control-Shift-plus",
|
||||
key_clientname => "Alt-n",
|
||||
key_history => "Alt-h",
|
||||
|
|
|
@ -37,7 +37,7 @@ Readonly::Hash my %default_config => {
|
|||
terminal_size => "80x24",
|
||||
|
||||
use_hotkeys => "yes",
|
||||
key_quit => "Control-q",
|
||||
key_quit => "Alt-q",
|
||||
key_addhost => "Control-Shift-plus",
|
||||
key_clientname => "Alt-n",
|
||||
key_history => "Alt-h",
|
||||
|
@ -541,7 +541,7 @@ key_history=Alt-h
|
|||
key_localname=Alt-l
|
||||
key_macros_enable=Alt-p
|
||||
key_paste=Control-v
|
||||
key_quit=Control-q
|
||||
key_quit=Alt-q
|
||||
key_retilehosts=Alt-r
|
||||
key_username=Alt-u
|
||||
lang=en
|
||||
|
|
Loading…
Add table
Reference in a new issue