Tomasz Szymanek
Tomasz Szymanek

Reputation: 499

Atom won't search (ctrl-p) files, that aren't in current git repo (grey folders)

Atom won't search (ctrl-p) files, that aren't in current git repo (grey folders). I really need that function, and files that i have to look up (framwework files) are in grey folders, where ctrl-p (file search) doesn't reach.

Upvotes: 6

Views: 2847

Answers (2)

Aloha
Aloha

Reputation: 425

You can choose Find - Find File from menu of Atom to search files.

Upvotes: -1

nwinkler
nwinkler

Reputation: 54467

The Fuzzy Finder ignores files that are ignored by your VCS (Git in your case) by default.

You can change that behavior by removing the check on the "Exclude VCS Ignored Paths" checkbox in the general settings:

enter image description here

Upvotes: 14

Related Questions