diff options
| author | Roberto E. Vargas Caballero <k0ga@shike2.com> | 2015-09-08 17:00:20 +0200 | 
|---|---|---|
| committer | Roberto E. Vargas Caballero <k0ga@shike2.com> | 2015-09-08 17:02:15 +0200 | 
| commit | a1ed5071e54e4f8ce765c07d5415da7d8cedf618 (patch) | |
| tree | 2900e278da4881eccfef8c7cd226e4a48d98c4b6 | |
| parent | 3ba9c8fc3f547a5762b3d4a6a16cc794446d76a3 (diff) | |
| download | st-a1ed5071e54e4f8ce765c07d5415da7d8cedf618.tar.xz st-a1ed5071e54e4f8ce765c07d5415da7d8cedf618.zip  | |
Change Pause to Break in shortcut for serial break
| -rw-r--r-- | config.def.h | 2 | ||||
| -rw-r--r-- | st.1 | 6 | 
2 files changed, 5 insertions, 3 deletions
diff --git a/config.def.h b/config.def.h index c7ce3b4..52bf3a4 100644 --- a/config.def.h +++ b/config.def.h @@ -143,7 +143,7 @@ static Mousekey mshortcuts[] = {  static Shortcut shortcuts[] = {  	/* mask                 keysym          function        argument */ -	{ XK_NO_MOD,            XK_Pause,       sendbreak,      {.i =  0} }, +	{ XK_ANY_MOD,           XK_Break,       sendbreak,      {.i =  0} },  	{ ControlMask,          XK_Print,       toggleprinter,  {.i =  0} },  	{ ShiftMask,            XK_Print,       printscreen,    {.i =  0} },  	{ XK_ANY_MOD,           XK_Print,       printsel,       {.i =  0} }, @@ -122,8 +122,10 @@ and all the remaining arguments are used as a command  even without it.  .SH SHORTCUTS  .TP -.B Pause -Send a break in the serial line +.B Break +Send a break in the serial line. +Break key is obtained in PC keyboards +pressing at the same time control and pause.  .TP  .B Ctrl-Print Screen  Toggle if st should print to the  | 
