mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-19 21:41:07 +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 $@
|
||
|
}
|
||
|
|
||
|
|