Commit Graph

875 Commits (main)
 

Author SHA1 Message Date
Jorge Bucaran 2d6b6a1926
feature: don't add invalid packages to fishfile; fix #484 6 years ago
Rodrigo Bermúdez Schettino b47c0469db README: Update function option in conf.d (#497)
Replace non-existing --event argument with --on-event.
6 years ago
Tetsuya Ikenaga 60a34e50b4 docs: fix custom fisher_path configuration instructions (#495)
Avoid doubling `fish_function_path` and `fish_complete_path`.
6 years ago
Jorge Bucaran a8d7fb7830
docs: improve custom installation prefix instructions; fix #487 6 years ago
Jeremy 9458258f81
docs: Link to awesome-fish-shell list
As mentioned in https://github.com/jorgebucaran/fisher/issues/461#issuecomment-427638774, a link to the awesome-fish-shell list will help people find packages.
6 years ago
Jorge Bucaran 40d2882420
docs: improve writing style 6 years ago
Jorge Bucaran e9925f4a96
3.1.1 6 years ago
Jorge Bucaran 152bdc43a0
docs: improve writing style 6 years ago
Jorge Bucaran d653e0e0e9
refactor: improve readability / indentation 6 years ago
Jorge Bucaran 71974a2527
feat: show error if package being removed is not found; close #478 6 years ago
Jorge Bucaran 2be2ea6109
refactor: rename seen→seen_pkgs 6 years ago
Jorge Bucaran aff893c05b
refactor: change regex to remove everything before a ***github.com/foo/bar 6 years ago
Jorge Bucaran b4c4023e16
docs: add additional note to "Using the fishfile" section 6 years ago
Jorge Bucaran 984e245bec
docs: improve "Using the fishfile" section 6 years ago
Jorge Bucaran 7dff47a3f9
docs: improve writing style 6 years ago
Jorge Bucaran ddf7334854
3.1.0 6 years ago
Jorge Bucaran f09cefdc5c
doc: fix legacy fish instructions; improve punctuation & grammar 6 years ago
Jorge Bucaran c9974efc12
feat: add user key bindings autoloading for legacy fish
Packages add key bindings via configuration snippets. As it turns out,
configuration snippets are not available  in legacy fish and only fish
3.0 or newer can use the bind builtin on shell startup.

To support  packages that add key  bindings in legacy fish,  we make a
copy  of  the  user's  fish_user_key_bindings function  (if  there  it
exists)  and create  a new  one that  when called,  will source  every
*_key_bindings.fish  inside \$fisher_path/conf.d  and finally  run our
copy of the  user's fish_user_key_bindings, if it  exists, to preserve
any user defined key bindings.

To be able to  run code on shell startup we  create a fisher.fish file
inside \$fisher_path/conf.d if running an  older version of fish. When
the user  upgrades to  a supported  fish version,  we'll automatically
remove this file.
6 years ago
Jorge Bucaran b0c5a6598c
doc: improve various sections 6 years ago
Jorge Bucaran 207ccf00b6
refactor: add more info to help command
Command line usage help now tells you that running fisher will
update installed packages. Running fisher also commits fishfile
changes, but I couldn't fit all the words on the same line.
6 years ago
Jorge Bucaran 76bb67b9c6
fix: use command 6 years ago
Jorge Bucaran 24e9154688
refactor: function, var names & spacing
- _fisher_fishfile_load→_fisher_fishfile_read
6 years ago
Jorge Bucaran 77fc030c03
feat: copy files from sub directories; close #468
Supporting nested directories is an anti-feature. It exists only
so that we can install certain packages that are structured that
way. All functions will share the same scope and location.
6 years ago
Jorge Bucaran e4629b9186
ci: turn off email notifications 6 years ago
Jorge Bucaran 8d3e4d367e
fix: normalize package id in fishfile format script 6 years ago
Jorge Bucaran 45e556ab18
3.0.9 6 years ago
Jorge Bucaran 4d953fa72e
feat: custom hosted packages via ssh+git; fix #464
Use git to install packages hosted in a custom server
via ssh using a URL like: owner@host.xz:path/to/repo
6 years ago
Jorge Bucaran da792f6887
style: improve package fetch error message 6 years ago
Jorge Bucaran 44ec48b472
refactor: use `id` to refer to package name specifier, not `name` 6 years ago
Jorge Bucaran 993b471777
refactor: improve readability of status report generator 6 years ago
Jorge Bucaran 32dbf148bb
refactor: improve fishfile formatter normalize regex 6 years ago
Jorge Bucaran 55b543eb13
fix: display correct time on Linux; close #463 6 years ago
Joe George 28aaa277e0 fix: don't strip github.com from local paths; fix #472 6 years ago
Michiel Scholten 1d82bee9c2 fix: replace ln with cp; don't hardlink; close #470 6 years ago
Jorge Bucaran 56e45ef18f
doc: mention packages can be installed from a commit-ish 6 years ago
Jorge Bucaran 206ecf7293
doc: make migration guide more noticeable; #450 6 years ago
Jorge Bucaran 68e4ee631f
3.0.8 6 years ago
Jorge Bucaran 23379887c0
refactor: simplify builtin jobs parse script 6 years ago
Jorge Bucaran 2e933cad31
fix: use $__fish_data_dir if available 6 years ago
Jorge Bucaran 203e9d4d69
refactor: remove magic number 6 years ago
Jorge Bucaran 0898825301
3.0.7 6 years ago
Jorge Bucaran f75de3aa87
fix: don't create new fishfile (except the first time); fix #460 6 years ago
Jorge Bucaran 4e7c9e000b
fix: don't expect https:// to start lines in fishfile 6 years ago
Jorge Bucaran 2549ac1f4b
fix: make trailing / optional in \$fisher_config; close #462
$fisher_config/foo/bar  → foo/bar
{$fisher_config}foo/bar → foo/bar
$fisher_config//foo/bar → foo/bar
6 years ago
Jorge Bucaran c7765222e5
refactor: use basename to remove path refix more reliably; fix #462 6 years ago
Jorge Bucaran 226c0d946f
style: remove html comment; don't use fish code block 6 years ago
Jorge Bucaran 785fa47870
3.0.6 6 years ago
Jorge Bucaran 73505e74cb
fix: use real target if fishfile is a symbolic link; close #460 6 years ago
Jorge Bucaran 2a6c36b8a9
fix: use string check to determine if filename is a fish file; fix #459
Bug was introduced in 7850f78e8a.

When removing a file don't use `functions -q $filename` as a loose
check for a .fish file. Use a string match instead.

`functions -q $filename` will cause the function defined in the file
to be autoloaded (if it wasn't already) which can cause trouble with
some "dubious" packages that run arbitrary code in function files.
6 years ago
Jorge Bucaran 60d3c4c9c3
3.0.5 6 years ago