Re: key macros

2002-06-05 Thread darren chamberlain
* David T-G [EMAIL PROTECTED] [2002-06-04 13:17]: It looks like that's the case for Ctl, anyway, and maybe for Shf. Given, thanks to my new friend Bob, the handy perl -lpe '$_ = join , unpack(c*, $_)' to take input per line and spit out key codes and then running echo ctl-v f1 |

Re: key macros

2002-06-05 Thread Thomas E. Dickey
On Wed, 5 Jun 2002, darren chamberlain wrote: I get: $ echo ctrl-v f1 | perl -lpe '$_ = join , unpack(c*, $_)' 27 79 80 $ echo ctrl-v ctrl-F1 | perl -lpe '$_ = join , unpack(c*, $_)' 27 79 53 80 I'm using a happy hacking keyboard, which might make a difference, but I doubt it.

key macros

2002-06-04 Thread Kurt Hindenburg
This works macro index f2 change-folder~/Mail/mutt\n Let's say I want to use Ctrl F2 or Shift F2. I could not find anything in the manual. I did see ESC, but nothing for the Shift nor Ctrl keys.

Re: key macros

2002-06-04 Thread David T-G
Kurt -- ...and then Kurt Hindenburg said... % % This works % macro index f2 change-folder~/Mail/mutt\n % % Let's say I want to use Ctrl F2 or Shift F2. I could not find % anything in the manual. I did see ESC, but nothing for the Shift % nor Ctrl keys. That's an interesting one. For

Re: key macros

2002-06-04 Thread Rocco Rutte
Hi, * David T-G [2002-06-04 17:50:33 CEST] wrote: ...and then Kurt Hindenburg said... % This works % macro index f2 change-folder~/Mail/mutt\n % % Let's say I want to use Ctrl F2 or Shift F2. I could not find % anything in the manual. I did see ESC, but nothing for the Shift % nor

Re: key macros

2002-06-04 Thread Kurt Hindenburg
* Rocco Rutte [EMAIL PROTECTED] [2002-06-04 11:32]: Hi, * David T-G [2002-06-04 17:50:33 CEST] wrote: ...and then Kurt Hindenburg said... % This works % macro index f2 change-folder~/Mail/mutt\n % % Let's say I want to use Ctrl F2 or Shift F2. I could not find % anything in

Re: key macros

2002-06-04 Thread David T-G
Rocco, et al -- ...and then Rocco Rutte said... % % Hi, Hello! % % * David T-G [2002-06-04 17:50:33 CEST] wrote: % ...and then Kurt Hindenburg said... % ... % % Let's say I want to use Ctrl F2 or Shift F2. I could not find ... % For control you can probably use % %\cF2 % % Tried

Re: key macros

2002-06-04 Thread Michael Elkins
Kurt Hindenburg wrote: Let's say I want to use Ctrl F2 or Shift F2. I could not find anything in the manual. I did see ESC, but nothing for the Shift nor Ctrl keys. There is no way (that I know of, and I'm sure Thomas Dickey will correct me here if I'm wrong) to use control or shift with

Re: key macros

2002-06-04 Thread David Champion
* On 2002.06.04, in [EMAIL PROTECTED], * David T-G [EMAIL PROTECTED] wrote: There's a handy utility that spits out the keycodes it gets, though I'm sure the equivalent could be whipped in perl as a one-liner. Anybody recall it? You might be thinking of dumpkeys, but it's a Linux

Re: key macros

2002-06-04 Thread David T-G
Michael, et al -- ...and then Michael Elkins said... % % Kurt Hindenburg wrote: % Let's say I want to use Ctrl F2 or Shift F2. I could not find % anything in the manual. I did see ESC, but nothing for the Shift % nor Ctrl keys. % % There is no way (that I know of, and I'm sure Thomas

Re: key macros - dumpkeys + showkey

2002-06-04 Thread Sven Guckes
* David Thorburn-Gundlach [EMAIL PROTECTED] [2002-06-04]: It looks like that's the case for Ctl, anyway, and maybe for Shf. Given, thanks to my new friend Bob, the handy perl -lpe '$_ = join , unpack(c*, $_)' to take input per line and spit out key codes and then running kewl. talk about

Re: key macros - dumpkeys + showkey

2002-06-04 Thread David T-G
Sven, et al -- ...and then Sven Guckes said... % % * David Thorburn-Gundlach [EMAIL PROTECTED] [2002-06-04]: % It looks like that's the case for Ctl, anyway, and maybe for Shf. % Given, thanks to my new friend Bob, the handy %perl -lpe '$_ = join , unpack(c*, $_)' % to take input per

Re: key macros - dumpkeys + showkey

2002-06-04 Thread Sven Guckes
* DavidThorburn-Gundlach [EMAIL PROTECTED] [2002-06-04 20:23]: %perl -lpe '$_ = join , unpack(c*, $_)' % kewl. talk about killing a sparrow with perl.. Hey, if it works... overkill. [zero] [3:19pm] ~ man -k key | grep code some people will know man -k as apropos.. but trying