jwortmann
jwortmann
Here is the essential code for Windows, extracted from that package. It uses the native color picker from the win32 API (no additional binary required) and doesn't support an alpha...
Thanks for clarification! Good point about multiple terminals with the same title, I didn't think about that. I agree that replacing a terminal might be useful if the panel_name is...
With "panel background color", do you mean (a) the background color of the console, or (b) the color of the panel border (which is the same color as the status...
I would say in your screenshots the panel background color maybe looks a tiny bit better because it allows to easily distinguish the Terminus output panel from a regular view....
It works for me with the latest Terminus version (v0.3.19), and it should even instantly update in a Terminus panel when you switch through your color scheme from the menu...
I assume you have "color_scheme" set to "auto" and the Terminus scheme to "adaptive"? Yeah this edge case was missed for the adaptive Terminus theme, because once set to auto,...
> Maybe a different color of the ruler line could do the trick This is possible via the color scheme (customization): ```json { "globals": { "rulers": "magenta", } } ```
> New views are also not added to selection. That is correct, but it also complies with the documentation, because `ADD_TO_SELECTION` is not listed as possible flag for [`new_file`](https://www.sublimetext.com/docs/api_reference.html#sublime.Window.new_file) (only...
Yes, I agree. Currently we could use the following workaround: ```python selected_sheets = window.selected_sheets() new_sheet = window.new_html_sheet("My HtmlSheet", "") # or new_sheet = window.new_file().sheet() selected_sheets.append(new_sheet) window.select_sheets(selected_sheets) ```
I would find this useful too, and some time ago I asked on the forum whether it is possible in ST: https://forum.sublimetext.com/t/how-to-multiple-textinputhandlers-work/44623/5 It seems there is no built-in way to...