Live data from Hacker News

GNU Screen - A Hacker's Ideal Terminal

ibm.com

1–10 of 103 posts

Re: GNU Screen - A Hacker's Ideal Terminal

#2
I don't think I can live without it anymore.

There is no reason why you shouldn't use screen when ssh'ing in and working on remote machines, it will save you tons of time in case the connection goes down, plus allows your to keep a persistent working environment on remote boxes.

    ssh -t user@host screen -rx
That will drop you immediately to a running screen on connect

Re: GNU Screen - A Hacker's Ideal Terminal

#6

Screen uses C-a as its "command" character. Unfortunately, C-a means "go to start of line" in emacs and terminals. The solution? In your .screenrc file: escape ^Ww This will default C-w as the command character.

Isn't C-w kill-region in emacs? I recently came up against this problem too, but what else to change it to .. ?

Re: GNU Screen - A Hacker's Ideal Terminal

#9
post #6

Screen uses C-a as its "command" character. Unfortunately, C-a means "go to start of line" in emacs and terminals. The solution? In your .screenrc file: escape ^Ww This will default C-w as the command character.

Isn't C-w kill-region in emacs? I recently came up against this problem too, but what else to change it to .. ?

[deleted]

Re: GNU Screen - A Hacker's Ideal Terminal

#10
post #6

Screen uses C-a as its "command" character. Unfortunately, C-a means "go to start of line" in emacs and terminals. The solution? In your .screenrc file: escape ^Ww This will default C-w as the command character.

Isn't C-w kill-region in emacs? I recently came up against this problem too, but what else to change it to .. ?

I'm using C-z, but it's sort of an awkward key to use.
Post reply on HN