commit fd4634af7203626b844f2d4cb6b4046c23d593ad parent 71ddf7234e4a0a748541d3157e24d54cfe09c655 Author: Cem Keylan <cem@ckyln.com> Date: Sun, 27 Dec 2020 19:14:04 +0300 zsh: simplify printf calls on build Diffstat:
M | extra/zsh/build | | | 6 | ++---- |
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/extra/zsh/build b/extra/zsh/build @@ -2,10 +2,8 @@ { printf "functions='Completion/*comp* " - for comp in Base Linux Unix X Zsh; do - printf "Completion/%s/*/* " "$comp" - done - printf "'\\n" + printf 'Completion/%s/*/* ' Base Linux Unix X Zsh + printf \''\n' } >> Src/Zle/complete.mdd rm -f Completion/Linux/Command/_pkgtool