"Go To File" Feature/Plugin for Notepad++

25

7

Is there a way to get the Go to file... functionality from Textmate in Notepad++?

For example, if I press Ctrl-T, a dialog box comes up, type in (partial) string and it filters through the files in the project.

Or is there a Project Manager plugin that includes this feature?

Alex Heyd

Posted 2011-07-13T16:26:33.933

Reputation: 411

I found what I was looking for, there's a plugin called Open File in Solution, but it takes a little bit of tweaking to get working properly – Alex Heyd – 2011-07-13T17:23:29.470

Answers

6

The plugin that I found that has this feature is called Open File in Solution

Here's a link to download the plugin and documentation: http://npp.incrediblejunior.com/

Using the Notepad++ Plugin Manager, you can download the plugin directly from there (and it'll download the dependencies: SolutionHub and SolutionHub UI)

Before you can use the plugin however, you need to do some setup in SolutionHub UI which is detailed at the link above.

Then you can create a new Shortcut mapping to bind the plugin to a key.

I've been using it for the past few hours, it's really fast. Happy I found this.

Alex Heyd

Posted 2011-07-13T16:26:33.933

Reputation: 411

20

Try File Switcher plugin for Notepad++, you can download it directly from the Plugin manager. Just press Ctrl+Shift+O then search your file name.

amir farah

Posted 2011-07-13T16:26:33.933

Reputation: 201

1

I just wrote a simple plugin for Notepad++ in Delphi 7 for this purpose, because I was disappointed by the ones that already exists. I think you will find it useful.

I named it "Open File In Folders". It's latest version is 1.02. Here is a screenshot of the main window of the plugin:

NPP plugins menu screenshot

You can get it from GitHub here: https://github.com/meboev/NppOpenFileInFolders

Installation

If you do not want to compile it, just download the OpenFileInFolders.dll and place it in your C:\Program Files (x86)\Notepad++\plugins folder. Then restart Notepad++.

Features

  • Saves its configuration into the Window Registry
  • The selected text from NPP is automatically populated into the search field. You can use it for quickly finding imports, requires, etc...
  • You can select multiple folders to search from. Useful if your project is in multiple drives (c:, d:)
  • You can exclude case insensitively strings, pipe delimited (\node_modules\|.git) from the results
  • You can see/copy the full path of all the files you are searching into.
  • You can limit the results to a predefined values, to speed up the search for big projects
  • You can open the results directly inside a Windows Explorer window

Milen Boev

Posted 2011-07-13T16:26:33.933

Reputation: 111

0

I found "Navigate To" plugin from plugin manager and it's working perfect for this need. Hope this helps to someone.

Vishal Zanzrukia

Posted 2011-07-13T16:26:33.933

Reputation: 101