We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8cd0b5 commit 0b5b3dcCopy full SHA for 0b5b3dc
highlighters/main/test-data/parameter-to-global-alias.zsh
@@ -28,12 +28,12 @@
28
# vim: ft=zsh sw=2 ts=2 et
29
# -------------------------------------------------------------------------------------------------
30
31
-if type x >/dev/null; then
32
- skip_test="Test is written on the assumption that 'x' is not a valid command name, but that assumption does not hold"
+if type global_alias >/dev/null; then
+ skip_test="Test is written on the assumption that 'global_alias' is not a valid command name, but that assumption does not hold"
33
return 0
34
fi
35
-alias -g x=y
36
-local s=x
+alias -g global_alias=y
+local s=global_alias
37
38
BUFFER=$'$s'
39
0 commit comments