mirror of
https://github.com/tmux-plugins/tmux-sensible.git
synced 2025-09-09 15:41:23 +00:00
Compare commits
41 Commits
Author | SHA1 | Date | |
---|---|---|---|
25cb91f42d | |||
e463ee9a75 | |||
5d089e418e | |||
8e8043c439 | |||
eba4cbe76f | |||
989d09249e | |||
44af8d8eff | |||
57d999b7df | |||
0dd7aed9a0 | |||
e91b178ff8 | |||
bb9a833510 | |||
df09a123ef | |||
6bd0e2b221 | |||
526110eb9b | |||
b0a8527eb4 | |||
3baff4e795 | |||
4055083386 | |||
cd7faa8bba | |||
9a4309ed63 | |||
2fe5834f30 | |||
2ce7679f9d | |||
e1aabe4b8a | |||
fff9a53723 | |||
2476f3fb23 | |||
3ea5b9f6b9 | |||
9d61936c53 | |||
e725d88256 | |||
ba0b52d999 | |||
b5a1c2ade5 | |||
22d1305cb7 | |||
c20bc5c4e2 | |||
294e607f83 | |||
d2565e5f10 | |||
babfd71d08 | |||
c95eb0d88d | |||
df5b537d21 | |||
bbff707eaa | |||
13f58a8870 | |||
c908b42f2b | |||
9beab4784c | |||
4a584b0799 |
2
.gitattributes
vendored
Normal file
2
.gitattributes
vendored
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# Force text files to have unix eols, so Windows/Cygwin does not break them
|
||||||
|
*.* eol=lf
|
27
CHANGELOG.md
27
CHANGELOG.md
@ -1,6 +1,33 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
### master
|
### master
|
||||||
|
- remove `detach-on-destroy`
|
||||||
|
- do not set `aggressive-resize` on iTerm terminal
|
||||||
|
- disable `detach-on-destroy`
|
||||||
|
|
||||||
|
### v3.0.0, 2015-06-24
|
||||||
|
- remove 'almost sensible' feature
|
||||||
|
|
||||||
|
### v2.3.0, 2015-06-24
|
||||||
|
- update to support \*THE\* latest tmux version
|
||||||
|
- bugfix for `prefix + R` key binding
|
||||||
|
- fix for tmux 2.0 `default-terminal` option (thanks @kwbr)
|
||||||
|
|
||||||
|
### v2.2.0, 2015-02-10
|
||||||
|
- bugfix in `key_binding_not_set`: the regex is now properly detecting key
|
||||||
|
bindings with `-r` flag.
|
||||||
|
- enable `aggressive-resize`
|
||||||
|
|
||||||
|
### v2.1.0, 2014-12-12
|
||||||
|
- check before binding `prefix + prefix` (@m1foley)
|
||||||
|
- enable `focus-events`
|
||||||
|
- deprecate 'almost sensible' feature. The reason for this is to focus the
|
||||||
|
plugin on doing just one thing.
|
||||||
|
|
||||||
|
### v2.0.0, 2014-10-03
|
||||||
|
- bugfix: prevent exiting tmux if 'reattach-to-user-namespace' is not installed
|
||||||
|
- remove all mouse-related options
|
||||||
|
- introduce 'almost sensible' setting and options
|
||||||
|
|
||||||
### v1.1.0, 2014-08-30
|
### v1.1.0, 2014-08-30
|
||||||
- bugfix: determine the default shell from the $SHELL env var on OS X
|
- bugfix: determine the default shell from the $SHELL env var on OS X
|
||||||
|
99
README.md
99
README.md
@ -1,14 +1,16 @@
|
|||||||
# Tmux sensible
|
# Tmux sensible
|
||||||
|
|
||||||
A set of tmux options that should be acceptable for everyone.
|
A set of tmux options that should be acceptable to everyone.
|
||||||
|
|
||||||
Inspired by [vim-sensible](https://github.com/tpope/vim-sensible).
|
Inspired by [vim-sensible](https://github.com/tpope/vim-sensible).
|
||||||
|
|
||||||
|
Tested and working on Linux, OSX and Cygwin.
|
||||||
|
|
||||||
### Principles
|
### Principles
|
||||||
|
|
||||||
- `tmux-sensible` options should be acceptable to **every** tmux user!<br/>
|
- `tmux-sensible` options should be acceptable to **every** tmux user!<br/>
|
||||||
If any option bothers you, please open an issue and it will probably be
|
If any of the options bothers you, please open an issue and it will probably
|
||||||
updated (or removed).
|
be updated (or removed).
|
||||||
- if you think a new option should be added, feel free to open a pull request.
|
- if you think a new option should be added, feel free to open a pull request.
|
||||||
- **no overriding** of user defined settings.<br/>
|
- **no overriding** of user defined settings.<br/>
|
||||||
Your existing `.tmux.conf` settings are respected and they won't be changed.
|
Your existing `.tmux.conf` settings are respected and they won't be changed.
|
||||||
@ -22,51 +24,60 @@ Inspired by [vim-sensible](https://github.com/tpope/vim-sensible).
|
|||||||
|
|
||||||
### Options
|
### Options
|
||||||
|
|
||||||
# utf8 is on
|
```tmux
|
||||||
set -g utf8 on
|
# Address vim mode switching delay (http://superuser.com/a/252717/65504)
|
||||||
set -g status-utf8 on
|
set -s escape-time 0
|
||||||
|
|
||||||
# address vim mode switching delay (http://superuser.com/a/252717/65504)
|
# Increase scrollback buffer size from 2000 to 50000 lines
|
||||||
set -s escape-time 0
|
set -g history-limit 50000
|
||||||
|
|
||||||
# increase scrollback buffer size
|
# Increase tmux messages display duration from 750ms to 4s
|
||||||
set -g history-limit 50000
|
set -g display-time 4000
|
||||||
|
|
||||||
# tmux messages are displayed for 4 seconds
|
# Refresh 'status-left' and 'status-right' more often, from every 15s to 5s
|
||||||
set -g display-time 4000
|
set -g status-interval 5
|
||||||
|
|
||||||
# refresh 'status-left' and 'status-right' more often
|
# (OS X) Fix pbcopy/pbpaste for old tmux versions (pre 2.6)
|
||||||
set -g status-interval 5
|
set -g default-command "reattach-to-user-namespace -l $SHELL"
|
||||||
|
|
||||||
# set only on OS X where it's required
|
# Upgrade $TERM
|
||||||
set -g default-command "reattach-to-user-namespace -l $SHELL"
|
set -g default-terminal "screen-256color"
|
||||||
|
|
||||||
# upgrade $TERM
|
# Emacs key bindings in tmux command prompt (prefix + :) are better than
|
||||||
set -g default-terminal "screen-256color"
|
# vi keys, even for vim users
|
||||||
|
set -g status-keys emacs
|
||||||
|
|
||||||
# enable mouse features for terminals that support it
|
# Focus events enabled for terminals that support them
|
||||||
set -g mouse-resize-pane on
|
set -g focus-events on
|
||||||
set -g mouse-select-pane on
|
|
||||||
set -g mouse-select-window on
|
|
||||||
|
|
||||||
# emacs key bindings in tmux command prompt (prefix + :) are better than
|
# Super useful when using "grouped sessions" and multi-monitor setup
|
||||||
# vi keys, even for vim users
|
setw -g aggressive-resize on
|
||||||
set -g status-keys emacs
|
```
|
||||||
|
|
||||||
### Key bindings
|
### Key bindings
|
||||||
|
|
||||||
# easier and faster switching between next/prev window
|
```tmux
|
||||||
bind C-p previous-window
|
# Easier and faster switching between next/prev window
|
||||||
bind C-n next-window
|
bind C-p previous-window
|
||||||
|
bind C-n next-window
|
||||||
|
```
|
||||||
|
|
||||||
# source .tmux.conf as suggested in `man tmux`
|
Above bindings enhance the default `prefix + p` and `prefix + n` bindings by
|
||||||
bind R source-file '~/.tmux.conf'
|
allowing you to hold `Ctrl` and repeat `a + p`/`a + n` (if your prefix is
|
||||||
|
`C-a`), which is a lot quicker.
|
||||||
|
|
||||||
|
```tmux
|
||||||
|
# Source .tmux.conf as suggested in `man tmux`
|
||||||
|
bind R source-file '~/.tmux.conf'
|
||||||
|
```
|
||||||
|
|
||||||
"Adaptable" key bindings that build upon your `prefix` value:
|
"Adaptable" key bindings that build upon your `prefix` value:
|
||||||
|
|
||||||
# if prefix is 'C-a'
|
```tmux
|
||||||
bind C-a send-prefix
|
# If prefix is 'C-a'
|
||||||
bind a last-window
|
bind C-a send-prefix
|
||||||
|
bind a last-window
|
||||||
|
```
|
||||||
|
|
||||||
If prefix is `C-b`, above keys will be `C-b` and `b`.<br/>
|
If prefix is `C-b`, above keys will be `C-b` and `b`.<br/>
|
||||||
If prefix is `C-z`, above keys will be `C-z` and `z`... you get the idea.
|
If prefix is `C-z`, above keys will be `C-z` and `z`... you get the idea.
|
||||||
@ -75,15 +86,12 @@ If prefix is `C-z`, above keys will be `C-z` and `z`... you get the idea.
|
|||||||
|
|
||||||
Add plugin to the list of TPM plugins in `.tmux.conf`:
|
Add plugin to the list of TPM plugins in `.tmux.conf`:
|
||||||
|
|
||||||
set -g @tpm_plugins " \
|
```tmux
|
||||||
tmux-plugins/tpm \
|
set -g @plugin 'tmux-plugins/tmux-sensible'
|
||||||
tmux-plugins/tmux-sensible \
|
```
|
||||||
"
|
|
||||||
|
|
||||||
Hit `prefix + I` to fetch the plugin and source it. That's it!
|
Hit `prefix + I` to fetch the plugin and source it. That's it!
|
||||||
|
|
||||||
You might also want to restart your tmux server, just in case.
|
|
||||||
|
|
||||||
### Manual Installation
|
### Manual Installation
|
||||||
|
|
||||||
Clone the repo:
|
Clone the repo:
|
||||||
@ -92,14 +100,11 @@ Clone the repo:
|
|||||||
|
|
||||||
Add this line to the bottom of `.tmux.conf`:
|
Add this line to the bottom of `.tmux.conf`:
|
||||||
|
|
||||||
run-shell ~/clone/path/sensible.tmux
|
```tmux
|
||||||
|
run-shell ~/clone/path/sensible.tmux
|
||||||
|
```
|
||||||
|
|
||||||
Reload TMUX environment:
|
Reload TMUX environment with `$ tmux source-file ~/.tmux.conf`, and that's it.
|
||||||
|
|
||||||
# type this in terminal
|
|
||||||
$ tmux source-file ~/.tmux.conf
|
|
||||||
|
|
||||||
You might also want to restart your tmux server, just in case.
|
|
||||||
|
|
||||||
### Other goodies
|
### Other goodies
|
||||||
|
|
||||||
@ -109,6 +114,8 @@ You might also find these useful:
|
|||||||
improve tmux search and reduce mouse usage
|
improve tmux search and reduce mouse usage
|
||||||
- [pain control](https://github.com/tmux-plugins/tmux-pain-control)
|
- [pain control](https://github.com/tmux-plugins/tmux-pain-control)
|
||||||
useful standard bindings for controlling panes
|
useful standard bindings for controlling panes
|
||||||
|
- [resurrect](https://github.com/tmux-plugins/tmux-resurrect)
|
||||||
|
persists tmux environment across system restarts
|
||||||
|
|
||||||
### License
|
### License
|
||||||
|
|
||||||
|
@ -2,11 +2,23 @@
|
|||||||
|
|
||||||
CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||||
|
|
||||||
|
# used to match output from `tmux list-keys`
|
||||||
|
KEY_BINDING_REGEX="bind-key[[:space:]]\+\(-r[[:space:]]\+\)\?\(-T prefix[[:space:]]\+\)\?"
|
||||||
|
|
||||||
is_osx() {
|
is_osx() {
|
||||||
local platform=$(uname)
|
local platform=$(uname)
|
||||||
[ "$platform" == "Darwin" ]
|
[ "$platform" == "Darwin" ]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
iterm_terminal() {
|
||||||
|
[[ "${TERM_PROGRAM}" =~ ^iTerm || "${LC_TERMINAL}" =~ ^iTerm ]]
|
||||||
|
}
|
||||||
|
|
||||||
|
command_exists() {
|
||||||
|
local command="$1"
|
||||||
|
type "$command" >/dev/null 2>&1
|
||||||
|
}
|
||||||
|
|
||||||
# returns prefix key, e.g. 'C-a'
|
# returns prefix key, e.g. 'C-a'
|
||||||
prefix() {
|
prefix() {
|
||||||
tmux show-option -gv prefix
|
tmux show-option -gv prefix
|
||||||
@ -33,8 +45,8 @@ server_option_value_not_changed() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
key_binding_not_set() {
|
key_binding_not_set() {
|
||||||
local key="$1"
|
local key="${1//\\/\\\\}"
|
||||||
if $(tmux list-keys | grep -q "bind-key[[:space:]]\+${key}"); then
|
if $(tmux list-keys | grep -q "${KEY_BINDING_REGEX}${key}[[:space:]]"); then
|
||||||
return 1
|
return 1
|
||||||
else
|
else
|
||||||
return 0
|
return 0
|
||||||
@ -44,7 +56,7 @@ key_binding_not_set() {
|
|||||||
key_binding_not_changed() {
|
key_binding_not_changed() {
|
||||||
local key="$1"
|
local key="$1"
|
||||||
local default_value="$2"
|
local default_value="$2"
|
||||||
if $(tmux list-keys | grep -q "bind-key[[:space:]]\+${key}[[:space:]]\+${default_value}"); then
|
if $(tmux list-keys | grep -q "${KEY_BINDING_REGEX}${key}[[:space:]]\+${default_value}"); then
|
||||||
# key still has the default binding
|
# key still has the default binding
|
||||||
return 0
|
return 0
|
||||||
else
|
else
|
||||||
@ -52,15 +64,20 @@ key_binding_not_changed() {
|
|||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
get_tmux_config() {
|
||||||
|
local tmux_config_xdg="${XDG_CONFIG_HOME:-$HOME/.config}/tmux/tmux.conf"
|
||||||
|
local tmux_config="$HOME/.tmux.conf"
|
||||||
|
|
||||||
|
if [ -f "${tmux_config_xdg}" ]; then
|
||||||
|
echo "${tmux_config_xdg}"
|
||||||
|
else
|
||||||
|
echo ${tmux_config}
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
main() {
|
main() {
|
||||||
# OPTIONS
|
# OPTIONS
|
||||||
|
|
||||||
# enable utf8
|
|
||||||
tmux set-option -g utf8 on
|
|
||||||
|
|
||||||
# enable utf8 in tmux status-left and status-right
|
|
||||||
tmux set-option -g status-utf8 on
|
|
||||||
|
|
||||||
# address vim mode switching delay (http://superuser.com/a/252717/65504)
|
# address vim mode switching delay (http://superuser.com/a/252717/65504)
|
||||||
if server_option_value_not_changed "escape-time" "500"; then
|
if server_option_value_not_changed "escape-time" "500"; then
|
||||||
tmux set-option -s escape-time 0
|
tmux set-option -s escape-time 0
|
||||||
@ -82,24 +99,31 @@ main() {
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# required (only) on OS X
|
# required (only) on OS X
|
||||||
if is_osx && option_value_not_changed "default-command" ""; then
|
if is_osx && command_exists "reattach-to-user-namespace" && option_value_not_changed "default-command" ""; then
|
||||||
tmux set-option -g default-command "reattach-to-user-namespace -l $SHELL"
|
tmux set-option -g default-command "reattach-to-user-namespace -l $SHELL"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# upgrade $TERM
|
# upgrade $TERM, tmux 1.9
|
||||||
if option_value_not_changed "default-terminal" "screen"; then
|
if option_value_not_changed "default-terminal" "screen"; then
|
||||||
tmux set-option -g default-terminal "screen-256color"
|
tmux set-option -g default-terminal "screen-256color"
|
||||||
fi
|
fi
|
||||||
|
# upgrade $TERM, tmux 2.0+
|
||||||
# enable mouse features for terminals that support it
|
if server_option_value_not_changed "default-terminal" "screen"; then
|
||||||
tmux set-option -g mouse-resize-pane on
|
tmux set-option -s default-terminal "screen-256color"
|
||||||
tmux set-option -g mouse-select-pane on
|
fi
|
||||||
tmux set-option -g mouse-select-window on
|
|
||||||
|
|
||||||
# emacs key bindings in tmux command prompt (prefix + :) are better than
|
# emacs key bindings in tmux command prompt (prefix + :) are better than
|
||||||
# vi keys, even for vim users
|
# vi keys, even for vim users
|
||||||
tmux set-option -g status-keys emacs
|
tmux set-option -g status-keys emacs
|
||||||
|
|
||||||
|
# focus events enabled for terminals that support them
|
||||||
|
tmux set-option -g focus-events on
|
||||||
|
|
||||||
|
# super useful when using "grouped sessions" and multi-monitor setup
|
||||||
|
if ! iterm_terminal; then
|
||||||
|
tmux set-window-option -g aggressive-resize on
|
||||||
|
fi
|
||||||
|
|
||||||
# DEFAULT KEY BINDINGS
|
# DEFAULT KEY BINDINGS
|
||||||
|
|
||||||
local prefix="$(prefix)"
|
local prefix="$(prefix)"
|
||||||
@ -107,13 +131,15 @@ main() {
|
|||||||
|
|
||||||
# if C-b is not prefix
|
# if C-b is not prefix
|
||||||
if [ $prefix != "C-b" ]; then
|
if [ $prefix != "C-b" ]; then
|
||||||
# unbind obsolte default binding
|
# unbind obsolete default binding
|
||||||
if key_binding_not_changed "C-b" "send-prefix"; then
|
if key_binding_not_changed "C-b" "send-prefix"; then
|
||||||
tmux unbind-key C-b
|
tmux unbind-key C-b
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# pressing `prefix + prefix` sends <prefix> to the shell
|
# pressing `prefix + prefix` sends <prefix> to the shell
|
||||||
tmux bind-key "$prefix" send-prefix
|
if key_binding_not_set "$prefix"; then
|
||||||
|
tmux bind-key "$prefix" send-prefix
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# If Ctrl-a is prefix then `Ctrl-a + a` switches between alternate windows.
|
# If Ctrl-a is prefix then `Ctrl-a + a` switches between alternate windows.
|
||||||
@ -132,9 +158,11 @@ main() {
|
|||||||
|
|
||||||
# source `.tmux.conf` file - as suggested in `man tmux`
|
# source `.tmux.conf` file - as suggested in `man tmux`
|
||||||
if key_binding_not_set "R"; then
|
if key_binding_not_set "R"; then
|
||||||
tmux bind-key R run-shell -b ' \
|
local tmux_config=$(get_tmux_config)
|
||||||
tmux source-file ~/.tmux.conf > /dev/null; \
|
|
||||||
tmux display-message "Sourced .tmux.conf!"'
|
tmux bind-key R run-shell " \
|
||||||
|
tmux source-file ${tmux_config} > /dev/null; \
|
||||||
|
tmux display-message 'Sourced ${tmux_config}!'"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
main
|
main
|
||||||
|
Reference in New Issue
Block a user