cdc icon indicating copy to clipboard operation
cdc copied to clipboard

Allow hidden directories to be found

Open evanthegrayt opened this issue 5 years ago • 0 comments

We need a configuration variable to and runtime options to find repositories that start with a dot. NOTE that cdc .whatever will always work, it's just that they currently don't show up in tab-completion.

Line 570

for fulldir in "$dir"/*/; do

Should become something like


if $ALLOW_DOTFILES; then
  dirlist = {,.}$dir/*/
else
  dirlist = "$dir"/*/
fi

for fulldir in "$dirlist"; do

evanthegrayt avatar Oct 26 '20 21:10 evanthegrayt