1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2024-06-30 05:30:28 +00:00

Shorten expand-or-complete-prefix-with-indicator

This commit is contained in:
Sorin Ionescu 2012-03-20 20:52:42 -04:00
parent e5670c37d8
commit c508d215e3

View File

@ -106,14 +106,14 @@ function expand-dot-to-parent-directory-path() {
zle -N expand-dot-to-parent-directory-path zle -N expand-dot-to-parent-directory-path
# Displays an indicator when completing. # Displays an indicator when completing.
function expand-or-complete-prefix-with-indicator() { function expand-or-complete-with-indicator() {
local indicator local indicator
zstyle -s ':omz:completion' indicator 'indicator' zstyle -s ':omz:completion' indicator 'indicator'
print -Pn "$indicator" print -Pn "$indicator"
zle expand-or-complete-prefix zle expand-or-complete-prefix
zle redisplay zle redisplay
} }
zle -N expand-or-complete-prefix-with-indicator zle -N expand-or-complete-with-indicator
# Inserts 'sudo ' at the beginning of the line. # Inserts 'sudo ' at the beginning of the line.
function prepend-sudo() { function prepend-sudo() {
@ -296,7 +296,7 @@ for keymap in 'emacs' 'viins'; do
# Display an indicator when completing. # Display an indicator when completing.
[[ -n "$keyinfo[Control]" ]] && \ [[ -n "$keyinfo[Control]" ]] && \
bindkey -M "$keymap" "$keyinfo[Control]I" \ bindkey -M "$keymap" "$keyinfo[Control]I" \
expand-or-complete-prefix-with-indicator expand-or-complete-with-indicator
# Insert 'sudo ' at the beginning of the line. # Insert 'sudo ' at the beginning of the line.
[[ -n "$keyinfo[Control]" ]] && \ [[ -n "$keyinfo[Control]" ]] && \