Skip to content

Instantly share code, notes, and snippets.

View kris3713's full-sized avatar
💭
I may be slow to respond.

Kris kris3713

💭
I may be slow to respond.
  • Alberta, Canada
View GitHub Profile
@3v1n0
3v1n0 / fish-shell-bash-complete-function.sh
Last active May 10, 2025 13:06
Use bash completions in Fish Shell
#!/usr/bin/fish
# You can add this to your ~/.config/fish/config.fish
function __fish_complete_bash
set cmd (commandline -cp)
bash -c "source get-bash-completions.sh; get_completions '$cmd'"
end
# Set the tool to use bash completions