themes/rjorgenson: Remove function keyword

Made it more consistent to the rest of the functions in the file
This commit is contained in:
James Conroy
2022-02-01 01:22:23 +09:00
committed by Koichi Murase
parent ef9ca87851
commit ec42a3c09c
+1 -1
View File
@@ -44,7 +44,7 @@ is_vim_shell() {
fi
}
function is_integer() { # helper function to make sure input is an integer
is_integer() { # helper function to make sure input is an integer
[ "$1" -eq "$1" ] > /dev/null 2>&1
return $?
}