Wez Furlong
Wez Furlong
I'd rather fixup the manifests to reference `../LICENSE.md` to avoid polluting the filesystem in the repo
Take a look at [Quick Select Mode](https://wezfurlong.org/wezterm/quickselect.html); press `CTRL-SHIFT-SPACE` to activate it to highlight text from the terminal buffer. You can configure the patterns used by the default quick select,...
> I'll have to figure out how to have it detect words and other elements. This will add a regex that matches word characters and `-` that seems like it...
Can you tell me more about the higher level workflow you want to achieve here? It sort of sounds similar to the new Workspaces concept available in the nightly; there's...
> I haven't tried the nightly yet, but it sounds like workspaces along with sway could help replicate that (would I need one window per workspace?). The model for workspaces...
> (@wez I'd be interested to name/rename the tabs & workspace as well 🙃) Technically speaking, there's already some code that can rename workspaces, but nothing is attached to it...
I'm going to close this as it sounds like workspaces is the right area for this.
I just pushed a commit that adds a title concept to both [MuxWindow](https://wezfurlong.org/wezterm/config/lua/MuxWindow.html) and [MuxTab](https://wezfurlong.org/wezterm/config/lua/MuxTab.html) so you can get/set titles on those objects via eg: `window:get_title()`, `window:set_title("something")`, `tab:get_title()`, `tab:set_title("something")`. Escape...
With 2e9fe87e34fbd564617d1004b969a89f0c5aadad the API has been expanded a bit to make it easier to traverse the different windows, tabs and panes. Notably, if you define a function like this in...
@ovidiu I saw that you have: ```lua wezterm.GLOBAL.tab_titles = {} ``` at the file scope in your config. I wouldn't recommend that, as it will clear `tab_titles` whenever the config...