hekevintran
hekevintran

Reputation: 23722

"Go to file" feature in various editors

In TextMate there is a feature called "Go to file" that is used for file navigation. It is a box where you type the name of a file in your project and it will use fuzzy matching to generate a list of candidate files from which you can select.

Other editors have this feature, but they each give it a different name:

Vim fuzzyfinder
Emacs fuzzy-find-in-project
TextMate Go to file (fuzzy)
Eclipse OpenResource (not fuzzy)
Eclipse GotoFile (fuzzy)
Komodo Go to File (not fuzzy)
Netbeans Go to file (not fuzzy)

Does jEdit, Geany, or Ultraedit have this feature?

Upvotes: 5

Views: 1159

Answers (4)

zbstof
zbstof

Reputation: 1062

I just thought I'd comment that, in Eclipse, you can get "near-fuzzy" search using wildcard character *.

For example *f*i*l*e will find all resources which contain characters f,i,l,e in this order in any place in the name of the resource.

This works with Ctrl+Shift+R (search for resources) as well as for Ctrl+E (search in open tabs) and others too, I suspect.

Upvotes: 1

Rockiger
Rockiger

Reputation: 422

Gedit has this feature with the snapopen plugin. You find it on http://live.gnome.org/Gedit/Plugins

Or you can use the Gmate-Plugins for gedit: https://github.com/gmate/gmate It is basicly gedit on steroids.

Upvotes: 1

Hodza
Hodza

Reputation: 3188

I didn't found anything similar for Geany and wrote small prototype it works but has some bugs. github.com/hodzanassredin/geany-fuzzy-goto-file-plugin

Upvotes: 0

Nowaker
Nowaker

Reputation: 12401

I came across Fuzzy Open for gedit and it works for me.

Give it a try: https://github.com/eggegg/fuzzyopen

Upvotes: 0

Related Questions