File: README.markdown

package info (click to toggle)
slic3r 1.3.0%2Bdfsg1-5.1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 8,552 kB
  • sloc: cpp: 63,126; perl: 21,512; ansic: 6,312; sh: 591; xml: 201; makefile: 37; python: 11
file content (21 lines) | stat: -rw-r--r-- 684 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# ZSH Completions for Slic3r

To enable zsh(1) completions for Slic3r, add the following to your
``~/.zshrc`` file, replacing ``/path/to/Slic3r/`` with the actual path
to your Slic3r directory:

    typeset -U fpath

    if [[ -d /path/to/Slic3r/utils/zsh/functions ]]; then
        fpath=(/path/to/Slic3r/utils/zsh/functions $fpath)
    fi

    autoload -Uz compinit
    compinit
    zstyle ':completion:*' verbose true
    zstyle ':completion:*:descriptions' format '%B%d%b'
    zstyle ':completion:*:messages' format '%d'
    zstyle ':completion:*:warnings' format 'No matches for %d'
    zstyle ':completion:*' group-name '%d'

See the zshcompsys(1) man page for further details.