I want to be able to hit Ctrl+a (or whatever my command sequence is) followed by a lowercase k rather than the uppercase one that screen defaults to. I've played around with the bindkey directive a bit but the specified key combinations don't require first entering the command sequence (e.g., Ctrl-a).

What's the best way to achieve this while allowing for changes to the command sequence (I don't want to hardcode in "Ctrl-a" somewhere)?

link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

The escape key is implicit in the bind command.

for example :

bind 'j' kill

will bind the kill window action to your ctrl+a, j

also, ctrl+a, k and ctrl+a, K already do the same thing in screen

more on binkey here

link|improve this answer
For my screen installation, only capital K worked but bind "k" kill did the trick. Thanks! – ide May 18 '11 at 17:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.