Page MenuHomePhabricator

In source views, wrap display tabs in "user-select: all" to improve cursor selection behavior
ClosedPublic

Authored by epriestley on Jul 17 2020, 10:07 PM.
Tags
None
Referenced Files
Unknown Object (File)
Mon, Mar 25, 4:42 PM
Unknown Object (File)
Feb 4 2024, 12:25 AM
Unknown Object (File)
Jan 9 2024, 8:05 AM
Unknown Object (File)
Jan 5 2024, 1:19 PM
Unknown Object (File)
Dec 27 2023, 2:21 PM
Unknown Object (File)
Dec 26 2023, 4:25 PM
Unknown Object (File)
Dec 23 2023, 2:54 PM
Unknown Object (File)
Dec 22 2023, 12:32 PM
Subscribers
None

Details

Summary

Ref T2495. See PHI1814. Currently, Phabricator replaces tabs with spaces when rendering diffs.

This may or may not be the best behavior in the long term, but it gives us more control over expansion of tabs than using tab literals.

However, one downside is that you can use your mouse cursor to select "half a tab", and can't use your mouse cursor to distinguish between tabs and spaces. Although you probably shouldn't be doing this, this behavior is less accurate/correct than selecting the entire block as a single unit.

A specific correctness issue with this behavior is that the entire block is copied to the clipboard as a tab literal if you select any of it, so two different visual selection ranges can produce the same clipboard content.

This particular behavior can be improved with "user-select: all", to instruct browsers to select the entire element as a single logical element. Now, selecting part of the tab selects the whole thing, as though it were really a tab literal.

(Some future change might abandon this approach and opt to use real tab literals with "tab-size" CSS, but we lose some ability to control alignment behavior if we do that and it doesn't have any obvious advantages over this approach other than cursor selection behavior.)

Test Plan
  • In Safari and Firefox, dragged text to select a whitespace-expanded tab literal. Saw browsers select the whole sequence as though it were a single tab.
  • In Chorme, this also mostly works, but there's some glitchiness and flickering. I think this is still a net improvement, it's just not as smooth as Safari and Firefox.

Diff Detail

Repository
rP Phabricator
Lint
Lint Not Applicable
Unit
Tests Not Applicable