README.md 2.31 KB
Newer Older
1
2
3
4
5
6
7
8
9
# A plugin to shrink directory paths for brevity and pretty-printing


## Examples

For this directory tree:
```
    /home/
      me/
10
        f o o/     # The prefix f is ambiguous between "f o o" and "f i g".
11
12
13
          bar/
            quux/
          biz/     # The prefix b is ambiguous between bar and biz.
14
15
        f i g/
          baz/
16
17
18
19
```
here are the results of calling `shrink_path <option> /home/me/foo/bar/quux`:
```
    Option        Result
20
21
    <none>        /h/m/f o/ba/q
    -l|--last     /h/m/f o/ba/q
22
    -s|--short    /h/m/f/b/q
23
    -t|--tilde    ~/f o/ba/q
24
    -f|--fish     ~/f/b/quux
25
26
27
28
29
    -g|--glob     /h*/m*/f o*/ba*/q*
    -3            /hom/me/f o/bar/quu
    -e '$' -3     /hom$/me/f o$/bar/quu$
    -q            /h/m/f\ o/ba/q
    -g -q         /h*/m*/f\ o*/ba*/q*
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
```


## Usage

For a fish-style working directory in your command prompt, add the following to
your theme or zshrc:

```
    setopt prompt_subst
    PS1='%n@%m $(shrink_path -f)>'
```

The following options are available:

```
    -f, --fish       fish simulation, equivalent to -l -s -t.
47
    -g, --glob       Add asterisk to allow globbing of shrunk path (equivalent to -e "*")
48
    -l, --last       Print the last directory's full name.
49
    -s, --short      Truncate directory names to the number of characters given by -. Without
50
51
52
                     -s, names are truncated without making them ambiguous.
    -t, --tilde      Substitute ~ for the home directory.
    -T, --nameddirs  Substitute named directories as well.
53
54
55
    -#               Truncate each directly to at least this many characters inclusive of the
                     ellipsis character(s) (defaulting to 1).
    -e SYMBOL        Postfix symbol(s) to indicate that a directory name had been truncated.
56
    -q, --quote      Quote special characters in the shrunk path
57
58
59
60
61
62
63
64
65
66
67
68
69
70
```

The long options can also be set via zstyle, like
```
    zstyle :prompt:shrink_path fish yes
```

Note: Directory names containing two or more consecutive spaces are not yet
supported.


## License

Copyright (C) 2008 by Daniel Friesel <derf@xxxxxxxxxxxxxxxxxx>
71
Copyright (C) 2018-2020 by Pavel N. Krivitsky
72

Janosch Schwalm's avatar
Janosch Schwalm committed
73
License: WTFPL <http://www.wtfpl.net>
74

Janosch Schwalm's avatar
Janosch Schwalm committed
75
76
Ref: https://www.zsh.org/mla/workers/2009/msg00415.html
     https://www.zsh.org/mla/workers/2009/msg00419.html
77
78
79
80
81


## Misc

Keywords: prompt directory truncate shrink collapse fish