about summary refs log tree commit diff
path: root/Functions/Misc/mkshadow
diff options
context:
space:
mode:
Diffstat (limited to 'Functions/Misc/mkshadow')
-rw-r--r--Functions/Misc/mkshadow11
1 files changed, 11 insertions, 0 deletions
diff --git a/Functions/Misc/mkshadow b/Functions/Misc/mkshadow
new file mode 100644
index 000000000..2ae3a0f2c
--- /dev/null
+++ b/Functions/Misc/mkshadow
@@ -0,0 +1,11 @@
+#autoload
+# Front-end to the completion helper _shadow for use outside completion.
+# This just forces proper autoload of _shadow/_unshadow and calls them.
+
+autoload _shadow
+mkshadow() { unset REPLY; _shadow "$@" }
+rmshadow() { unset REPLY; _unshadow }
+
+# Bootstrap because of autoload special case
+unset REPLY
+_shadow "$@"