mirror of
https://github.com/tmux-plugins/tmux-sensible.git
synced 2025-09-10 13:07:28 +00:00
Compare commits
14 Commits
Author | SHA1 | Date | |
---|---|---|---|
fff9a53723 | |||
2476f3fb23 | |||
3ea5b9f6b9 | |||
9d61936c53 | |||
e725d88256 | |||
ba0b52d999 | |||
b5a1c2ade5 | |||
22d1305cb7 | |||
c20bc5c4e2 | |||
294e607f83 | |||
d2565e5f10 | |||
babfd71d08 | |||
c95eb0d88d | |||
df5b537d21 |
16
CHANGELOG.md
16
CHANGELOG.md
@ -2,6 +2,22 @@
|
|||||||
|
|
||||||
### master
|
### master
|
||||||
|
|
||||||
|
### 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
|
### v2.0.0, 2014-10-03
|
||||||
- bugfix: prevent exiting tmux if 'reattach-to-user-namespace' is not installed
|
- bugfix: prevent exiting tmux if 'reattach-to-user-namespace' is not installed
|
||||||
- remove all mouse-related options
|
- remove all mouse-related options
|
||||||
|
39
README.md
39
README.md
@ -1,31 +1,26 @@
|
|||||||
# 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).
|
||||||
|
|
||||||
### Core principles
|
### Principles
|
||||||
|
|
||||||
- core `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.
|
||||||
That way you can use `tmux-sensible` if you have a few specific options.
|
That way you can use `tmux-sensible` if you have a few specific options.
|
||||||
|
|
||||||
### Almost sensible principles
|
|
||||||
|
|
||||||
- widely used settings that do not make it into the 'core'
|
|
||||||
- explicitly enabled with `set -g @almost-sensible 'on'`
|
|
||||||
|
|
||||||
### Goals
|
### Goals
|
||||||
|
|
||||||
- group standard tmux community options in one place
|
- group standard tmux community options in one place
|
||||||
- remove clutter from your `.tmux.conf`
|
- remove clutter from your `.tmux.conf`
|
||||||
- educate new tmux users about basic options
|
- educate new tmux users about basic options
|
||||||
|
|
||||||
### Core options
|
### Options
|
||||||
|
|
||||||
# utf8 is on
|
# utf8 is on
|
||||||
set -g utf8 on
|
set -g utf8 on
|
||||||
@ -53,7 +48,13 @@ Inspired by [vim-sensible](https://github.com/tpope/vim-sensible).
|
|||||||
# vi keys, even for vim users
|
# vi keys, even for vim users
|
||||||
set -g status-keys emacs
|
set -g status-keys emacs
|
||||||
|
|
||||||
### Core key bindings
|
# focus events enabled for terminals that support them
|
||||||
|
set -g focus-events on
|
||||||
|
|
||||||
|
# super useful when using "grouped sessions" and multi-monitor setup
|
||||||
|
setw -g aggressive-resize on
|
||||||
|
|
||||||
|
### Key bindings
|
||||||
|
|
||||||
# easier and faster switching between next/prev window
|
# easier and faster switching between next/prev window
|
||||||
bind C-p previous-window
|
bind C-p previous-window
|
||||||
@ -75,7 +76,13 @@ allowing you to hold `Ctrl` and repeat `a + p`/`a + n` (if your prefix is
|
|||||||
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.
|
||||||
|
|
||||||
### Almost sensible options
|
### Almost sensible options - deprecated
|
||||||
|
|
||||||
|
**Note**: this feature is deprecated and will be removed from `tmux-sensible`
|
||||||
|
in the next major release. The reason for this is to focus this plugin on doing
|
||||||
|
just one thing (and hopefully doing it well).<br/>
|
||||||
|
If you were using 'almost sensible' the path forward is to move all the
|
||||||
|
below options to your `.tmux.conf`.
|
||||||
|
|
||||||
Activate these by putting `set -g @almost-sensible 'on'` in `.tmux.conf`.
|
Activate these by putting `set -g @almost-sensible 'on'` in `.tmux.conf`.
|
||||||
|
|
||||||
@ -92,10 +99,10 @@ Activate these by putting `set -g @almost-sensible 'on'` in `.tmux.conf`.
|
|||||||
|
|
||||||
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 " \
|
set -g @tpm_plugins ' \
|
||||||
tmux-plugins/tpm \
|
tmux-plugins/tpm \
|
||||||
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!
|
||||||
|
|
||||||
@ -126,6 +133,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
|
||||||
|
|
||||||
|
@ -4,6 +4,9 @@ CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|||||||
|
|
||||||
ALMOST_SENSIBLE_OPTION="@almost-sensible"
|
ALMOST_SENSIBLE_OPTION="@almost-sensible"
|
||||||
|
|
||||||
|
# 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" ]
|
||||||
@ -41,7 +44,7 @@ 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
|
||||||
@ -51,7 +54,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
|
||||||
@ -59,6 +62,7 @@ key_binding_not_changed() {
|
|||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# "almost sensible" is deprecated
|
||||||
almost_sensible_on() {
|
almost_sensible_on() {
|
||||||
[ "$(tmux show-option -gvq "$ALMOST_SENSIBLE_OPTION")" == "on" ]
|
[ "$(tmux show-option -gvq "$ALMOST_SENSIBLE_OPTION")" == "on" ]
|
||||||
}
|
}
|
||||||
@ -97,16 +101,26 @@ main() {
|
|||||||
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+
|
||||||
|
if server_option_value_not_changed "default-terminal" "screen"; then
|
||||||
|
tmux set-option -s default-terminal "screen-256color"
|
||||||
|
fi
|
||||||
|
|
||||||
# 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
|
||||||
|
|
||||||
# ALMOST SENSIBLE OPTIONS
|
# 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
|
||||||
|
tmux set-window-option -g aggressive-resize on
|
||||||
|
|
||||||
|
# ALMOST SENSIBLE OPTIONS - DEPRECATED
|
||||||
|
|
||||||
if almost_sensible_on; then
|
if almost_sensible_on; then
|
||||||
# C-a should be the Tmux default prefix, really
|
# C-a should be the Tmux default prefix, really
|
||||||
@ -132,7 +146,9 @@ main() {
|
|||||||
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.
|
||||||
@ -151,7 +167,7 @@ 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 ' \
|
tmux bind-key R run-shell ' \
|
||||||
tmux source-file ~/.tmux.conf > /dev/null; \
|
tmux source-file ~/.tmux.conf > /dev/null; \
|
||||||
tmux display-message "Sourced .tmux.conf!"'
|
tmux display-message "Sourced .tmux.conf!"'
|
||||||
fi
|
fi
|
||||||
|
Reference in New Issue
Block a user