Skip to content

A smart wezterm workspace switcher plugin inspired by joshmedeski/t-smart-tmux-session-manager

License

Notifications You must be signed in to change notification settings

MLFlexer/smart_workspace_switcher.wezterm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

88 Commits
 
 
 
 
 
 
 
 

Repository files navigation

smart_workspace_switcher.wezterm

A smart Wezterm workspace switcher inspired by t-smart-tmux-session-manager and its successor sesh

Usage

💨 Level up your workflow by switching between workspaces ⚡ BLAZINGLY FAST ⚡ with 1️⃣ keypress, the power of fuzzy finding and zoxide! 💨

Demo gif

Dependencies

  • zoxide

Setup

  1. Require the plugin:

    local wezterm = require("wezterm")
    local workspace_switcher = wezterm.plugin.require("https://github.com/MLFlexer/smart_workspace_switcher.wezterm")
  2. Apply the default keybinding to the config:

    workspace_switcher.apply_to_config(config)

Or create your own keybinding, see Configuration - Keybinding.

Configuration:

Keybinding

To add a custom keybinding:

config.keys = {
  -- ...
  -- your other keybindings
  {
    key = "s",
    mods = "ALT",
    action = workspace_switcher.switch_workspace(),
  }
}

Changing the Default Workspace Name

You can set a default workspace name:

config.default_workspace = "~"

Additional Filtering

You can include extra_args in the call to switch_workspace to filter the results of the zoxide query further. The extra_args is just a string concatenated to the command like so: zoxide query -l <extra_args>. For example, to select projects from a predefined list in ~/.projects, call the plugin like this:

workspace_switcher.switch_workspace({ extra_args = " | rg -Fxf ~/.projects" })

Changing elements of the fuzzy finder

You can change the list of elements of the fuzzy finder by setting a new function for get_choices likes so:

local workspace_switcher = wezterm.plugin.require("https://github.com/MLFlexer/smart_workspace_switcher.wezterm")
workspace_switcher.get_choices = function(opts)
  -- this will ONLY show the workspace elements, NOT the Zoxide results
  return workspace_switcher.choices.get_workspace_elements({})
end

By default the function uses the following functions to create a list:

workspace_switcher.choices.get_workspace_elements({ id: string, label: string }[])
workspace_switcher.choices.get_zoxide_elements({ id: string, label: string }[], {extra_args?: string, workspace_ids?: workspace_ids}?)

Updating the Right Status with the Path

To add the selected path to the right status bar, use the smart_workspace_switcher.workspace_switcher.chosen event emitted when choosing a workspace:

wezterm.on("smart_workspace_switcher.workspace_switcher.chosen", function(window, workspace)
  local gui_win = window:gui_window()
  local base_path = string.gsub(workspace, "(.*[/\\])(.*)", "%2")
  gui_win:set_right_status(wezterm.format({
    { Foreground = { Color = "green" } },
    { Text = base_path .. "  " },
  }))
end)

wezterm.on("smart_workspace_switcher.workspace_switcher.created", function(window, workspace)
  local gui_win = window:gui_window()
  local base_path = string.gsub(workspace, "(.*[/\\])(.*)", "%2")
  gui_win:set_right_status(wezterm.format({
    { Foreground = { Color = "green" } },
    { Text = base_path .. "  " },
  }))
end)

Events

The following events are available and can be used to trigger custom behavior:

  • smart_workspace_switcher.workspace_switcher.start - Triggered when the fuzzy finder starts.
  • smart_workspace_switcher.workspace_switcher.canceled - Triggered if no element is chosen.
  • smart_workspace_switcher.workspace_switcher.selected - Triggered when an element is selected.
  • smart_workspace_switcher.workspace_switcher.created - Triggered after creating and switching to a new workspace.
  • smart_workspace_switcher.workspace_switcher.chosen - Triggered after switching to a workspace.

Note

The created and chosen events emit MuxWindow objects while the others emit GuiWindow objects.

Example usage:

wezterm.on("smart_workspace_switcher.workspace_switcher.chosen", function(window, workspace)
  wezterm.log_info("THIS IS EMITTED FROM THE CALLBACK")
end)

Workspace Formatter

Set a custom workspace formatter using the following example. For more information, see the Wezterm formatting docs:

workspace_switcher.workspace_formatter = function(label)
  return wezterm.format({
    { Attribute = { Italic = true } },
    { Foreground = { Color = "green" } },
    { Background = { Color = "black" } },
    { Text = "󱂬: " .. label },
  })
end

Zoxide Path

To define a custom path to zoxide:

workspace_switcher.zoxide_path = "/path/to/zoxide"