zsh-workers
 help / color / mirror / code / Atom feed
* [PATCH] type -w += global aliases
@ 2017-12-20  5:36 Daniel Shahaf
  0 siblings, 0 replies; only message in thread
From: Daniel Shahaf @ 2017-12-20  5:36 UTC (permalink / raw)
  To: zsh-workers

Follow-up to 36403, which did the same for suffix aliases.
---
 Src/hashtable.c    |  2 ++
 Test/A02alias.ztst | 11 +++++++++++
 2 files changed, 13 insertions(+)

diff --git a/Src/hashtable.c b/Src/hashtable.c
index 6ec2ed220..b7baa3142 100644
--- a/Src/hashtable.c
+++ b/Src/hashtable.c
@@ -1261,6 +1261,8 @@ printaliasnode(HashNode hn, int printflags)
     if (printflags & PRINT_WHENCE_WORD) {
 	if (a->node.flags & ALIAS_SUFFIX)
 	    printf("%s: suffix alias\n", a->node.nam);
+	else if (a->node.flags & ALIAS_GLOBAL)
+	    printf("%s: global alias\n", a->node.nam);
 	else
 	    printf("%s: alias\n", a->node.nam);
 	return;
diff --git a/Test/A02alias.ztst b/Test/A02alias.ztst
index e68e93e0d..99f7aae26 100644
--- a/Test/A02alias.ztst
+++ b/Test/A02alias.ztst
@@ -137,3 +137,14 @@
   thisworks)
 0:NO_ALIAS_FUNC_DEF works if the alias is a complete definition
 >That worked
+
+ type \bar
+ type -w \bar
+ type \\bar
+ type -w \\bar
+0:type -w of alias -g
+>bar is a global alias for echo
+>bar: global alias
+>\bar is an alias for echo
+>\bar: alias
+


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2017-12-20  5:36 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-12-20  5:36 [PATCH] type -w += global aliases Daniel Shahaf

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).