From 23f2b4503c9d7697e382fed550d3bf846b81dd5c Mon Sep 17 00:00:00 2001 From: Peter Stephenson Date: Fri, 19 Sep 2008 12:58:46 +0000 Subject: users/13252 and elsewhere: Frank Terbeck plus tweaks: add VCS_Info function system --- Functions/VCS_Info/vcs_info_lastmsg | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Functions/VCS_Info/vcs_info_lastmsg (limited to 'Functions/VCS_Info/vcs_info_lastmsg') diff --git a/Functions/VCS_Info/vcs_info_lastmsg b/Functions/VCS_Info/vcs_info_lastmsg new file mode 100644 index 000000000..fe99d5999 --- /dev/null +++ b/Functions/VCS_Info/vcs_info_lastmsg @@ -0,0 +1,18 @@ +## vim:ft=zsh +## Written by Frank Terbeck +## Distributed under the same BSD-ish license as zsh itself. + +setopt localoptions NO_shwordsplit +local -i i +local -ix maxexports + +VCS_INFO_maxexports +for i in {0..$((maxexports - 1))} ; do + printf '$vcs_info_msg_%d_: "' $i + if zstyle -T ':vcs_info:formats:command:-all-' use-prompt-escapes ; then + print -nP ${(P)${:-vcs_info_msg_${i}_}} + else + print -n ${(P)${:-vcs_info_msg_${i}_}} + fi + printf '"\n' +done -- cgit 1.4.1