Add/Update header of /etc/skel/.zshrc and /etc/zsh/zshrc, add debian/NEWS entry
[grml-etc-core.git] / debian / NEWS
1 grml-etc-core (0.3.62) unstable; urgency=low
2
3   * Merged /etc/skel/.zshrc into /etc/zsh/zshrc:
4
5     Starting with grml-etc-core 0.3.62 grml's zsh setup lives only in
6     *one* zshrc file - that is the global one: /etc/zsh/zshrc
7     /etc/skel/.zshrc still exists but provides commented examples only.
8     It is best to leave the /etc/skel/.zshrc file untouched and do
9     personal changes to the setup via ${HOME}/.zshrc.local (as before)
10     which is loaded at the end of the global zshrc.
11
12     That way, we enable people on other operating systems to use our
13     setup, too, just by copying our global zshrc to their ${HOME}/.zshrc.
14     Adjustments would still go to the .zshrc.local file.
15
16  -- Michael Prokop <mika@grml.org>  Fri, 13 Feb 2009 12:40:28 +0100
17
18 grml-etc-core (0.3.5) unstable; urgency=low
19
20   * Please notice, that the setup of zsh's completion functions has
21     been changed. The setup has been cleaned up but as a sideeffect
22     you might notice a problem like:
23
24      "_tags:comptags:67: can only be called from completion function"
25
26     when starting zsh. The reason for this change is because the files
27     inside /etc/zsh/completion.d/ have been renamed from 'foo' to
28     '_foo' and their content has been adjusted according to the new
29     setup too. If you added functions to completion.d yourself, please
30     consider moving them to /etc/zsh/functions.d/. Files in that
31     directory, not starting with an underscore are marked for
32     automatic loading by default (so that is quite convenient).
33
34     So to avoid above error message make sure you don't have any
35     dpkg-files *not* starting with a '_' in /etc/zsh/completion.d/
36     laying around. If there are files *not* starting with an
37     underscore from an older grml-etc-core in completion.d, you may
38     safely remove them.
39
40     Information regarding upgrading can be found also at:
41
42       http://wiki.grml.org/doku.php?id=upgrading
43
44     Information regarding (changing) zsh setup can be found at:
45
46       http://grml.org/zsh/#grmlzshrefcard
47
48  -- Michael Prokop <mika@grml.org>  Fri, 25 May 2007 01:32:27 +0200
49
50 grml-etc-core (0.1-31) unstable; urgency=low
51
52   * Please notice, that the behaviour of global aliases in /etc/skel/.zshrc
53     has been changed. Now global aliases won't be expanded automatically
54     anymore. You can still use them (and even some more now as well),
55     just type the abbreviation/global alias and expand it via pressing
56     the key sequence ',.'. Usage example:
57
58     % ls G<press-',.'-here>
59
60     expands to:
61
62     % ls |& grep --color=auto
63
64     Thanks for the contribution, Matthias Kopfermann!
65
66  -- Michael Prokop <mika@grml.org>  Sun, 12 Nov 2006 12:27:02 +0100