Command line is very broken. Generally thinking this might
be a bad idea because it feels like it would be fragile,
needing updating every time we add something to Tridactyl
Works like jsb but preserves the 'user action' so
it can be used to open/close the sidebar, open
downloaded files etc.
Example usage:
`:bind --mode=browser <C-.> jsua browser.sidebarAction.close()`
The Window Id column in the completion list for commands such as 'winmerge'
and 'tabpush' has a maximum width of 4 characters, which is not wide enough
(5-digit id's are often encountered).
Made the following updates:
- Increased the 'id' column from 4ch to 6ch
- Increased the left-right padding to increase spacing between the Window
Id and the Window Title columns for improved readability
On branch fix-window_completion_option-in-commandline_css
Changes to be committed:
modified: src/static/css/commandline.css
Even though it works fine, since comparator should always formally return int,
comply with this requirement to reduce chances of bugs in case sort implementation
changes
Fixes#4294 and #4364
As of FF102, Firefox adds a white background to the iframe - presumably
this applies to all themes, but midnight is the only one where this is
apparent due to the transparent space between the commandline and the
completions.
(Also, pretty made a bunch of changes)
Prefix contains all the same information as for `:tab` (audible, muted,
discarded and pinned tabs), as well as '%' for current tab and '#' for
alternate tab (in current window).
New column between title and content that shows the tabgroup name for
each tab, if available.
Alternate tab (for `:tab #`) is always the last active tab, even
if it's hidden, not the last active visible tab. This means the
alternate tab is not listed if it's in a different group and
`tabshowhidden==true`.
(It's still possible to switch to a tab that is not displayed in
completions.)