I'm looking an some alternative for PuTTY, in which you can select, copy, and paste text, using only the keyboard.
Does anyone know anything like this?
I'm looking an some alternative for PuTTY, in which you can select, copy, and paste text, using only the keyboard.
Does anyone know anything like this?
This question has already been answered in detail here - please do a search next time.
SSH Secure Shell or try SSH Editor
In kitty at least the backspace key works opposite to putty!
Shift + INS works to insert text.
I think an Autohotkey script could help in general, like the one for the CMD in Windows enabling CTRL+V. However, I could not find a putty/kitty script. Probably you can adapt the existing one:
#IfWinActive ahk_class ConsoleWindowClass
^V::
SendInput {Raw}%clipboard%
return
#IfWinActive
Marking text by SHIFT and CURSOR keys might not work, I assume.