diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-04-02 12:09:51 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-04-02 12:09:51 +0000 |
commit | 9b12b98be98612833d8cb8e2a44c10ef486944c9 (patch) | |
tree | 547f155b382812e73c3513ce59662716fcc23abc | |
parent | c62d9f30615ddd67a577716461c242a9c9b8d8e6 (diff) | |
download | zsh-9b12b98be98612833d8cb8e2a44c10ef486944c9.tar.gz zsh-9b12b98be98612833d8cb8e2a44c10ef486944c9.tar.xz zsh-9b12b98be98612833d8cb8e2a44c10ef486944c9.zip |
moved to Completion/X/Type/_x_font
-rw-r--r-- | Completion/X/_x_font | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/Completion/X/_x_font b/Completion/X/_x_font deleted file mode 100644 index 92dc1ade4..000000000 --- a/Completion/X/_x_font +++ /dev/null @@ -1,16 +0,0 @@ -#autoload - -local expl - -_tags fonts || return 1 - -# This *has* to be improved some day... - -if (( ! $+_font_cache )); then - typeset -gU _font_cache - - _font_cache=( "${(@)^${(@f)$(_call fonts xlsfonts)}%%--*}--" ) -fi - -_wanted fonts expl font \ - compadd -M 'r:|-=* r:|=*' "$@" -S '' -a _font_cache |