2020-12-05 20:49:00 +00:00
|
|
|
set --global fisher_version 4.1.0
|
2016-05-10 10:25:05 +00:00
|
|
|
|
2020-12-05 20:49:00 +00:00
|
|
|
function fisher -a cmd -d "Fish plugin manager"
|
|
|
|
set --query fisher_path || set --local fisher_path $__fish_config_dir
|
|
|
|
set --local fish_plugins $__fish_config_dir/fish_plugins
|
Ahoy my mateys! fisherman 2.0.0 (beta) is here.
A lot has changed, in fact, fisherman as you knew it, is
no longer with us. Let me explain. The new fisherman, is
in fact a rewired clone of ``fin´´, a short-lived 2 week
experiment that started because it was easier to rewrite
everything than moving fisherman forward.
Let me explain. I was longing for a lightweight, simpler
fisherman with minimal maintanance cost. This fin lad is
one of the most pragmatic pieces of code I've ever written,
but attempting to maintain two drastically different plugin
managers was not a sane decision. fin's goal was to get out
of my way and let me be productive with fish and it did.
Now fin is fisherman and fisherman is fin. The most notable
change is that fisherman no longer depends on an index, so
like fin, it's neutral and agnostic to what plugins you use.
No index means fisherman completions are no longer as clever
as to show you description of plugins, but you will still get
enough information to know whether the plugin is a theme or not.
I hope you always check the plugin's README / online docs before
installing anything anyway.
With the index gone, we had no use for ``search``, so this command
is also gone.
If you were using search often or depended on the removed features
above, I am afraid they are gone *gone*, but trust me it's all for
the very best.
Now, with this out of the way, it's all unicorns and dartfish. Almost.
To upgrade to fisherman 2.0.0 you need to REMOVE your current version
of fisherman:
1. ```rm -rf "$fisher_home" "$fisher_config"```
2. Open your config.fish and remove the fisherman initialization code.
3. ```exec fish < /dev/tty``` to reload the session.
4. Run `curl -Lo ~/.config/fish/functions/fisher.fish --create-dirs git.io/fisherman`
That's it. Probably.
The new fisherman brings a lot more stability and maturity to the
project and we need this change in order to move forward. I will
be actively fixing any bugs that may have sneaked in during the
```fin->fisherman``` rewiring, but please do ping me:
@bucaran on GitHub or directly to my email j@bucaran.me
if you find anything out of place. Feel free and invited to go
wild with issues in order to get this into shape ASAP.
Cheers!
2016-04-21 15:34:06 +00:00
|
|
|
|
Fisher 4.0 (#596)
- Introduce new event system. #526, #527 #573.
- Deprecate `init.fish`, `uninstall.fish`, etc. #581
- No cache fallback, no plugin dependencies, no more private
package hosts, and no more gitlab/bitbucket support. #464, #579
- Require fish 3.0, use newer fish features, e.g., use `wait` to
implement concurrent downloads.
- Rely less on external tools. No awk, no sed, no basename/dirname.
Just mv, rm, cp, and mkdir.
- Deprecate `fishfile` in favor of `fish_plugins`. This new file
works like the old fishfile, but without comment support. See #524.
2020-11-04 10:50:10 +00:00
|
|
|
switch "$cmd"
|
|
|
|
case -v --version
|
|
|
|
echo "fisher, version $fisher_version"
|
|
|
|
case "" -h --help
|
2020-12-05 09:09:11 +00:00
|
|
|
echo "Usage: fisher install <plugins...> Install plugins"
|
|
|
|
echo " fisher remove <plugins...> Remove installed plugins"
|
|
|
|
echo " fisher update <plugins...> Update installed plugins"
|
|
|
|
echo " fisher update Update all installed plugins"
|
|
|
|
echo " fisher list [<regex>] List installed plugins matching regex"
|
|
|
|
echo "Options:"
|
|
|
|
echo " -v or --version Print version"
|
|
|
|
echo " -h or --help Print this help message"
|
2020-11-05 16:04:47 +00:00
|
|
|
case ls list
|
2020-11-09 12:58:51 +00:00
|
|
|
string match --entire --regex -- "$argv[2]" $_fisher_plugins
|
2020-11-13 10:47:25 +00:00
|
|
|
case install update remove
|
2020-12-09 17:17:51 +00:00
|
|
|
isatty || read --local --null --array stdin && set --append argv $stdin
|
2020-12-05 20:49:00 +00:00
|
|
|
set --local install_plugins
|
|
|
|
set --local update_plugins
|
|
|
|
set --local remove_plugins
|
|
|
|
set --local arg_plugins $argv[2..-1]
|
|
|
|
set --local old_plugins $_fisher_plugins
|
|
|
|
set --local new_plugins
|
|
|
|
|
|
|
|
if not set --query argv[2]
|
2020-11-09 12:58:51 +00:00
|
|
|
if test "$cmd" != update || test ! -e $fish_plugins
|
2020-12-05 09:09:11 +00:00
|
|
|
echo "fisher: Not enough arguments for command: \"$cmd\"" >&2 && return 1
|
2020-11-09 12:58:51 +00:00
|
|
|
end
|
2021-01-14 11:13:49 +00:00
|
|
|
set arg_plugins (string match --regex --invert '^\s*$' -- <$fish_plugins)
|
2020-11-09 12:58:51 +00:00
|
|
|
end
|
2016-05-09 11:09:09 +00:00
|
|
|
|
2020-11-09 12:58:51 +00:00
|
|
|
for plugin in $arg_plugins
|
|
|
|
test -e "$plugin" && set plugin (realpath $plugin)
|
2020-12-05 20:49:00 +00:00
|
|
|
contains -- "$plugin" $new_plugins || set --append new_plugins $plugin
|
2020-11-09 12:58:51 +00:00
|
|
|
end
|
|
|
|
|
2020-12-05 20:49:00 +00:00
|
|
|
if set --query argv[2]
|
2020-11-09 12:58:51 +00:00
|
|
|
for plugin in $new_plugins
|
2020-11-06 17:03:18 +00:00
|
|
|
if contains -- "$plugin" $old_plugins
|
2020-11-13 10:47:25 +00:00
|
|
|
if test "$cmd" = remove
|
2020-12-05 20:49:00 +00:00
|
|
|
set --append remove_plugins $plugin
|
2020-11-13 10:47:25 +00:00
|
|
|
else
|
2020-12-05 20:49:00 +00:00
|
|
|
set --append update_plugins $plugin
|
2020-11-06 17:03:18 +00:00
|
|
|
end
|
|
|
|
else if test "$cmd" != install
|
2020-12-05 09:09:11 +00:00
|
|
|
echo "fisher: Plugin not installed: \"$plugin\"" >&2 && return 1
|
2020-11-06 17:03:18 +00:00
|
|
|
else
|
2020-12-05 20:49:00 +00:00
|
|
|
set --append install_plugins $plugin
|
2020-11-06 17:03:18 +00:00
|
|
|
end
|
Fisher 4.0 (#596)
- Introduce new event system. #526, #527 #573.
- Deprecate `init.fish`, `uninstall.fish`, etc. #581
- No cache fallback, no plugin dependencies, no more private
package hosts, and no more gitlab/bitbucket support. #464, #579
- Require fish 3.0, use newer fish features, e.g., use `wait` to
implement concurrent downloads.
- Rely less on external tools. No awk, no sed, no basename/dirname.
Just mv, rm, cp, and mkdir.
- Deprecate `fishfile` in favor of `fish_plugins`. This new file
works like the old fishfile, but without comment support. See #524.
2020-11-04 10:50:10 +00:00
|
|
|
end
|
2020-11-06 17:03:18 +00:00
|
|
|
else
|
Fisher 4.0 (#596)
- Introduce new event system. #526, #527 #573.
- Deprecate `init.fish`, `uninstall.fish`, etc. #581
- No cache fallback, no plugin dependencies, no more private
package hosts, and no more gitlab/bitbucket support. #464, #579
- Require fish 3.0, use newer fish features, e.g., use `wait` to
implement concurrent downloads.
- Rely less on external tools. No awk, no sed, no basename/dirname.
Just mv, rm, cp, and mkdir.
- Deprecate `fishfile` in favor of `fish_plugins`. This new file
works like the old fishfile, but without comment support. See #524.
2020-11-04 10:50:10 +00:00
|
|
|
for plugin in $new_plugins
|
|
|
|
if contains -- "$plugin" $old_plugins
|
2020-12-05 20:49:00 +00:00
|
|
|
set --append update_plugins $plugin
|
Fisher 4.0 (#596)
- Introduce new event system. #526, #527 #573.
- Deprecate `init.fish`, `uninstall.fish`, etc. #581
- No cache fallback, no plugin dependencies, no more private
package hosts, and no more gitlab/bitbucket support. #464, #579
- Require fish 3.0, use newer fish features, e.g., use `wait` to
implement concurrent downloads.
- Rely less on external tools. No awk, no sed, no basename/dirname.
Just mv, rm, cp, and mkdir.
- Deprecate `fishfile` in favor of `fish_plugins`. This new file
works like the old fishfile, but without comment support. See #524.
2020-11-04 10:50:10 +00:00
|
|
|
else
|
2020-12-05 20:49:00 +00:00
|
|
|
set --append install_plugins $plugin
|
Fisher 4.0 (#596)
- Introduce new event system. #526, #527 #573.
- Deprecate `init.fish`, `uninstall.fish`, etc. #581
- No cache fallback, no plugin dependencies, no more private
package hosts, and no more gitlab/bitbucket support. #464, #579
- Require fish 3.0, use newer fish features, e.g., use `wait` to
implement concurrent downloads.
- Rely less on external tools. No awk, no sed, no basename/dirname.
Just mv, rm, cp, and mkdir.
- Deprecate `fishfile` in favor of `fish_plugins`. This new file
works like the old fishfile, but without comment support. See #524.
2020-11-04 10:50:10 +00:00
|
|
|
end
|
|
|
|
end
|
2020-07-01 03:30:16 +00:00
|
|
|
|
Fisher 4.0 (#596)
- Introduce new event system. #526, #527 #573.
- Deprecate `init.fish`, `uninstall.fish`, etc. #581
- No cache fallback, no plugin dependencies, no more private
package hosts, and no more gitlab/bitbucket support. #464, #579
- Require fish 3.0, use newer fish features, e.g., use `wait` to
implement concurrent downloads.
- Rely less on external tools. No awk, no sed, no basename/dirname.
Just mv, rm, cp, and mkdir.
- Deprecate `fishfile` in favor of `fish_plugins`. This new file
works like the old fishfile, but without comment support. See #524.
2020-11-04 10:50:10 +00:00
|
|
|
for plugin in $old_plugins
|
|
|
|
if not contains -- "$plugin" $new_plugins
|
2020-12-05 20:49:00 +00:00
|
|
|
set --append remove_plugins $plugin
|
Fisher 4.0 (#596)
- Introduce new event system. #526, #527 #573.
- Deprecate `init.fish`, `uninstall.fish`, etc. #581
- No cache fallback, no plugin dependencies, no more private
package hosts, and no more gitlab/bitbucket support. #464, #579
- Require fish 3.0, use newer fish features, e.g., use `wait` to
implement concurrent downloads.
- Rely less on external tools. No awk, no sed, no basename/dirname.
Just mv, rm, cp, and mkdir.
- Deprecate `fishfile` in favor of `fish_plugins`. This new file
works like the old fishfile, but without comment support. See #524.
2020-11-04 10:50:10 +00:00
|
|
|
end
|
|
|
|
end
|
Ahoy my mateys! fisherman 2.0.0 (beta) is here.
A lot has changed, in fact, fisherman as you knew it, is
no longer with us. Let me explain. The new fisherman, is
in fact a rewired clone of ``fin´´, a short-lived 2 week
experiment that started because it was easier to rewrite
everything than moving fisherman forward.
Let me explain. I was longing for a lightweight, simpler
fisherman with minimal maintanance cost. This fin lad is
one of the most pragmatic pieces of code I've ever written,
but attempting to maintain two drastically different plugin
managers was not a sane decision. fin's goal was to get out
of my way and let me be productive with fish and it did.
Now fin is fisherman and fisherman is fin. The most notable
change is that fisherman no longer depends on an index, so
like fin, it's neutral and agnostic to what plugins you use.
No index means fisherman completions are no longer as clever
as to show you description of plugins, but you will still get
enough information to know whether the plugin is a theme or not.
I hope you always check the plugin's README / online docs before
installing anything anyway.
With the index gone, we had no use for ``search``, so this command
is also gone.
If you were using search often or depended on the removed features
above, I am afraid they are gone *gone*, but trust me it's all for
the very best.
Now, with this out of the way, it's all unicorns and dartfish. Almost.
To upgrade to fisherman 2.0.0 you need to REMOVE your current version
of fisherman:
1. ```rm -rf "$fisher_home" "$fisher_config"```
2. Open your config.fish and remove the fisherman initialization code.
3. ```exec fish < /dev/tty``` to reload the session.
4. Run `curl -Lo ~/.config/fish/functions/fisher.fish --create-dirs git.io/fisherman`
That's it. Probably.
The new fisherman brings a lot more stability and maturity to the
project and we need this change in order to move forward. I will
be actively fixing any bugs that may have sneaked in during the
```fin->fisherman``` rewiring, but please do ping me:
@bucaran on GitHub or directly to my email j@bucaran.me
if you find anything out of place. Feel free and invited to go
wild with issues in order to get this into shape ASAP.
Cheers!
2016-04-21 15:34:06 +00:00
|
|
|
end
|
2018-12-31 17:49:03 +00:00
|
|
|
|
2020-12-05 20:49:00 +00:00
|
|
|
set --local pid_list
|
|
|
|
set --local source_plugins
|
|
|
|
set --local fetch_plugins $update_plugins $install_plugins
|
2020-11-12 12:34:20 +00:00
|
|
|
echo -e "\x1b[1mfisher $cmd version $fisher_version\x1b[22m"
|
2020-11-09 12:58:51 +00:00
|
|
|
|
|
|
|
for plugin in $fetch_plugins
|
2020-12-05 20:49:00 +00:00
|
|
|
set --local source (command mktemp -d)
|
|
|
|
set --append source_plugins $source
|
2020-11-09 12:58:51 +00:00
|
|
|
|
|
|
|
command mkdir -p $source/{completions,conf.d,functions}
|
2020-11-06 17:03:18 +00:00
|
|
|
|
Fisher 4.0 (#596)
- Introduce new event system. #526, #527 #573.
- Deprecate `init.fish`, `uninstall.fish`, etc. #581
- No cache fallback, no plugin dependencies, no more private
package hosts, and no more gitlab/bitbucket support. #464, #579
- Require fish 3.0, use newer fish features, e.g., use `wait` to
implement concurrent downloads.
- Rely less on external tools. No awk, no sed, no basename/dirname.
Just mv, rm, cp, and mkdir.
- Deprecate `fishfile` in favor of `fish_plugins`. This new file
works like the old fishfile, but without comment support. See #524.
2020-11-04 10:50:10 +00:00
|
|
|
fish -c "
|
|
|
|
if test -e $plugin
|
2020-11-09 12:58:51 +00:00
|
|
|
command cp -Rf $plugin/* $source
|
Fisher 4.0 (#596)
- Introduce new event system. #526, #527 #573.
- Deprecate `init.fish`, `uninstall.fish`, etc. #581
- No cache fallback, no plugin dependencies, no more private
package hosts, and no more gitlab/bitbucket support. #464, #579
- Require fish 3.0, use newer fish features, e.g., use `wait` to
implement concurrent downloads.
- Rely less on external tools. No awk, no sed, no basename/dirname.
Just mv, rm, cp, and mkdir.
- Deprecate `fishfile` in favor of `fish_plugins`. This new file
works like the old fishfile, but without comment support. See #524.
2020-11-04 10:50:10 +00:00
|
|
|
else
|
2020-11-06 17:03:18 +00:00
|
|
|
set temp (command mktemp -d)
|
|
|
|
set name (string split \@ $plugin) || set name[2] HEAD
|
|
|
|
set url https://codeload.github.com/\$name[1]/tar.gz/\$name[2]
|
2020-12-05 20:49:00 +00:00
|
|
|
set --query fisher_user_api_token && set opts -u $fisher_user_api_token
|
2020-11-06 17:03:18 +00:00
|
|
|
|
2020-12-05 09:09:11 +00:00
|
|
|
echo -e \"Fetching \x1b[4m\$url\x1b[24m\"
|
2021-01-14 11:04:17 +00:00
|
|
|
if curl $opts --silent \$url | tar --extract --gzip --directory \$temp --file -
|
2020-11-09 12:58:51 +00:00
|
|
|
command cp -Rf \$temp/*/* $source
|
|
|
|
else
|
2020-12-05 09:09:11 +00:00
|
|
|
echo fisher: Invalid plugin name or host unavailable: \\\"$plugin\\\" >&2
|
2020-11-09 12:58:51 +00:00
|
|
|
command rm -rf $source
|
Fisher 4.0 (#596)
- Introduce new event system. #526, #527 #573.
- Deprecate `init.fish`, `uninstall.fish`, etc. #581
- No cache fallback, no plugin dependencies, no more private
package hosts, and no more gitlab/bitbucket support. #464, #579
- Require fish 3.0, use newer fish features, e.g., use `wait` to
implement concurrent downloads.
- Rely less on external tools. No awk, no sed, no basename/dirname.
Just mv, rm, cp, and mkdir.
- Deprecate `fishfile` in favor of `fish_plugins`. This new file
works like the old fishfile, but without comment support. See #524.
2020-11-04 10:50:10 +00:00
|
|
|
end
|
2020-11-09 12:58:51 +00:00
|
|
|
command rm -rf \$temp
|
|
|
|
end
|
|
|
|
|
|
|
|
test ! -e $source && exit
|
|
|
|
command mv -f (string match --entire --regex -- \.fish\\\$ $source/*) $source/functions 2>/dev/null" &
|
2020-11-06 17:03:18 +00:00
|
|
|
|
2020-12-05 20:49:00 +00:00
|
|
|
set --append pid_list (jobs --last --pid)
|
2018-12-31 17:49:03 +00:00
|
|
|
end
|
2020-11-06 17:03:18 +00:00
|
|
|
|
Fisher 4.0 (#596)
- Introduce new event system. #526, #527 #573.
- Deprecate `init.fish`, `uninstall.fish`, etc. #581
- No cache fallback, no plugin dependencies, no more private
package hosts, and no more gitlab/bitbucket support. #464, #579
- Require fish 3.0, use newer fish features, e.g., use `wait` to
implement concurrent downloads.
- Rely less on external tools. No awk, no sed, no basename/dirname.
Just mv, rm, cp, and mkdir.
- Deprecate `fishfile` in favor of `fish_plugins`. This new file
works like the old fishfile, but without comment support. See #524.
2020-11-04 10:50:10 +00:00
|
|
|
wait $pid_list 2>/dev/null
|
2018-12-31 17:49:03 +00:00
|
|
|
|
2020-11-09 12:58:51 +00:00
|
|
|
for plugin in $fetch_plugins
|
2020-12-05 20:49:00 +00:00
|
|
|
if set --local source $source_plugins[(contains --index -- "$plugin" $fetch_plugins)] && test ! -e $source
|
|
|
|
if set --local index (contains --index -- "$plugin" $install_plugins)
|
|
|
|
set --erase install_plugins[$index]
|
2020-11-09 12:58:51 +00:00
|
|
|
else
|
2020-12-05 20:49:00 +00:00
|
|
|
set --erase update_plugins[(contains --index -- "$plugin" $update_plugins)]
|
2020-11-09 12:58:51 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2020-11-04 18:21:43 +00:00
|
|
|
|
2020-11-09 12:58:51 +00:00
|
|
|
for plugin in $update_plugins $remove_plugins
|
2020-12-05 20:49:00 +00:00
|
|
|
if set --local index (contains --index -- "$plugin" $_fisher_plugins)
|
|
|
|
set --local plugin_files_var _fisher_(string escape --style=var $plugin)_files
|
2020-11-05 05:34:24 +00:00
|
|
|
|
2020-11-11 14:54:00 +00:00
|
|
|
if contains -- "$plugin" $remove_plugins && set --erase _fisher_plugins[$index]
|
2020-11-09 12:58:51 +00:00
|
|
|
for file in (string match --entire --regex -- "conf\.d/" $$plugin_files_var)
|
|
|
|
emit (string replace --all --regex -- '^.*/|\.fish$' "" $file)_uninstall
|
|
|
|
end
|
2020-12-05 09:09:11 +00:00
|
|
|
echo -es "Removing \x1b[1m$plugin\x1b[22m" \n" "$$plugin_files_var
|
2020-11-09 12:58:51 +00:00
|
|
|
end
|
2020-11-05 05:34:24 +00:00
|
|
|
|
2020-11-09 12:58:51 +00:00
|
|
|
command rm -rf $$plugin_files_var
|
2021-01-14 11:23:29 +00:00
|
|
|
functions --erase (
|
|
|
|
string match --entire --regex -- "functions/" $$plugin_files_var |
|
|
|
|
string replace --all --regex -- '^.*/|\.fish$' ""
|
|
|
|
)
|
2020-11-09 12:58:51 +00:00
|
|
|
set --erase $plugin_files_var
|
2020-11-05 05:34:24 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-12-05 20:49:00 +00:00
|
|
|
if set --query update_plugins[1] || set --query install_plugins[1]
|
2020-11-13 08:05:23 +00:00
|
|
|
command mkdir -p $fisher_path/{functions,conf.d,completions}
|
|
|
|
end
|
|
|
|
|
2020-11-09 12:58:51 +00:00
|
|
|
for plugin in $update_plugins $install_plugins
|
2020-12-05 20:49:00 +00:00
|
|
|
set --local source $source_plugins[(contains --index -- "$plugin" $fetch_plugins)]
|
|
|
|
set --local files $source/{functions,conf.d,completions}/*
|
|
|
|
set --local plugin_files_var _fisher_(string escape --style=var $plugin)_files
|
2021-01-14 10:38:23 +00:00
|
|
|
set --query files[1] && set --universal $plugin_files_var (string replace $source $fisher_path $files)
|
2020-11-06 18:34:55 +00:00
|
|
|
|
2020-11-13 10:44:05 +00:00
|
|
|
for file in (string replace -- $source "" $files)
|
|
|
|
command cp -Rf $source/$file $fisher_path/$file
|
2020-11-13 08:01:16 +00:00
|
|
|
end
|
2016-04-30 18:19:25 +00:00
|
|
|
|
2021-01-14 10:38:23 +00:00
|
|
|
contains -- $plugin $_fisher_plugins || set --universal --append _fisher_plugins $plugin
|
|
|
|
contains -- $plugin $install_plugins && set --local event install || set --local event update
|
2020-12-05 09:09:11 +00:00
|
|
|
echo -es "Installing \x1b[1m$plugin\x1b[22m" \n" "$$plugin_files_var
|
breaking: implement fisher V3 (#445)
SUMMARY
This PR rewrites fisher from the ground up and adds new
documentation. It introduces some breaking changes as described
in the next section. For a historical background of this work
see the original V3 proposal #307 and the more recent discussion
about the future of the project #443.
After much debate and careful consideration I decided it is in
the best interest of the project to keep the CLI-based approach
to dependency management as a facade to the fishfile-based
approach originally proposed.
The new `add` commands (previously `install`) and good ol' `rm`
interactively update your fishfile and commit all your changes
in one sweep. To the end user, it's as if you were adding or
removing packages like you already do now. Internally, these
commands affect how the fishfile is parsed and result in adding
new or replacing/removing existing entries followed by a regular
`fisher` run.
INSTALLING
- `install` has been renamed to `add`
- Installing from a gist is no longer supported (but it will be
back in a future release—removed only to simplify the rewrite)
- To install a package from a tag or branch use an at symbol
`@`—the colon `:` is deprecated
LISTING
- `ls` and `rm` are still available with a few minor differences
- `ls` followed by a package name does not list specific package
information (may be added back in a future release)
- `ls` output format no longer displays a legend to indicate
whether a package is a theme or a local package; now it's a flat
dump of every installed package specifier
- For local packages the full path is shown instead
- I want to add a `--tree` option in to display packages in a
tree-like format in the future
- `ls-remote` has been removed as there is no longer a preferred
organization to look for packages— there is no plan to add it
back
UPDATING
- A new `self-update` command has been introduced to update
fisher itself
- fisher will be only updated when a new version is actually
available
- `update` has been removed
- Everything is installed from scratch everytime you add or
remove something, so there is no need to update specific
packages—you're always up-to-date
- To lock on a specific package version install from a
tag/branch, e.g., `mypkg/foobar@1.3.2`
UNINSTALLING
- `self-uninstall` works as usual
HELP & VERSION
- `help` only displays fisher usage help
- help is dumped to stdout instead of creating a man page on the
fly and piping it to your pager `version` works as usual
ENVIRONMENT
- `$fish_path` been renamed to `$fisher_path` to make it clear
that this is a fisher specific extension, not your shell's
ECOSYSTEM
- Oh My Fish! packages are still supported, albeit less
attention is paid to them
- Some packages that use Oh My Fish! specific environment
variables or events might not work
- Most of Oh My Fish! extensions are no longer necessary since
fish 2.3, therefore it should be a simple matter to upgrade them
to modern fish
DEPENDENCIES
- fisher can now run on fish 2.0
- It's a good idea to upgrade to at least fish 2.3 to use the
string builtin and configuration snippets, but there's no reason
for fisher to force you to use any fish version
- `curl` is required for fetching packages
- I am considering adding a fallback to `wget` if `curl` is not
available on your system
- `git` is optional
- V3 fetches packages directly from github, gitlab and
bitbucket, if you are using them
- git is only used (implementation still wip) if you want to
install a package from an unknown git host like your own git
server
2018-10-05 11:20:31 +00:00
|
|
|
|
2020-11-11 14:54:00 +00:00
|
|
|
for file in (string match --entire --regex -- "[functions/|conf\.d/].*fish\$" $$plugin_files_var)
|
Fisher 4.0 (#596)
- Introduce new event system. #526, #527 #573.
- Deprecate `init.fish`, `uninstall.fish`, etc. #581
- No cache fallback, no plugin dependencies, no more private
package hosts, and no more gitlab/bitbucket support. #464, #579
- Require fish 3.0, use newer fish features, e.g., use `wait` to
implement concurrent downloads.
- Rely less on external tools. No awk, no sed, no basename/dirname.
Just mv, rm, cp, and mkdir.
- Deprecate `fishfile` in favor of `fish_plugins`. This new file
works like the old fishfile, but without comment support. See #524.
2020-11-04 10:50:10 +00:00
|
|
|
source $file
|
2020-11-09 12:58:51 +00:00
|
|
|
if string match --quiet --regex -- "conf\.d/" $file
|
|
|
|
emit (string replace --all --regex -- '^.*/|\.fish$' "" $file)_$event
|
Fisher 4.0 (#596)
- Introduce new event system. #526, #527 #573.
- Deprecate `init.fish`, `uninstall.fish`, etc. #581
- No cache fallback, no plugin dependencies, no more private
package hosts, and no more gitlab/bitbucket support. #464, #579
- Require fish 3.0, use newer fish features, e.g., use `wait` to
implement concurrent downloads.
- Rely less on external tools. No awk, no sed, no basename/dirname.
Just mv, rm, cp, and mkdir.
- Deprecate `fishfile` in favor of `fish_plugins`. This new file
works like the old fishfile, but without comment support. See #524.
2020-11-04 10:50:10 +00:00
|
|
|
end
|
|
|
|
end
|
breaking: implement fisher V3 (#445)
SUMMARY
This PR rewrites fisher from the ground up and adds new
documentation. It introduces some breaking changes as described
in the next section. For a historical background of this work
see the original V3 proposal #307 and the more recent discussion
about the future of the project #443.
After much debate and careful consideration I decided it is in
the best interest of the project to keep the CLI-based approach
to dependency management as a facade to the fishfile-based
approach originally proposed.
The new `add` commands (previously `install`) and good ol' `rm`
interactively update your fishfile and commit all your changes
in one sweep. To the end user, it's as if you were adding or
removing packages like you already do now. Internally, these
commands affect how the fishfile is parsed and result in adding
new or replacing/removing existing entries followed by a regular
`fisher` run.
INSTALLING
- `install` has been renamed to `add`
- Installing from a gist is no longer supported (but it will be
back in a future release—removed only to simplify the rewrite)
- To install a package from a tag or branch use an at symbol
`@`—the colon `:` is deprecated
LISTING
- `ls` and `rm` are still available with a few minor differences
- `ls` followed by a package name does not list specific package
information (may be added back in a future release)
- `ls` output format no longer displays a legend to indicate
whether a package is a theme or a local package; now it's a flat
dump of every installed package specifier
- For local packages the full path is shown instead
- I want to add a `--tree` option in to display packages in a
tree-like format in the future
- `ls-remote` has been removed as there is no longer a preferred
organization to look for packages— there is no plan to add it
back
UPDATING
- A new `self-update` command has been introduced to update
fisher itself
- fisher will be only updated when a new version is actually
available
- `update` has been removed
- Everything is installed from scratch everytime you add or
remove something, so there is no need to update specific
packages—you're always up-to-date
- To lock on a specific package version install from a
tag/branch, e.g., `mypkg/foobar@1.3.2`
UNINSTALLING
- `self-uninstall` works as usual
HELP & VERSION
- `help` only displays fisher usage help
- help is dumped to stdout instead of creating a man page on the
fly and piping it to your pager `version` works as usual
ENVIRONMENT
- `$fish_path` been renamed to `$fisher_path` to make it clear
that this is a fisher specific extension, not your shell's
ECOSYSTEM
- Oh My Fish! packages are still supported, albeit less
attention is paid to them
- Some packages that use Oh My Fish! specific environment
variables or events might not work
- Most of Oh My Fish! extensions are no longer necessary since
fish 2.3, therefore it should be a simple matter to upgrade them
to modern fish
DEPENDENCIES
- fisher can now run on fish 2.0
- It's a good idea to upgrade to at least fish 2.3 to use the
string builtin and configuration snippets, but there's no reason
for fisher to force you to use any fish version
- `curl` is required for fetching packages
- I am considering adding a fallback to `wget` if `curl` is not
available on your system
- `git` is optional
- V3 fetches packages directly from github, gitlab and
bitbucket, if you are using them
- git is only used (implementation still wip) if you want to
install a package from an unknown git host like your own git
server
2018-10-05 11:20:31 +00:00
|
|
|
end
|
2018-12-31 17:49:03 +00:00
|
|
|
|
2020-11-09 12:58:51 +00:00
|
|
|
command rm -rf $source_plugins
|
2020-12-05 20:49:00 +00:00
|
|
|
functions --query fish_prompt || source $__fish_data_dir/functions/fish_prompt.fish
|
2020-11-05 05:24:34 +00:00
|
|
|
|
2020-12-05 20:49:00 +00:00
|
|
|
set --query _fisher_plugins[1] || set --erase _fisher_plugins
|
2021-01-14 10:38:23 +00:00
|
|
|
set --query _fisher_plugins &&
|
|
|
|
printf "%s\n" $_fisher_plugins >$fish_plugins ||
|
|
|
|
command rm -f $fish_plugins
|
2018-12-31 17:49:03 +00:00
|
|
|
|
2020-12-05 20:49:00 +00:00
|
|
|
set --local total (count $install_plugins) (count $update_plugins) (count $remove_plugins)
|
2020-11-05 16:55:12 +00:00
|
|
|
test "$total" != "0 0 0" && echo (string join ", " (
|
2020-12-05 09:09:11 +00:00
|
|
|
test $total[1] = 0 || echo "Installed $total[1]") (
|
|
|
|
test $total[2] = 0 || echo "Updated $total[2]") (
|
|
|
|
test $total[3] = 0 || echo "Removed $total[3]")
|
2021-01-14 10:38:23 +00:00
|
|
|
) plugin/s
|
Fisher 4.0 (#596)
- Introduce new event system. #526, #527 #573.
- Deprecate `init.fish`, `uninstall.fish`, etc. #581
- No cache fallback, no plugin dependencies, no more private
package hosts, and no more gitlab/bitbucket support. #464, #579
- Require fish 3.0, use newer fish features, e.g., use `wait` to
implement concurrent downloads.
- Rely less on external tools. No awk, no sed, no basename/dirname.
Just mv, rm, cp, and mkdir.
- Deprecate `fishfile` in favor of `fish_plugins`. This new file
works like the old fishfile, but without comment support. See #524.
2020-11-04 10:50:10 +00:00
|
|
|
case \*
|
2021-01-14 11:23:59 +00:00
|
|
|
echo "fisher: Unknown flag or command: \"$cmd\"" >&2 && return 1
|
breaking: implement fisher V3 (#445)
SUMMARY
This PR rewrites fisher from the ground up and adds new
documentation. It introduces some breaking changes as described
in the next section. For a historical background of this work
see the original V3 proposal #307 and the more recent discussion
about the future of the project #443.
After much debate and careful consideration I decided it is in
the best interest of the project to keep the CLI-based approach
to dependency management as a facade to the fishfile-based
approach originally proposed.
The new `add` commands (previously `install`) and good ol' `rm`
interactively update your fishfile and commit all your changes
in one sweep. To the end user, it's as if you were adding or
removing packages like you already do now. Internally, these
commands affect how the fishfile is parsed and result in adding
new or replacing/removing existing entries followed by a regular
`fisher` run.
INSTALLING
- `install` has been renamed to `add`
- Installing from a gist is no longer supported (but it will be
back in a future release—removed only to simplify the rewrite)
- To install a package from a tag or branch use an at symbol
`@`—the colon `:` is deprecated
LISTING
- `ls` and `rm` are still available with a few minor differences
- `ls` followed by a package name does not list specific package
information (may be added back in a future release)
- `ls` output format no longer displays a legend to indicate
whether a package is a theme or a local package; now it's a flat
dump of every installed package specifier
- For local packages the full path is shown instead
- I want to add a `--tree` option in to display packages in a
tree-like format in the future
- `ls-remote` has been removed as there is no longer a preferred
organization to look for packages— there is no plan to add it
back
UPDATING
- A new `self-update` command has been introduced to update
fisher itself
- fisher will be only updated when a new version is actually
available
- `update` has been removed
- Everything is installed from scratch everytime you add or
remove something, so there is no need to update specific
packages—you're always up-to-date
- To lock on a specific package version install from a
tag/branch, e.g., `mypkg/foobar@1.3.2`
UNINSTALLING
- `self-uninstall` works as usual
HELP & VERSION
- `help` only displays fisher usage help
- help is dumped to stdout instead of creating a man page on the
fly and piping it to your pager `version` works as usual
ENVIRONMENT
- `$fish_path` been renamed to `$fisher_path` to make it clear
that this is a fisher specific extension, not your shell's
ECOSYSTEM
- Oh My Fish! packages are still supported, albeit less
attention is paid to them
- Some packages that use Oh My Fish! specific environment
variables or events might not work
- Most of Oh My Fish! extensions are no longer necessary since
fish 2.3, therefore it should be a simple matter to upgrade them
to modern fish
DEPENDENCIES
- fisher can now run on fish 2.0
- It's a good idea to upgrade to at least fish 2.3 to use the
string builtin and configuration snippets, but there's no reason
for fisher to force you to use any fish version
- `curl` is required for fetching packages
- I am considering adding a fallback to `wget` if `curl` is not
available on your system
- `git` is optional
- V3 fetches packages directly from github, gitlab and
bitbucket, if you are using them
- git is only used (implementation still wip) if you want to
install a package from an unknown git host like your own git
server
2018-10-05 11:20:31 +00:00
|
|
|
end
|
Fisher 4.0 (#596)
- Introduce new event system. #526, #527 #573.
- Deprecate `init.fish`, `uninstall.fish`, etc. #581
- No cache fallback, no plugin dependencies, no more private
package hosts, and no more gitlab/bitbucket support. #464, #579
- Require fish 3.0, use newer fish features, e.g., use `wait` to
implement concurrent downloads.
- Rely less on external tools. No awk, no sed, no basename/dirname.
Just mv, rm, cp, and mkdir.
- Deprecate `fishfile` in favor of `fish_plugins`. This new file
works like the old fishfile, but without comment support. See #524.
2020-11-04 10:50:10 +00:00
|
|
|
end
|
2018-10-05 17:20:08 +00:00
|
|
|
|
2020-11-09 12:58:51 +00:00
|
|
|
## Migrations ##
|
2020-12-05 20:49:00 +00:00
|
|
|
if functions --query _fisher_self_update || test -e $__fish_config_dir/fishfile # 3.x
|
Fisher 4.0 (#596)
- Introduce new event system. #526, #527 #573.
- Deprecate `init.fish`, `uninstall.fish`, etc. #581
- No cache fallback, no plugin dependencies, no more private
package hosts, and no more gitlab/bitbucket support. #464, #579
- Require fish 3.0, use newer fish features, e.g., use `wait` to
implement concurrent downloads.
- Rely less on external tools. No awk, no sed, no basename/dirname.
Just mv, rm, cp, and mkdir.
- Deprecate `fishfile` in favor of `fish_plugins`. This new file
works like the old fishfile, but without comment support. See #524.
2020-11-04 10:50:10 +00:00
|
|
|
function _fisher_migrate
|
|
|
|
function _fisher_complete
|
2020-11-12 12:34:20 +00:00
|
|
|
fisher install jorgebucaran/fisher >/dev/null 2>/dev/null
|
2020-11-09 12:58:51 +00:00
|
|
|
functions --erase _fisher_complete
|
2019-01-21 11:51:25 +00:00
|
|
|
end
|
2020-12-05 20:49:00 +00:00
|
|
|
set --query XDG_DATA_HOME || set XDG_DATA_HOME ~/.local/share
|
|
|
|
set --query XDG_CACHE_HOME || set XDG_CACHE_HOME ~/.cache
|
|
|
|
set --query XDG_CONFIG_HOME || set XDG_CONFIG_HOME ~/.config
|
|
|
|
set --query fisher_path || set fisher_path $__fish_config_dir
|
2020-11-10 14:46:29 +00:00
|
|
|
test -e $__fish_config_dir/fishfile && command awk '/#|^gitlab|^ *$/ { next } $0' <$__fish_config_dir/fishfile >>$__fish_config_dir/fish_plugins
|
Fisher 4.0 (#596)
- Introduce new event system. #526, #527 #573.
- Deprecate `init.fish`, `uninstall.fish`, etc. #581
- No cache fallback, no plugin dependencies, no more private
package hosts, and no more gitlab/bitbucket support. #464, #579
- Require fish 3.0, use newer fish features, e.g., use `wait` to
implement concurrent downloads.
- Rely less on external tools. No awk, no sed, no basename/dirname.
Just mv, rm, cp, and mkdir.
- Deprecate `fishfile` in favor of `fish_plugins`. This new file
works like the old fishfile, but without comment support. See #524.
2020-11-04 10:50:10 +00:00
|
|
|
command rm -rf $__fish_config_dir/fishfile $fisher_path/{conf.d,completions}/fisher.fish {$XDG_DATA_HOME,$XDG_CACHE_HOME,$XDG_CONFIG_HOME}/fisher
|
2020-11-09 12:58:51 +00:00
|
|
|
functions --erase _fisher_migrate _fisher_copy_user_key_bindings _fisher_ls _fisher_fmt _fisher_self_update _fisher_self_uninstall _fisher_commit _fisher_parse _fisher_fetch _fisher_add _fisher_rm _fisher_jobs _fisher_now _fisher_help
|
Fisher 4.0 (#596)
- Introduce new event system. #526, #527 #573.
- Deprecate `init.fish`, `uninstall.fish`, etc. #581
- No cache fallback, no plugin dependencies, no more private
package hosts, and no more gitlab/bitbucket support. #464, #579
- Require fish 3.0, use newer fish features, e.g., use `wait` to
implement concurrent downloads.
- Rely less on external tools. No awk, no sed, no basename/dirname.
Just mv, rm, cp, and mkdir.
- Deprecate `fishfile` in favor of `fish_plugins`. This new file
works like the old fishfile, but without comment support. See #524.
2020-11-04 10:50:10 +00:00
|
|
|
fisher update
|
breaking: implement fisher V3 (#445)
SUMMARY
This PR rewrites fisher from the ground up and adds new
documentation. It introduces some breaking changes as described
in the next section. For a historical background of this work
see the original V3 proposal #307 and the more recent discussion
about the future of the project #443.
After much debate and careful consideration I decided it is in
the best interest of the project to keep the CLI-based approach
to dependency management as a facade to the fishfile-based
approach originally proposed.
The new `add` commands (previously `install`) and good ol' `rm`
interactively update your fishfile and commit all your changes
in one sweep. To the end user, it's as if you were adding or
removing packages like you already do now. Internally, these
commands affect how the fishfile is parsed and result in adding
new or replacing/removing existing entries followed by a regular
`fisher` run.
INSTALLING
- `install` has been renamed to `add`
- Installing from a gist is no longer supported (but it will be
back in a future release—removed only to simplify the rewrite)
- To install a package from a tag or branch use an at symbol
`@`—the colon `:` is deprecated
LISTING
- `ls` and `rm` are still available with a few minor differences
- `ls` followed by a package name does not list specific package
information (may be added back in a future release)
- `ls` output format no longer displays a legend to indicate
whether a package is a theme or a local package; now it's a flat
dump of every installed package specifier
- For local packages the full path is shown instead
- I want to add a `--tree` option in to display packages in a
tree-like format in the future
- `ls-remote` has been removed as there is no longer a preferred
organization to look for packages— there is no plan to add it
back
UPDATING
- A new `self-update` command has been introduced to update
fisher itself
- fisher will be only updated when a new version is actually
available
- `update` has been removed
- Everything is installed from scratch everytime you add or
remove something, so there is no need to update specific
packages—you're always up-to-date
- To lock on a specific package version install from a
tag/branch, e.g., `mypkg/foobar@1.3.2`
UNINSTALLING
- `self-uninstall` works as usual
HELP & VERSION
- `help` only displays fisher usage help
- help is dumped to stdout instead of creating a man page on the
fly and piping it to your pager `version` works as usual
ENVIRONMENT
- `$fish_path` been renamed to `$fisher_path` to make it clear
that this is a fisher specific extension, not your shell's
ECOSYSTEM
- Oh My Fish! packages are still supported, albeit less
attention is paid to them
- Some packages that use Oh My Fish! specific environment
variables or events might not work
- Most of Oh My Fish! extensions are no longer necessary since
fish 2.3, therefore it should be a simple matter to upgrade them
to modern fish
DEPENDENCIES
- fisher can now run on fish 2.0
- It's a good idea to upgrade to at least fish 2.3 to use the
string builtin and configuration snippets, but there's no reason
for fisher to force you to use any fish version
- `curl` is required for fetching packages
- I am considering adding a fallback to `wget` if `curl` is not
available on your system
- `git` is optional
- V3 fetches packages directly from github, gitlab and
bitbucket, if you are using them
- git is only used (implementation still wip) if you want to
install a package from an unknown git host like your own git
server
2018-10-05 11:20:31 +00:00
|
|
|
end
|
2020-12-05 09:09:11 +00:00
|
|
|
echo "Upgrading to Fisher $fisher_version -- learn more at" (set_color --bold --underline)"https://git.io/fisher-4"(set_color normal)
|
2020-11-12 12:34:20 +00:00
|
|
|
_fisher_migrate >/dev/null 2>/dev/null
|
2020-12-07 16:04:11 +00:00
|
|
|
end
|
|
|
|
|
2020-12-07 18:04:42 +00:00
|
|
|
function _fisher_fish_postexec --on-event fish_postexec
|
|
|
|
if functions --query _fisher_list
|
|
|
|
fisher update >/dev/null 2>/dev/null
|
|
|
|
set --query XDG_DATA_HOME || set --local XDG_DATA_HOME ~/.local/share
|
|
|
|
test -e $XDG_DATA_HOME/fisher && rm -rf $XDG_DATA_HOME/fisher
|
|
|
|
functions --erase _fisher_list _fisher_plugin_parse
|
|
|
|
set --erase fisher_data
|
|
|
|
end
|
|
|
|
functions --erase _fisher_fish_postexec
|
2021-01-14 10:38:23 +00:00
|
|
|
end
|