1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-03 07:08:01 +00:00

Add Show The Current Value For An Option as a tmux til

This commit is contained in:
jbranchaud
2020-12-23 21:45:17 -06:00
parent 8886de4ff8
commit bbef27e421
2 changed files with 23 additions and 1 deletions

View File

@@ -0,0 +1,21 @@
# Show The Current Value For An Option
In the `~/.tmux.conf` file, you are able to define and override the values of
various options. Outside of explicitly setting an option, you may want to know
what its value is.
Perhaps it is unset, perhaps you don't remember, or maybe this particular
session or pane is different than the global config.
Either from the CLI, you can run the `tmux` command to check:
`$ tmux show-option -g history-limit`
Or as a command to tmux, using your prefix:
`:show-option -g history-limit`
The `-g` flag will tell you the option's value as set globally for tmux. `-w`
for window, `-p` for pane, or no flag for the current session.
See `man tmux` for more details.