This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <fontconfig> | |
| <match> | |
| <test name="family"><string>Noto Sans KR</string></test> | |
| <edit name="family" mode="assign" binding="strong"> | |
| <string>Noto Sans CJK KR</string> | |
| </edit> | |
| </match> | |
| <match> | |
| <test name="family"><string>NanumGothic</string></test> | |
| <edit name="family" mode="assign" binding="strong"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #compdef perlbrew | |
| typeset -A opt_args | |
| local context state line | |
| _arguments -C \ | |
| '(- 1 *)'{-h,--help}'[prints help]' \ | |
| '(-n --notest)'{-n,--notest}'[Skip the test suite]' \ | |
| '(-f --force)'{-f,--force}'[Force installation of a perl]' \ | |
| '(-q --quiet)'{-q,--quiet}'[Log output to a log file rather than STDOUT. This is the default.]' \ |