Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

[PATCH] kill-word-match: Join kills



---
I haven't tested this, but I tested a similar patch to a custom widget
and it worked as expected.

diff --git a/Functions/Zle/backward-kill-word-match b/Functions/Zle/backward-kill-word-match
index ded4db2..f04614c 100644
--- a/Functions/Zle/backward-kill-word-match
+++ b/Functions/Zle/backward-kill-word-match
@@ -32,4 +32,6 @@ while (( count-- )); do
   done=1
 done
 
+zle -f 'kill'
+
 return 0
diff --git a/Functions/Zle/kill-word-match b/Functions/Zle/kill-word-match
index 30db5ab..ffc5be7 100644
--- a/Functions/Zle/kill-word-match
+++ b/Functions/Zle/kill-word-match
@@ -31,4 +31,6 @@ while (( count-- )); do
   done=1
 done
 
+zle -f 'kill'
+
 return 0



Messages sorted by: Reverse Date, Date, Thread, Author