1
0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2026-01-03 20:38:25 +08:00
ohmyzsh-mirror/plugins/fishysave
2025-06-24 11:43:01 -03:00
..
fishysave.plugin.zsh feat(plugin): add plugin to easily save aliases and functions 2025-06-24 11:43:01 -03:00
README.md feat(plugin): add plugin to easily save aliases and functions 2025-06-24 11:43:01 -03:00

fishysave

Plugin to save and update functions and aliases directly from shell, reminiscent of the fish "funcsave" feature.

Install

add fishysave to the plugins array of your zshrc file:

# ~/.zshrc
plugins=(... fishysave)

Usage

# Save an alias
alias lsal="ls -al"
fishysave lsal

# Save a function
function lsa() {
    ls -al
}
fishysave lsa