mirror of
https://github.com/kristoferssolo/solorice.git
synced 2026-02-04 06:32:03 +00:00
Update 2025-05-31
Update 2025-05-06 Update 2025-05-09 Update 2025-05-11 Update 2025-05-13 Update 2025-05-18 Update 2025-05-19 Update 2025-05-24 Update 2025-05-27 Update 2025-05-29 Update 2025-05-31
This commit is contained in:
17
config/fish/completions/fastanime.fish
Normal file
17
config/fish/completions/fastanime.fish
Normal file
@@ -0,0 +1,17 @@
|
||||
function _fastanime_completion;
|
||||
set -l response (env _FASTANIME_COMPLETE=fish_complete COMP_WORDS=(commandline -cp) COMP_CWORD=(commandline -t) fastanime);
|
||||
|
||||
for completion in $response;
|
||||
set -l metadata (string split "," $completion);
|
||||
|
||||
if test $metadata[1] = "dir";
|
||||
__fish_complete_directories $metadata[2];
|
||||
else if test $metadata[1] = "file";
|
||||
__fish_complete_path $metadata[2];
|
||||
else if test $metadata[1] = "plain";
|
||||
echo $metadata[2];
|
||||
end;
|
||||
end;
|
||||
end;
|
||||
|
||||
complete --no-files --command fastanime --arguments "(_fastanime_completion)";
|
||||
1
config/fish/completions/fzf.fish
Normal file
1
config/fish/completions/fzf.fish
Normal file
@@ -0,0 +1 @@
|
||||
fzf --fish | source
|
||||
1
config/fish/completions/uv.fish
Normal file
1
config/fish/completions/uv.fish
Normal file
@@ -0,0 +1 @@
|
||||
uv generate-shell-completion fish | source
|
||||
1
config/fish/completions/uvx.fish
Normal file
1
config/fish/completions/uvx.fish
Normal file
@@ -0,0 +1 @@
|
||||
uvx --generate-shell-completion fish | source
|
||||
1
config/fish/completions/zoxide.fish
Normal file
1
config/fish/completions/zoxide.fish
Normal file
@@ -0,0 +1 @@
|
||||
zoxide init fish | source
|
||||
Reference in New Issue
Block a user