I have been using Secure Shell with byobu and enjoying it quite a bit. Either I have changed some settings or during a update of Secure shell, recently the function to switch from on split to another Shift+up/down stopped working. Is there a way to stop it from scrolling the window and just send the Shift+Up/down to the terminal?
--
You received this message because you are subscribed to the Google Groups "chromium-hterm" group.
To view this discussion on the web visit https://groups.google.com/a/chromium.org/d/msgid/chromium-hterm/fa8d1b34-e15b-4ae8-a069-cba8e6399a2e%40chromium.org.
| Thanks for the quick reply. That is what I was thinking happened. The main problem I have is getting the Shift+ up/down to be passed to the terminal. The code you suggested does indeed replace Shift+Up with Up however trying to pass the shift key with it doesn't seem to work. I looked in the source code where you changed the 2 lines. I also read through the FAQ but still haven't been successful |
| Should have said that I tried that. It functioons the [A functions the same as OA. Did some more digging and figured it out. Using showkey I figured out the string that I needed to send. { "Shift-Down": "'\u001b[1;2B'", "Shift-Up": "'\u001b[1;2A'" } Thanks for the help Mile |