Unable to bind HJKL to DLTH in Screen's C-A Esc -mode
Asked Answered
C

1

2

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?

Cheke answered 2/5, 2009 at 23:41 Comment(2)
Are you referring to screen's Ctrl+A Esc mode?Superstar
@Greg: Yes exactly: I am referring to screen's in Ctrl+A Esc mode in Zsh.Mythify
S
3

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 
Superstar answered 3/5, 2009 at 0:27 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.