Permit leading whitespace with new plugin definition syntax

This commit is contained in:
Bruno Sutic 2015-06-03 01:29:09 +02:00
parent 583e447d33
commit e19b7689e0
No known key found for this signature in database
GPG Key ID: 66D96E4F2F7EF26C
3 changed files with 4 additions and 3 deletions

View File

@ -6,6 +6,7 @@
- add uninstall/clean procedure and keybinding (prefix+alt+u) (@chilicuil)
- add new `set @plugin 'repo'` plugin defintion syntax (@chilicuil)
- revert back to using `-g` flag in new plugin definition syntax
- permit leading whitespace with new plugin definition syntax (thanks @chilicuil)
### v1.2.2, 2015-02-08
- set GIT_TERMINAL_PROMPT=0 when doing `git clone`, `pull` or `submodule update`

View File

@ -15,9 +15,9 @@ shared_get_tpm_plugins_list() {
local plugins_list
plugins_list="$(tmux show-option -gqv "$tpm_plugins_variable_name")"
if [ -z "${plugins_list}" ]; then
#read set @plugin "tmux-plugins/tmux-example-plugin" entries
#read set -g @plugin "tmux-plugins/tmux-example-plugin" entries
cat /etc/tmux.conf ~/.tmux.conf 2>/dev/null |
awk '/^set +-g +@plugin/ { gsub(/'\''/,""); gsub(/'\"'/,""); print $4 }'
awk '/^ +set +-g +@plugin/ { gsub(/'\''/,""); gsub(/'\"'/,""); print $4 }'
else
printf "%s\\n" "${plugins_list}"
fi