diff options
author | mhennecke <m.hennecke@web.de> | 2018-10-17 21:28:48 +0200 |
---|---|---|
committer | Marc Cornellà <marc.cornella@live.com> | 2018-10-17 21:28:48 +0200 |
commit | 54603333634d057c5d2e1b2eb826eec5ce8fd706 (patch) | |
tree | 8645704d60aaabab874bcde2fcab551f84ce131f /plugins/sublime | |
parent | a2dab42c35cfcd7e5f7e7d5ecc58bbd8699028ce (diff) | |
download | zsh-54603333634d057c5d2e1b2eb826eec5ce8fd706.tar.gz zsh-54603333634d057c5d2e1b2eb826eec5ce8fd706.tar.bz2 zsh-54603333634d057c5d2e1b2eb826eec5ce8fd706.zip |
sublime: fix typo in cygwin path logic (#7304)
Bug introduced in cea941ce42b5d550489367608dd1ac4401151c97
Diffstat (limited to 'plugins/sublime')
-rw-r--r-- | plugins/sublime/sublime.plugin.zsh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/sublime/sublime.plugin.zsh b/plugins/sublime/sublime.plugin.zsh index f5bb070ab..485028d9f 100644 --- a/plugins/sublime/sublime.plugin.zsh +++ b/plugins/sublime/sublime.plugin.zsh @@ -42,8 +42,8 @@ elif [[ "$OSTYPE" = darwin* ]]; then fi done elif [[ "$OSTYPE" = 'cygwin' ]]; then - local sublime_cygwin_paths - sublime_cygwin_paths=( + local _sublime_cygwin_paths + _sublime_cygwin_paths=( "$(cygpath $ProgramW6432/Sublime\ Text\ 2)/sublime_text.exe" "$(cygpath $ProgramW6432/Sublime\ Text\ 3)/sublime_text.exe" ) |