Tagged Questions
2
votes
1answer
104 views
Is it possible to select tabs as tabs with mouse in urxvt?
I am running urxvt on Arch Linux. I can select the output with mouse for copy / paste. The problem occurs when output contains tabulators. All tabulators are selected and copied as spaces. That makes ...
2
votes
4answers
546 views
Set tab width in GUI terminal
I found that
setterm -regtabs 4
doesn't work in xterm or urxvt.
But, this
xterm_set_tabs () {
TERM=linux;
export $TERM;
setterm -regtabs 4
}
will circumvent the problem.
But, I suspect ...
