Move bash config to shell subdir

This commit is contained in:
2025-11-13 13:52:25 -05:00
parent 60d5d88e96
commit 7ef57ef155
16 changed files with 9 additions and 9 deletions

View File

@@ -0,0 +1,6 @@
function _dev_completion() {
local cur=${COMP_WORDS[COMP_CWORD]};
COMPREPLY=( $(compgen -W "$(command ls $PROJECTS_PATH)" -- $cur) );
}
complete -F _dev_completion dev
complete -F _dev_completion gg