You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With fzf I use the --height option to make it not go "fullscreen". With tab, if I type tab or ctrl-t, then decide not to go into one of the sessions and hit escape, it annoyingly still clears my current session.
Also, fwiw, I tried to see what would happen if I piped the name of a tab into tab so I could actually use it with fzf easily:
$ echo one | tab
thread 'tokio-runtime-worker' panicked at 'failed to enable raw mode: IoError(Os { code: 25, kind: Other, message: "Inappropriate ioctl for device" })', /Users/kbd/.cargo/registry/src/github.jparrowsec.cn-1ecc6299db9ec823/tab-command-0.5.4/src/service/terminal.rs:32:48
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
The text was updated successfully, but these errors were encountered:
I think I could make tab; ESC preserve your command history. It wouldn't work if you had disconnected from a session though - as tab resets the terminal state when disconnecting (removing the stdout from your root shell from the buffer).
It definitely makes sense to have echo foo | tab do something. Maybe open the fuzzy finder with the input as a query.
With
fzf
I use the--height
option to make it not go "fullscreen". With tab, if I typetab
or ctrl-t, then decide not to go into one of the sessions and hit escape, it annoyingly stillclear
s my current session.Also, fwiw, I tried to see what would happen if I piped the name of a tab into
tab
so I could actually use it withfzf
easily:The text was updated successfully, but these errors were encountered: