Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Ohmyzsh
Commits
cfac9637
Commit
cfac9637
authored
Mar 07, 2016
by
L.C. Karssen
Browse files
Merge branch 'master' of
git://github.com/robbyrussell/oh-my-zsh
parents
0a47451a
bd6dbd1d
Changes
26
Hide whitespace changes
Inline
Side-by-side
plugins/zsh-navigation-tools/n-history
View file @
cfac9637
...
...
@@ -42,7 +42,7 @@ if [ "$REPLY" -gt 0 ]; then
# ZLE?
if
[
"
${
(t)CURSOR
}
"
=
"integer-local-special"
]
;
then
zle redisplay
zle kill-
whole-line
zle kill-
buffer
zle
-U
"
$selected
"
else
print
-zr
"
$selected
"
...
...
plugins/zsh-navigation-tools/n-list
View file @
cfac9637
# $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
=
$'
\x
1b[00;31m'
reset
=
$'
\x
1b[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
...
...
plugins/zsh-navigation-tools/n-list-draw
View file @
cfac9637
...
...
@@ -98,7 +98,7 @@ shift 7
integer
max_text_len
=
page_width-x_offset
[
"
$bold
"
=
"0"
]
&&
bold
=
""
||
bold
=
"+bold"
[[
"
$active_text
"
=
"underline"
||
"
$active_text
"
=
"reverse"
]]
||
active_text
=
"reverse"
[[
"
$active_text
"
=
"underline"
||
"
$active_text
"
=
"reverse"
]]
||
local
active_text
=
"reverse"
# With Linux terminal underline won't work properly
[
"
$TERM
"
=
"linux"
]
&&
active_text
=
"reverse"
...
...
plugins/zsh-navigation-tools/n-list-input
View file @
cfac9637
...
...
@@ -44,7 +44,7 @@ case "$key" in
[
"
$current_idx
"
-lt
"
$last_element
"
]
&&
current_idx
=
current_idx+1
;
_nlist_compute_first_to_show_idx
;;
(
PPAGE
)
(
PPAGE
|
$'
\b
'
|
$'
\C
-?'
|
BACKSPACE
)
current_idx
=
current_idx-page_height
[
"
$current_idx
"
-lt
1
]
&&
current_idx
=
1
;
_nlist_compute_first_to_show_idx
...
...
@@ -72,7 +72,7 @@ case "$key" in
current_idx
=
last_element
_nlist_compute_first_to_show_idx
;;
(
$'
\n
'
)
(
$'
\n
'
|
ENTER
)
# Is that element selectable?
# Check for this only when there is no search
if
[[
"
$NLIST_SEARCH_BUFFER
"
!=
""
||
"
$NLIST_IS_UNIQ_MODE
"
-eq
1
||
...
...
@@ -137,7 +137,7 @@ esac
else
case
"
$key
"
in
(
$'
\n
'
)
(
$'
\n
'
|
ENTER
)
search
=
0
_nlist_cursor_visibility 0
;;
...
...
plugins/zsh-navigation-tools/znt-history-widget
View file @
cfac9637
autoload znt-usetty-wrapper n-history
local NLIST_START_IN_SEARCH_MODE=1
local NLIST_START_IN_UNIQ_MODE=1
local NLIST_SET_SEARCH_TO="$BUFFER"
# Only if current $BUFFER doesn't come from history
if [ "$HISTCMD" = "$HISTNO" ]; then
local NLIST_SET_SEARCH_TO="$BUFFER"
fi
znt-usetty-wrapper n-history "$@"
...
...
themes/robbyrussell.zsh-theme
View file @
cfac9637
local ret_status="%(?:%{$fg_bold[green]%}➜ :%{$fg_bold[red]%}➜
%s
)"
PROMPT='${ret_status}
%{$fg_bold[green]%}%p
%{$fg[cyan]%}%c
%{$
fg_bold[blue]
%}$(git_prompt_info)
%{$fg_bold[blue]%} % %{$reset_color%}
'
local ret_status="%(?:%{$fg_bold[green]%}➜ :%{$fg_bold[red]%}➜ )"
PROMPT='${ret_status} %{$fg[cyan]%}%c%{$
reset_color
%}
$(git_prompt_info)'
ZSH_THEME_GIT_PROMPT_PREFIX="git:(%{$fg[red]%}"
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[blue]%}) %{$fg[yellow]%}✗
%{$reset_color%}
"
ZSH_THEME_GIT_PROMPT_PREFIX="
%{$fg_bold[blue]%}
git:(%{$fg[red]%}"
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}
"
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[blue]%}) %{$fg[yellow]%}✗"
ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[blue]%})"
Prev
1
2
Next
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment