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
53cbd658
Commit
53cbd658
authored
Oct 14, 2020
by
Marc Cornellà
Browse files
globalias: use ${(z)var} to split into words using shell parsing
parent
e75aa287
Changes
1
Show whitespace changes
Inline
Side-by-side
plugins/globalias/globalias.plugin.zsh
View file @
53cbd658
globalias
()
{
globalias
()
{
# Get last word to the left of the cursor
# Get last word to the left of the cursor:
local
word
=
${${
(A)=LBUFFER
}
[-1]
}
# (z) splits into words using shell parsing
# (A) makes it an array even if there's only one element
local
word
=
${${
(Az)LBUFFER
}
[-1]
}
if
[[
$GLOBALIAS_FILTER_VALUES
[(
Ie
)
$word
]
-eq
0
]]
;
then
if
[[
$GLOBALIAS_FILTER_VALUES
[(
Ie
)
$word
]
-eq
0
]]
;
then
zle _expand_alias
zle _expand_alias
zle expand-word
zle expand-word
...
...
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