Earlier quoted context omitted.
Screen has a very large chunk of the potential market share for this sort of utility app. Tmux is going to have to be 10 times better to get people to switch. ("Screen" also has a name that's easy to remember, and to spell.) Is tmux 10 times better than screen? Cause that's what it's going to take to get people to switch at this point.
Not 10 times, no. On the other hand, tmux is improving quickly; if not every day, at least every week. screen, on the other hand, seems pretty stagnant.
GNU Screen: an introduction and beginner's tutorial
41–44 of 44 posts
Re: GNU Screen: an introduction and beginner's tutorial
#42Earlier quoted context omitted.
I've done it a few times with just step 1. I'm not a screen expert, but for whatever reason we didn't need 2 and 3
I'll give it a shot thanks! edit; thanks it works!
Re: GNU Screen: an introduction and beginner's tutorial
#43Stop using Screen. Switch to Tmux ( http://tmux.sourceforge.net/ ). Screen is voodoo. Tmux isn't. EDIT: Compare my tmux.conf ( http://pastebin.com/m2394d7a2 ) and my screenrc ( http://pastebin.com/d7bb649a5 ). It was much easier for me to set up tmux the way I wanted from reading the manpage, than it was to configure screen. My screenrc is a hotchpotch of cut-and-paste from lots of different sources, but I never real…
Tmux uses some non-standard escape sequences, e.g. ctrl- and ctrl-shift- arrow keys. In version 1.0 it's impossible to distinguish between ctrl-left and ctrl-shift-left.
Re: GNU Screen: an introduction and beginner's tutorial
#44While we are talking about screen - I'd really like to be able to highlight text in VIM (using the visual mode) and then be able to paste that into another screen. Does anyone know how to do this?
ScreenShell. It leverages screen to create a viable REPL-buffer for vim, for any language that has an interactive interpreter. http://www.vim.org/scripts/script.php?script_id=2711 Here's an article describing how to use it with lisp: http://www.ktaylor.name/2009/11/vim-screen-lisp-programming-... And finally, some key mappings to bind to sending the current paragraph or selection to the interpreter, from any mode. ht…