Question

I have the following in .screenrc

 # I want to use Vim's navigation keys
 bind h focus down
 bind t focus up                                                                  

I would like to be able to move by Ctrl-A t to a next window, while by `Ctrl-A h to the previous window.

However, the above mappings do not work anymore for me.

How can you move between windows in Screen?

Was it helpful?

Solution

bind h prev
bind t next

OTHER TIPS

If you start screen then type Ctrl-A ?, you'll see the help page, which lists next [n] and prev [p]. I believe that binding to next and prev instead of focus will do what you want.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top