File: README.Debian

package info (click to toggle)
zsh 5.3.1-4
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 16,324 kB
  • ctags: 8,554
  • sloc: ansic: 104,868; sh: 6,584; perl: 813; makefile: 774; awk: 388; sed: 16
file content (67 lines) | stat: -rw-r--r-- 2,100 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
Zsh for Debian
==============

You may find more uptodate information about Debian's zsh packages at
https://wiki.debian.org/Zsh

 -- Axel Beckert <abe@debian.org>, Mon, 20 Oct 2014 14:40:42 +0200

This version of zsh has been compiled with support for maildir
folders in MAIL and MAILPATH.

 -- Clint Adams <schizo@debian.org>


Using bash completion scripts with zsh
--------------------------------------

See http://zshwiki.org/home/convert/bash for instructions and example
code on how to use bash completion scripts with zsh.

 -- Axel Beckert <abe@debian.org>, Tue, 26 May 2015 14:46:31 +0200


How to use the zsh-dbg package
------------------------------

In the first terminal execute:

  sudo apt-get install zsh-dbg
  apt-get source zsh
  cd zsh-*

In the second terminal invoke 'zsh -f' (or drop the '-f' if you
don't want to start with a clean Zsh session). Execute all the
relevant steps right *before* you can trigger the problem you
want to inspect using gdb.

Return to the first terminal where you're standing in Zsh's
source directory.  Identify the process id of the Zsh instance
you want to debug ("ps aux | grep '[z]sh'") and use it for $PID.
Then execute:

  gdb $(find . -type d -printf '-d %p ') attach $PID

Now you can use the usual gdb commands like step / continue / ...
to debug the Zsh process at source level.

 -- Michael Prokop <mika@debian.org>


Load-path for functions from other packages
-------------------------------------------

In respsonse to #620452, the zsh-binary from Debian's zsh package started to
provide two entries to $fpath (the search path for loadable functions) for
other packages to drop function files into:

  - /usr/share/zsh/vendor-completions for functions that add functionality to
    zsh's function based completion system (compsys)

  - /usr/share/zsh/vendor-functions for all other functions

If you maintain another Debian package that wants to add functions to zsh's
function load-path, please use the those conventions when installing function
files.

 -- Frank Terbeck <ft@bewatermyfriend.org>, Wed, 21 May 2014 13:15:58 +0200