mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-04-24 04:29:25 +02:00
Merge 610146751d into 0ebe35968c
This commit is contained in:
commit
ce16accd61
4 changed files with 19 additions and 3 deletions
|
|
@ -8,7 +8,11 @@ setopt always_to_end
|
|||
|
||||
WORDCHARS=''
|
||||
|
||||
zmodload -i zsh/complist
|
||||
if [[ -n $ZSH_MODULE_PATH ]]; then
|
||||
module_path=$ZSH_MODULE_PATH zmodload -i zsh/complist
|
||||
else
|
||||
zmodload -i zsh/complist
|
||||
fi
|
||||
|
||||
## case-insensitive (all),partial-word and then substring completion
|
||||
if [ "x$CASE_SENSITIVE" = "xtrue" ]; then
|
||||
|
|
|
|||
|
|
@ -101,7 +101,12 @@ function env_default() {
|
|||
|
||||
|
||||
# Required for $langinfo
|
||||
zmodload zsh/langinfo
|
||||
if [[ -n $ZSH_MODULE_PATH ]]; then
|
||||
module_path=$ZSH_MODULE_PATH zmodload zsh/langinfo
|
||||
else
|
||||
zmodload zsh/langinfo
|
||||
fi
|
||||
|
||||
|
||||
# URL-encode a string
|
||||
#
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue