Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
.tmux | 19,772 | 24 days ago | 42 | mit | ||||||
🇫🇷 Oh my tmux! My self-contained, pretty & versatile tmux configuration made with ❤️ | ||||||||||
Tmux Resurrect | 9,931 | 2 months ago | 214 | mit | Shell | |||||
Persists tmux environment across system restarts. | ||||||||||
Tpm | 9,660 | 2 months ago | 106 | mit | Shell | |||||
Tmux Plugin Manager | ||||||||||
Vim Tmux Navigator | 4,410 | 4 days ago | 53 | mit | Vim Script | |||||
Seamless navigation between tmux panes and vim splits | ||||||||||
Vim Powerline | 2,896 | 11 years ago | 46 | VimL | ||||||
Moved to powerline/powerline. | ||||||||||
Tmux Continuum | 2,601 | 6 months ago | 58 | mit | Shell | |||||
Continuous saving of tmux environment. Automatic restore when tmux is started. Automatic tmux start when computer is turned on. | ||||||||||
Fzf Tab | 2,236 | 2 months ago | 68 | mit | Shell | |||||
Replace zsh's default completion selection menu with fzf! | ||||||||||
Tmux | 973 | 2 months ago | 32 | mit | JavaScript | |||||
An arctic, north-bluish clean and elegant tmux color theme. | ||||||||||
Tmux Copycat | 822 | 3 years ago | 55 | mit | Shell | |||||
A plugin that enhances tmux search | ||||||||||
Tmux Better Mouse Mode | 736 | 6 years ago | 12 | mit | Shell | |||||
A tmux plugin to better manage and configure the mouse. |
Plugin wrapper around Facebook PathPicker.
Quickly open any path on your terminal window in your $EDITOR
of choice!
fpp
- Facebook PathPicker.prefix + f
- open a new window with a fpp selection of your current tmux pane.Add plugin to the list of TPM plugins in .tmux.conf
:
set -g @plugin 'tmux-plugins/tmux-fpp'
Hit prefix + I
to fetch the plugin and source it. You should now be able to
use the plugin.
Clone the repo:
$ git clone https://github.com/tmux-plugins/tmux-fpp ~/clone/path
Add this line to the bottom of .tmux.conf
:
run-shell ~/clone/path/fpp.tmux
Reload TMUX environment:
# type this in terminal
$ tmux source-file ~/.tmux.conf
You should now be able to use the plugin.
How can I change the default "f" key binding to something else? For example, key "x"?
Put set -g @fpp-key 'x'
in tmux.conf
.
How can I paste the selected file paths into my original pane, instead of launching an editor?
Put set -g @fpp-mode 'paste'
in tmux.conf
.
Alternatively you can bind both behaviours to different keys manually:
# Disable default binding
set -g @fpp-bind off
# Bind 'f' to run FPP launching an editor
bind-key f run-shell '~/.tmux/plugins/tmux-fpp start edit'
# Bind 'x' to run FPP and paste the list of files in the initial pane
bind-key x run-shell '~/.tmux/plugins/tmux-fpp start paste'
How can I specify custom path to fpp?
Put set -g @fpp-path '~/my/path/fpp'
in tmux.conf
.
tmux-fpp
works great with: