austinjones / tab-rs

The intuitive, config-driven terminal multiplexer designed for software & systems engineers
MIT License
659 stars 29 forks source link

Idea: Scratch tabs #364

Open alexherbo2 opened 3 years ago

alexherbo2 commented 3 years ago

Example – Open files in Kakoune:

define-command tab -params .. -shell-completion %{
  nop %sh{
    tab "$@"
  }
}

tab sh -c %{
  find | fzf | xargs kcr edit --
}

Kakoune does not have its own windowing, so it could be pretty cool to be able to signal to open a tab when we are in tab and return from the command-line.