Rename the plugin to 'tmux-continuum'

This commit is contained in:
Bruno Sutic
2015-02-20 13:38:09 +01:00
parent 7f0e7268a6
commit 20a83738c0
7 changed files with 24 additions and 23 deletions

View File

@ -5,7 +5,7 @@ Tmux is automatically started after the computer/server is turned on.
### OS X
To enable this feature:
- put `set -g @resurrect-auto-tmux-start 'on'` in `tmux.conf`
- put `set -g @continuum-boot 'on'` in `tmux.conf`
- reload tmux config with this shell command: `$ tmux source-file ~/.tmux.conf`
Next time the computer is started:
@ -14,11 +14,11 @@ Next time the computer is started:
- if "auto restore" feature is enabled, tmux will start restoring previous env
Config options:
- `set -g @resurrect-auto-tmux-start-options 'fullscreen'` - terminal window
- `set -g @continuum-boot-options 'fullscreen'` - terminal window
will go fullscreen
- `set -g @resurrect-auto-tmux-start-options 'iterm'` - start `iTerm` instead
- `set -g @continuum-boot-options 'iterm'` - start `iTerm` instead
of `Terminal.app`
- `set -g @resurrect-auto-tmux-start-options 'iterm,fullscreen'` - start `iTerm`
- `set -g @continuum-boot-options 'iterm,fullscreen'` - start `iTerm`
in fullscreen
### Linux

View File

@ -4,23 +4,23 @@ SUPPORTED_VERSION="1.9"
resurrect_save_path_option="@resurrect-save-script-path"
resurrect_restore_path_option="@resurrect-restore-script-path"
auto_save_interval_option="@continuum-save-interval"
auto_save_interval_default="15"
auto_save_interval_option="@resurrect-auto-save-interval"
# time when the tmux environment was last saved (unix timestamp)
last_auto_save_option="@resurrect-auto-save-last-timestamp"
last_auto_save_option="@continuum-save-last-timestamp"
auto_restore_option="@resurrect-auto-restore"
auto_restore_option="@continuum-restore"
auto_restore_default="off"
auto_restore_halt_file="${HOME}/tmux_no_auto_restore"
# tmux auto start options
auto_start_option="@resurrect-auto-tmux-start"
auto_start_option="@continuum-boot"
auto_start_default="off"
# comma separated list of additional options for tmux auto start
auto_start_config_option="@resurrect-auto-tmux-start-options"
auto_start_config_option="@continuum-boot-options"
auto_start_config_default=""
osx_auto_start_file_name="Tmux.Start.plist"