yuan
yuan

Reputation: 2120

How do I exactly search a file in my project with atom?

I know I have a file called 'mwc-fab' in my dependency, so How can I search this file with the file name?

In vscode, i just type mwc with my node_modules file select and I get the file I want.

Upvotes: 5

Views: 4184

Answers (2)

Natsfan
Natsfan

Reputation: 4802

There is an Atom package named incremental search that you can use to search thru open files. After installing incremental-search you can type command-i and this opens a text box near bottom of screen where you can input your search string. After that you can command-i repeatedly to go to next matching string. Be sure to read the directions for more useful commands.

Upvotes: 0

SafeDev
SafeDev

Reputation: 672

If you're using a Windows computer the command is Ctrl+T or Ctrl+P and on Mac Cmd+T or Cmd+P https://flight-manual.atom.io/getting-started/sections/atom-basics/

Upvotes: 9

Related Questions