vote up 1 vote down star

I want my Zsh to be Dvorak friendly in Screen.

I am trying to make the following bindings in Zsh such that I can use them in Ctl-a Esc mode in moving

h => d
j => l
k => t
l => n

I have not yet found any ways to do that.

How can you make the following keybindings in Screen, such that I can use them in the mode C-A Esc?

flag

1  
Are you referring to screen's Ctrl+A Esc mode? – Greg Hewgill May 2 at 23:47
@Greg: Yes exactly: I am referring to screen's in Ctrl+A Esc mode in Zsh. – Masi May 3 at 0:03

1 Answer

vote up 2 vote down check

Screen has a markkeys configuration option that lets you remap the keys used in scrollback mode.

The following code makes Screen Dvorak friendly in .screenrc

 markkeys h=d:j=h:k=t:l=n
link|flag
Thank you for your answer! – Masi May 3 at 0:52

Your Answer

Get an OpenID
or

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