mirror of
https://github.com/jorgebucaran/fisher
synced 2024-11-09 07:10:27 +00:00
7de51e7436
Remove scripts directory in favor of using the functions/ or root for sharing scripts. Using a scripts directory does not solve the main problem of sharing scripts with the same name, so this addition was deemed of little value. In the future, a more robust way to avoid name collisions when sharing scripts would be nice to have, but at the moment having a scripts directory is not solving this problem but just adding clutter to the configuration. Closes #105.
33 lines
969 B
Plaintext
33 lines
969 B
Plaintext
--source conf.d/foobar.before.init.fish
|
|
--source conf.d/foobar.config.fish
|
|
--source functions/fish_greeting.fish fish_greeting
|
|
--source functions/fish_prompt.fish fish_prompt
|
|
--source functions/fish_right_prompt.fish fish_right_prompt
|
|
--source functions/fish_title.fish fish_title
|
|
--bind
|
|
--source functions/foobar.fish foobar
|
|
--source conf.d/foobar.init.fish
|
|
--uninstall
|
|
--source conf.d/foobar.conf.fish
|
|
--source conf.d/foobar.mod.fish
|
|
--source functions/foobar-baz.fish foobar-baz
|
|
--source functions/__foobar.fish __foobar
|
|
--source conf.d/foobar.load.fish
|
|
--source completions/foobar.fish
|
|
-- functions/foobar.py
|
|
-- functions/foobar.rb
|
|
-- functions/foobar.php
|
|
-- functions/foobar.pl
|
|
-- functions/foobar.awk
|
|
-- functions/foobar.sed
|
|
-- functions/quux.awk
|
|
--man man/man1/foobar.1
|
|
--man man/man2/foobar.2
|
|
--man man/man3/foobar.3
|
|
--man man/man4/foobar.4
|
|
--man man/man5/foobar.5
|
|
--man man/man6/foobar.6
|
|
--man man/man7/foobar.7
|
|
--man man/man8/foobar.8
|
|
--man man/man9/foobar.9
|