After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 353610 - Don't convert tab characters upon copying
Don't convert tab characters upon copying
Status: RESOLVED FIXED
Product: vte
Classification: Core
Component: general
unspecified
Other Linux
: Normal enhancement
: ---
Assigned To: VTE Maintainers
VTE Maintainers
: 498470 (view as bug list)
Depends on:
Blocks:
 
 
Reported: 2006-08-30 22:04 UTC by Behdad Esfahbod
Modified: 2007-11-27 13:14 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Behdad Esfahbod 2006-08-30 22:04:51 UTC
Now that we make a difference between space and empty (eg, echo " "), will be rad to also preserve tab characters.  In selection and when copying. (xterm doesn't do this.)
Comment 1 Behdad Esfahbod 2007-11-25 05:27:52 UTC
*** Bug 498470 has been marked as a duplicate of this bug. ***
Comment 2 Behdad Esfahbod 2007-11-27 05:52:27 UTC
So I started attacking this.  It's not trivial, because tab is supposed to change cursor position only and not overwrite the jumped area.  However, before giving up, I thought maybe we can do something smart, that is, if the area is empty, try to preserve the tab.  That's mostly possible and easy to do.  The way I thought it can be easily done is to append one cell with the \t char and many columns, followed by "fragment" cells.  This way, it would be nice as mouse selection will select all or none of the tab cells.

There are technical issues though:

  - The tab character then is passed to renderer.  Easy to fix by skipping nonprint chars.  I considered marking it as invisible, but that would leak to the user because we give out attributes if asked for.  (though the attribute struct is private, ouch!)

  - cell.attr.columns is only two bits and we have only one more bit left in cell.attr.  So it can be expanded to three bits, which works for tabs up to 7 cells wide, but not the common eight :(.

Comment 3 Behdad Esfahbod 2007-11-27 05:55:36 UTC
Umm, ignore my comment about attributes.  Public attributes are different from private attributes.
Comment 4 Behdad Esfahbod 2007-11-27 06:16:56 UTC
Ok, emptied two bits in the attr struct.
Comment 5 Behdad Esfahbod 2007-11-27 11:07:47 UTC
Ok, increased column bits to 4, added check for overflow to fallback to space tabs, and abused invisible attribute.  Filed bug 499944 to fix that later.

2007-11-27  Behdad Esfahbod  <behdad@gnome.org>

        Bug 353610 – Don't convert tab characters upon copying

        * src/vte-private.h:
        * src/vteseq.c (vte_sequence_handler_ta):
        Smart tab handling to try to preserve tab character upong copying.
        Also makes such smart tabs all-or-none selectable.

Comment 6 Pierre Ossman 2007-11-27 11:51:53 UTC
Yay!

When will be seeing the effects of this in gnome-terminal?
Comment 7 Behdad Esfahbod 2007-11-27 12:01:49 UTC
According to roadmap, Dec 5 is next GNOME devel release.  Expect it then.

Note though that while it works great when you cat or diff to the terminal, it doesn't work with less or vim as those convert tab to spaces and terminal never sees the tabs.  That's the best I could do anyway.
Comment 8 Pierre Ossman 2007-11-27 13:14:02 UTC
I expect problems to be fixed at the source, so I'd blame less/vim in those cases. :)

My normal use case is {git,svn,} diff, which this will cover nicely.