2021-01-14 18:43:55 +00:00
|
|
|
function fisher --argument-names cmd --description "A plugin manager for Fish"
|
2020-12-05 20:49:00 +00:00
|
|
|
set --query fisher_path || set --local fisher_path $__fish_config_dir
|
2022-07-03 00:36:24 +00:00
|
|
|
set --local fisher_version 4.4.2
|
2020-12-05 20:49:00 +00:00
|
|
|
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"
|
2021-12-28 16:42:08 +00:00
|
|
|
echo "Variables:"
|
2022-06-17 20:02:53 +00:00
|
|
|
echo " \$fisher_path Plugin installation path. Default: $__fish_config_dir" | string replace --regex -- $HOME \~
|
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
|
2021-01-15 18:21:50 +00:00
|
|
|
|
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
|
|
|
|
|
2022-06-17 17:27:03 +00:00
|
|
|
test -e $fish_plugins && set --local file_plugins (string match --regex -- '^[^\s]+$' <$fish_plugins)
|
|
|
|
|
2021-01-14 11:51:27 +00:00
|
|
|
if ! set --query argv[2]
|
2021-01-14 11:58:35 +00:00
|
|
|
if test "$cmd" != update
|
2020-12-05 09:09:11 +00:00
|
|
|
echo "fisher: Not enough arguments for command: \"$cmd\"" >&2 && return 1
|
2022-06-17 17:27:03 +00:00
|
|
|
else if ! set --query file_plugins
|
2021-01-15 17:35:42 +00:00
|
|
|
echo "fisher: \"$fish_plugins\" file not found: \"$cmd\"" >&2 && return 1
|
2020-11-09 12:58:51 +00:00
|
|
|
end
|
2022-06-17 17:27:03 +00:00
|
|
|
set arg_plugins $file_plugins
|
2020-11-09 12:58:51 +00:00
|
|
|
end
|
2016-05-09 11:09:09 +00:00
|
|
|
|
2022-07-05 18:15:16 +00:00
|
|
|
for plugin in $arg_plugins
|
|
|
|
set plugin (test -e "$plugin" && realpath $plugin || string lower -- $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
|
2021-01-15 17:47:09 +00:00
|
|
|
test "$cmd" = remove &&
|
|
|
|
set --append remove_plugins $plugin ||
|
2020-12-05 20:49:00 +00:00
|
|
|
set --append update_plugins $plugin
|
2021-01-15 17:47:09 +00:00
|
|
|
else if test "$cmd" = install
|
2020-12-05 20:49:00 +00:00
|
|
|
set --append install_plugins $plugin
|
2021-01-15 17:47:09 +00:00
|
|
|
else
|
|
|
|
echo "fisher: Plugin not installed: \"$plugin\"" >&2 && return 1
|
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
|
2021-01-15 17:47:09 +00:00
|
|
|
contains -- "$plugin" $old_plugins &&
|
|
|
|
set --append update_plugins $plugin ||
|
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
|
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
|
2021-01-15 17:47:09 +00:00
|
|
|
contains -- "$plugin" $new_plugins || 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
|
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
|
2022-06-17 20:50:20 +00:00
|
|
|
set --local fish_path (status fish-path)
|
|
|
|
|
2021-01-17 16:14:33 +00:00
|
|
|
echo (set_color --bold)fisher $cmd version $fisher_version(set_color normal)
|
2020-11-09 12:58:51 +00:00
|
|
|
|
2022-06-17 20:43:54 +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
|
|
|
|
2022-07-03 00:35:31 +00:00
|
|
|
command mkdir -p $source/{completions,conf.d,themes,functions}
|
2020-11-06 17:03:18 +00:00
|
|
|
|
2022-05-26 03:32:04 +00:00
|
|
|
$fish_path --command "
|
2021-01-15 18:04:11 +00:00
|
|
|
if test -e $plugin
|
|
|
|
command cp -Rf $plugin/* $source
|
2020-11-09 12:58:51 +00:00
|
|
|
else
|
2021-01-15 18:04:11 +00:00
|
|
|
set temp (command mktemp -d)
|
2022-06-19 19:45:11 +00:00
|
|
|
set repo (string split -- \@ $plugin) || set repo[2] HEAD
|
|
|
|
|
|
|
|
if set path (string replace --regex -- '^(https://)?gitlab.com/' '' \$repo[1])
|
|
|
|
set name (string split -- / \$path)[-1]
|
|
|
|
set url https://gitlab.com/\$path/-/archive/\$repo[2]/\$name-\$repo[2].tar.gz
|
|
|
|
else
|
|
|
|
set url https://api.github.com/repos/\$repo[1]/tarball/\$repo[2]
|
2021-01-30 12:25:31 +00:00
|
|
|
end
|
|
|
|
|
2021-01-17 16:14:33 +00:00
|
|
|
echo Fetching (set_color --underline)\$url(set_color normal)
|
|
|
|
|
2022-06-19 19:45:11 +00:00
|
|
|
if curl --silent -L \$url | tar -xzC \$temp -f - 2>/dev/null
|
2021-01-15 18:04:11 +00:00
|
|
|
command cp -Rf \$temp/*/* $source
|
|
|
|
else
|
|
|
|
echo fisher: Invalid plugin name or host unavailable: \\\"$plugin\\\" >&2
|
|
|
|
command rm -rf $source
|
|
|
|
end
|
2022-06-19 19:45:11 +00:00
|
|
|
|
2021-01-15 18:04:11 +00:00
|
|
|
command rm -rf \$temp
|
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
|
|
|
|
2021-03-11 18:15:17 +00:00
|
|
|
set files $source/* && string match --quiet --regex -- .+\.fish\\\$ \$files
|
2021-01-15 18:04:11 +00:00
|
|
|
" &
|
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)
|
2021-01-14 16:03:18 +00:00
|
|
|
set --local plugin_files_var _fisher_(string escape --style=var -- $plugin)_files
|
2020-11-05 05:34:24 +00:00
|
|
|
|
2021-01-17 09:41:33 +00:00
|
|
|
if contains -- "$plugin" $remove_plugins
|
2021-01-14 16:03:18 +00:00
|
|
|
for name in (string replace --filter --regex -- '.+/conf\.d/([^/]+)\.fish$' '$1' $$plugin_files_var)
|
2021-01-14 15:07:55 +00:00
|
|
|
emit {$name}_uninstall
|
2020-11-09 12:58:51 +00:00
|
|
|
end
|
2022-07-02 18:56:06 +00:00
|
|
|
printf "%s\n" Removing\ (set_color red --bold)$plugin(set_color normal) " "$$plugin_files_var | string replace -- \~ ~
|
2022-06-17 17:27:03 +00:00
|
|
|
set --erase _fisher_plugins[$index]
|
2020-11-09 12:58:51 +00:00
|
|
|
end
|
2020-11-05 05:34:24 +00:00
|
|
|
|
2022-07-02 18:56:06 +00:00
|
|
|
command rm -rf (string replace -- \~ ~ $$plugin_files_var)
|
|
|
|
|
2021-01-14 16:03:18 +00:00
|
|
|
functions --erase (string replace --filter --regex -- '.+/functions/([^/]+)\.fish$' '$1' $$plugin_files_var)
|
2021-01-17 09:41:33 +00:00
|
|
|
|
2021-01-14 16:03:18 +00:00
|
|
|
for name in (string replace --filter --regex -- '.+/completions/([^/]+)\.fish$' '$1' $$plugin_files_var)
|
2021-01-16 03:32:52 +00:00
|
|
|
complete --erase --command $name
|
2021-01-14 15:07:55 +00:00
|
|
|
end
|
2021-01-17 09:41:33 +00:00
|
|
|
|
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]
|
2022-07-03 00:35:31 +00:00
|
|
|
command mkdir -p $fisher_path/{functions,themes,conf.d,completions}
|
2020-11-13 08:05:23 +00:00
|
|
|
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)]
|
2022-07-03 00:35:31 +00:00
|
|
|
set --local files $source/{functions,themes,conf.d,completions}/*
|
2020-11-06 18:34:55 +00:00
|
|
|
|
2021-01-15 06:25:59 +00:00
|
|
|
if set --local index (contains --index -- $plugin $install_plugins)
|
2022-07-03 00:35:31 +00:00
|
|
|
set --local user_files $fisher_path/{functions,themes,conf.d,completions}/*
|
2021-01-15 06:25:59 +00:00
|
|
|
set --local conflict_files
|
|
|
|
|
|
|
|
for file in (string replace -- $source/ $fisher_path/ $files)
|
|
|
|
contains -- $file $user_files && set --append conflict_files $file
|
|
|
|
end
|
|
|
|
|
|
|
|
if set --query conflict_files[1] && set --erase install_plugins[$index]
|
2021-01-17 12:33:48 +00:00
|
|
|
echo -s "fisher: Cannot install \"$plugin\": please remove or move conflicting files first:" \n" "$conflict_files >&2
|
2021-01-15 06:25:59 +00:00
|
|
|
continue
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
for file in (string replace -- $source/ "" $files)
|
2022-10-13 16:47:09 +00:00
|
|
|
command cp -RLf $source/$file $fisher_path/$file
|
2020-11-13 08:01:16 +00:00
|
|
|
end
|
2016-04-30 18:19:25 +00:00
|
|
|
|
2021-01-15 06:25:59 +00:00
|
|
|
set --local plugin_files_var _fisher_(string escape --style=var -- $plugin)_files
|
2022-07-02 18:56:06 +00:00
|
|
|
|
|
|
|
set --query files[1] && set --universal $plugin_files_var (string replace -- $source $fisher_path $files | string replace -- ~ \~)
|
2021-01-15 06:25:59 +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
|
2021-01-15 18:10:53 +00:00
|
|
|
|
2022-07-02 18:56:06 +00:00
|
|
|
printf "%s\n" Installing\ (set_color --bold)$plugin(set_color normal) " "$$plugin_files_var | string replace -- \~ ~
|
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
|
|
|
|
2022-07-02 18:56:06 +00:00
|
|
|
for file in (string match --regex -- '.+/[^/]+\.fish$' $$plugin_files_var | string replace -- \~ ~)
|
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
|
2021-01-14 16:03:18 +00:00
|
|
|
if set --local name (string replace --regex -- '.+conf\.d/([^/]+)\.fish$' '$1' $file)
|
2021-01-14 15:34:57 +00:00
|
|
|
emit {$name}_$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-11-05 05:24:34 +00:00
|
|
|
|
2022-06-17 01:57:33 +00:00
|
|
|
if set --query _fisher_plugins[1]
|
2022-06-17 17:27:03 +00:00
|
|
|
set --local commit_plugins
|
|
|
|
|
|
|
|
for plugin in $file_plugins
|
2022-07-03 00:05:47 +00:00
|
|
|
contains -- (string lower -- $plugin) (string lower -- $_fisher_plugins) && set --append commit_plugins $plugin
|
2022-06-17 17:27:03 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
for plugin in $_fisher_plugins
|
2022-07-03 00:05:47 +00:00
|
|
|
contains -- (string lower -- $plugin) (string lower -- $commit_plugins) || set --append commit_plugins $plugin
|
2022-06-17 17:27:03 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
printf "%s\n" $commit_plugins >$fish_plugins
|
2022-06-17 01:57:33 +00:00
|
|
|
else
|
|
|
|
set --erase _fisher_plugins
|
2021-01-14 10:38:23 +00:00
|
|
|
command rm -f $fish_plugins
|
2022-06-17 01:57:33 +00:00
|
|
|
end
|
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)
|
2022-07-03 00:05:47 +00:00
|
|
|
|
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-15 18:10:53 +00:00
|
|
|
echo "fisher: Unknown 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
|
|
|
|
2022-07-02 18:56:06 +00:00
|
|
|
if ! set --query _fisher_upgraded_to_4_4
|
|
|
|
set --universal _fisher_upgraded_to_4_4
|
2020-12-07 18:04:42 +00:00
|
|
|
if functions --query _fisher_list
|
2022-07-02 18:56:06 +00:00
|
|
|
set --query XDG_DATA_HOME[1] || set --local XDG_DATA_HOME ~/.local/share
|
|
|
|
command rm -rf $XDG_DATA_HOME/fisher
|
|
|
|
functions --erase _fisher_{list,plugin_parse}
|
2020-12-07 18:04:42 +00:00
|
|
|
fisher update >/dev/null 2>/dev/null
|
2022-07-02 18:56:06 +00:00
|
|
|
else
|
|
|
|
for var in (set --names | string match --entire --regex '^_fisher_.+_files$')
|
|
|
|
set $var (string replace -- ~ \~ $$var)
|
|
|
|
end
|
|
|
|
functions --erase _fisher_fish_postexec
|
2020-12-07 18:04:42 +00:00
|
|
|
end
|
2021-01-14 10:38:23 +00:00
|
|
|
end
|