Fix zimfw failing in termux with NO_CASE_GLOB
that is set by the completion module. This is a known still unsolved issue with termux. See https://github.com/termux/termux-packages/issues/1894
This commit is contained in:
parent
3ae4fec895
commit
4b750cb72f
3 changed files with 5 additions and 5 deletions
|
@ -1,5 +1,5 @@
|
|||
_zimfw_compile() {
|
||||
setopt LOCAL_OPTIONS EXTENDED_GLOB
|
||||
setopt LOCAL_OPTIONS CASE_GLOB EXTENDED_GLOB
|
||||
autoload -U zrecompile
|
||||
local zdumpfile zdir zfile
|
||||
|
||||
|
|
|
@ -22,7 +22,7 @@ Startup options:
|
|||
_zfailed=1
|
||||
return 1
|
||||
fi
|
||||
setopt LOCAL_OPTIONS EXTENDED_GLOB
|
||||
setopt LOCAL_OPTIONS CASE_GLOB EXTENDED_GLOB
|
||||
local zmodule=${1:t} zurl=${1}
|
||||
local ztype=branch zrev=master
|
||||
local -i zdisabled=0 zfrozen=0
|
||||
|
|
|
@ -33,7 +33,7 @@ fi
|
|||
: ${ZIM_HOME=${0:A:h}}
|
||||
|
||||
_zimfw_compile() {
|
||||
setopt LOCAL_OPTIONS EXTENDED_GLOB
|
||||
setopt LOCAL_OPTIONS CASE_GLOB EXTENDED_GLOB
|
||||
autoload -U zrecompile
|
||||
local zdumpfile zdir zfile
|
||||
|
||||
|
@ -122,7 +122,7 @@ Startup options:
|
|||
_zfailed=1
|
||||
return 1
|
||||
fi
|
||||
setopt LOCAL_OPTIONS EXTENDED_GLOB
|
||||
setopt LOCAL_OPTIONS CASE_GLOB EXTENDED_GLOB
|
||||
local zmodule=${1:t} zurl=${1}
|
||||
local ztype=branch zrev=master
|
||||
local -i zdisabled=0 zfrozen=0
|
||||
|
@ -265,7 +265,7 @@ _zimfw_clean_dumpfile() {
|
|||
}
|
||||
|
||||
_zimfw_info() {
|
||||
print 'Zim version: 1.0.0-SNAPSHOT (previous commit is bd8ae83)'
|
||||
print 'Zim version: 1.0.0-SNAPSHOT (previous commit is 4a7ce44)'
|
||||
print -R 'ZIM_HOME: '${ZIM_HOME}
|
||||
print -R 'Zsh version: '${ZSH_VERSION}
|
||||
print -R 'System info: '$(command uname -a)
|
||||
|
|
Loading…
Reference in a new issue