I am looking for a way to copy and paste within a TTY. I only have a touchpad and using it with gpm is a pain. The only possibility I can think of is to use "screen" but even after having remapped Ctrl-A to "`", it is still inconvenient and slow. Are not there any more comfortable approaches?
feedback
|
|
If you don't like screen or gpm, your alternatives are quite limited. The other options I can think of are:
| |||||||||
feedback
|
|
You can use ctrl+y to paste. To copy, it depends of what you want to copy. If it is on the prompt : ctrl+u to cut from the begining, ctrl+k to cut until the end. | |||
feedback
|
|
depending on what you are trying to copy and paste... bash does have a vi mode which you can edit your commands in a more like vi way than emacs(bash default) (zsh has a vim mode). putting set -o vi in ~/.bashrc enable's it. | |||
feedback
|