summaryrefslogtreecommitdiff
path: root/plugins/zsh-navigation-tools/n-list
diff options
context:
space:
mode:
authorL.C. Karssen <lennart@karssen.org>2016-03-07 22:09:02 +0100
committerL.C. Karssen <lennart@karssen.org>2016-03-07 22:09:02 +0100
commitcfac963772718723589bf7293be0a53f79511b24 (patch)
tree1c0f680591d81ecfaff8932d07f8131f4a6fd45c /plugins/zsh-navigation-tools/n-list
parent0a47451a462284d20c633a7d6b3431a71bf65759 (diff)
parentbd6dbd1d9b1fc8a523aaf588492eb3ed4113b49d (diff)
downloadzsh-cfac963772718723589bf7293be0a53f79511b24.tar.gz
zsh-cfac963772718723589bf7293be0a53f79511b24.tar.bz2
zsh-cfac963772718723589bf7293be0a53f79511b24.zip
Merge branch 'master' of git://github.com/robbyrussell/oh-my-zsh
Diffstat (limited to 'plugins/zsh-navigation-tools/n-list')
-rw-r--r--plugins/zsh-navigation-tools/n-list17
1 files changed, 13 insertions, 4 deletions
diff --git a/plugins/zsh-navigation-tools/n-list b/plugins/zsh-navigation-tools/n-list
index 388712bd0..50159b4a0 100644
--- a/plugins/zsh-navigation-tools/n-list
+++ b/plugins/zsh-navigation-tools/n-list
@@ -1,6 +1,7 @@
# $1, $2, ... - elements of the list
# $NLIST_NONSELECTABLE_ELEMENTS - array of indexes (1-based) that cannot be selected
# $REPLY is the output variable - contains index (1-based) or -1 when no selection
+# $reply (array) is the second part of the output - use the index (REPLY) to get selected element
#
# Copy this file into /usr/share/zsh/site-functions/
# and add 'autoload n-list` to .zshrc
@@ -164,6 +165,7 @@ integer current_difference=0
local prev_search_buffer=""
integer prev_uniq_mode=0
integer prev_start_idx=-1
+local MBEGIN MEND MATCH mbegin mend match
# Ability to remember the list between calls
if [[ -z "$NLIST_REMEMBER_STATE" || "$NLIST_REMEMBER_STATE" -eq 0 || "$NLIST_REMEMBER_STATE" -eq 2 ]]; then
@@ -264,11 +266,15 @@ while (( 1 )); do
local search_pattern=""
local colsearch_pattern=""
if [ -n "$search_buffer" ]; then
- # Patterns will be *foo*~^*bar* and foo|bar)
+ # Patterns will be *foo*~^*bar* and (foo|bar)
search_pattern="${search_buffer// ##/*~^*}"
colsearch_pattern="${search_buffer// ##/|}"
- list=( "${(@M)list:#(#i)*$~search_pattern*}" )
+ # The repeat will make the matching work on a fresh heap
+ repeat 1; do
+ list=( "${(@M)list:#(#i)*$~search_pattern*}" )
+ done
+
last_element="$#list"
fi
@@ -287,7 +293,10 @@ while (( 1 )); do
if [ -n "$colsearch_pattern" ]; then
local red=$'\x1b[00;31m' reset=$'\x1b[00;00m'
- disp_list=( "${(@)disp_list//(#mi)($~colsearch_pattern)/$red${MATCH}$reset}" )
+ # The repeat will make the matching work on a fresh heap
+ repeat 1; do
+ disp_list=( "${(@)disp_list//(#mi)($~colsearch_pattern)/$red${MATCH}$reset}" )
+ done
fi
# We have display list, lets replace newlines with "\n" when needed (1/2)
@@ -380,7 +389,7 @@ while (( 1 )); do
# Get the special (i.e. "keypad") key or regular key
if [ -n "$key" ]; then
- final_key="$key"
+ final_key="$key"
elif [ -n "$keypad" ]; then
final_key="$keypad"
else