More builtins for Hilbish #44
Replies: 2 comments 3 replies
-
I think something like neovim's |
Beta Was this translation helpful? Give feedback.
-
zsh has some loadable functions for handling navigation, the main one is zsh also has zmv '(**/)(*).txt '$1$2.md'
# Rename "foo.txt" to "foo.md" recursively.
zmv '([a-z])(*).txt' '${(C)1}$2.txt'
# Renames "algernon.txt" to "Algernon.txt", "boris.txt" to "Boris.txt" etc. As Lua has great regex support, something similar to this would be great! |
Beta Was this translation helpful? Give feedback.
-
Hilbish is steadily coming close to a stable point where I'm not even working on it consistently anymore. So, to alleviate that I'm asking for any ideas on extra command built ins or global functions and things like that to Hilbish
or, what convenient functions you'd like, for example would you like
string.split()
to more easily split up strings?recently, the very convenient appendPath function was added 👍
Beta Was this translation helpful? Give feedback.
All reactions