Notice: the grml team is migrating from Mercurial to Git.
Please visit git.grml.org instead!
| author | Michael Prokop <mika@grml.org> |
| Sat Feb 24 21:29:48 2007 +0100 (21 months ago) | |
| changeset 94 | 13207a2b97b0 |
| manifest | 13207a2b97b0 |
| parent 93 | 1d89aad6f911 |
| child 95 | 9d1d032e290c |
| tag | 0.2.23 |
--- a/debian/changelog Sat Feb 24 20:51:18 2007 +0100+++ b/debian/changelog Sat Feb 24 21:29:48 2007 +0100@@ -6,6 +6,12 @@ grml-etc-core (0.2.23) unstable; urgency- add a space character in some abbreviation expansionsso it's better readable.- added insert-unicode-char+ - drop the check for+ /usr/share/zsh/$ZSH_VERSION/functions/Prompts/promptinit and+ /usr/share/zsh/$ZSH_VERSION/functions/Zle/url-quote-magic+ because the check does not work for example with the zsh-beta+ package. If you notice problems with the current code please+ let me know.* /etc/skel/.zshrc:- added function ytdl (download video from youtube)- work around non utf8 capable software in utf environment
--- a/etc/zsh/zshrc Sat Feb 24 20:51:18 2007 +0100+++ b/etc/zsh/zshrc Sat Feb 24 21:29:48 2007 +0100@@ -244,9 +244,7 @@ fiautoload history-search-end# we don't want to quote/espace URLs on our own...- # avoid 'url-quote-magic: function definition file not found' on some older boxes- if [ -f "/usr/share/zsh/$ZSH_VERSION/functions/Zle/url-quote-magic" ] && \- autoload -U url-quote-magic && zle -N self-insert url-quote-magic ; then+ if autoload -U url-quote-magic ; thenzle -N self-insert url-quote-magicelseprint 'Notice: no url-quote-magic available :('@@ -414,7 +412,7 @@ fi# }}}# {{{ set prompt- if [ -f "/usr/share/zsh/$ZSH_VERSION/functions/Prompts/promptinit" ] && autoload promptinit && promptinit 2>/dev/null ; then+ if autoload promptinit && promptinit 2>/dev/null ; thenpromptinit # people should be able to use their favourite promptelseprint 'Notice: no promptinit available :('