Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I incremental search in Atom Editor?

Tags:

atom-editor

How can I do an incremental search (similar to Sublime Text's Cmd-F or Cmd-I) in GitHub's Atom Editor?

like image 842
John Sheehan Avatar asked Mar 05 '14 23:03

John Sheehan


2 Answers

find-and-replace is one of the core Atom packages. You can enable incremental search by updating the settings for this package. Check the option "Scroll To Result On Live-Search" and optionally change the Live Search Minimum Characters (defaults to 3).

like image 81
MatthewG Avatar answered Sep 26 '22 14:09

MatthewG


There's an incremental search package available now: https://atom.io/packages/incremental-search

It seems to be modeled after incremental search in Emacs.

like image 24
nwinkler Avatar answered Sep 24 '22 14:09

nwinkler