1
0
mirror of https://github.com/robbyrussell/oh-my-zsh.git synced 2025-12-16 04:10:42 +01:00

ZSH uses dash instead of underscore to separate words in function identifiers.

sorin-ionescu
2011-06-28 14:06:19 -07:00
parent ccb7fd5c2b
commit c7670fb339

@@ -19,7 +19,7 @@ Braces should be on the same line as the function name:
Private or utility functions should be prefixed with an underscore:
function _helper_util() {
function _helper-util() {
...
}