mirror of
https://github.com/robbyrussell/oh-my-zsh.git
synced 2026-02-13 12:50:58 +01:00
11 lines
265 B
Bash
11 lines
265 B
Bash
# load included completion function into existing
|
|
# ~/.zcompdump-${SHORT_HOST}-${ZSH_VERSION} file
|
|
autoload -Uz _printc && compinit -d $ZSH_COMPDUMP
|
|
|
|
# Wrapper function to call included printc script
|
|
function printc() {
|
|
zsh $ZSH/plugins/printc/printc_scpt $@
|
|
}
|
|
|
|
|