Skip to content

Instantly share code, notes, and snippets.

@tamakiii
Last active March 27, 2018 06:41
Show Gist options
  • Save tamakiii/272eaaf97d5fb86f3d1ff1271c76b1e6 to your computer and use it in GitHub Desktop.
Save tamakiii/272eaaf97d5fb86f3d1ff1271c76b1e6 to your computer and use it in GitHub Desktop.
# List help
tmux list-keys
# Find help from binding
tmux list-keys | grep 'prefix' | grep 'C-s'
# Show key-table, key command etc.
tmux list-keys | awk '{print $1}' | sort | uniq
tmux list-keys | awk '{print $2}' | sort | uniq
...
# `choose-tree` manual
<<___
Key Function
Enter Choose selected item
Up Select previous item
Down Select next item
< Scroll list of previews left
> Scroll list of previews right
C-s Search by name
n Repeat last search
t Toggle if item is tagged
T Tag no items
C-t Tag all items
: Run a command for each tagged item
f Enter a format to filter items
O Change sort order
v Toggle preview
q Exit mode
___
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment