I have such a file structure
/foo/bar/ ├── .foo.cfg ├── foo.cfg ├── foo.data ├── foo.py ├── .svn │ ├── ... │ ├── ... │ └── ... ├── . └── ..
I want to open all hidden and not hidden files in vim. I could do it manually so
vi .foo.cfg foo.cfg foo.data foo.py
but this does not work when there are 100+ files. I also tried the following without success
#hidden files not loaded vi *
source share