mirror of
https://github.com/QuantumPackage/qp2.git
synced 2024-12-21 11:03:29 +01:00
Fixed previous commit
This commit is contained in:
parent
3c89e9d88d
commit
0aed20f53a
@ -189,18 +189,17 @@ _qp_Complete()
|
||||
esac;;
|
||||
set_file)
|
||||
# Array to store directory names
|
||||
dirs=()
|
||||
dirs=""
|
||||
|
||||
# Find directories containing "ezfio/.version" file recursively
|
||||
for i in $(find . -name ezfio | sed 's/ezfio$/.version/')
|
||||
do
|
||||
dir_name=${i%/.version} # Remove the ".version" suffix
|
||||
dir_name=${dir_name#./} # Remove the leading "./" if present
|
||||
dirs+=("$dir_name")
|
||||
dir_name=${dir_name#./} # Remove the leading "./"
|
||||
dirs+="./$dir_name "
|
||||
done
|
||||
|
||||
# Output the directory names for completion
|
||||
COMPREPLY=("${dirs[@]/#/.\/}") # Prefix each directory name with "./"
|
||||
COMPREPLY=( $(compgen -W "$dirs" -- ${cur} ) )
|
||||
return 0
|
||||
;;
|
||||
plugins)
|
||||
|
Loading…
Reference in New Issue
Block a user