Skip to content

Allow hidden directories to be found #52

@evanthegrayt

Description

@evanthegrayt

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    enhancementNew feature or request

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions