Page 1 of 1

Notepad++ plugin - LinefilterPosted: Mon Apr 01, 2013 7:27 p

Posted: Tue Apr 02, 2013 6:38 pm
by Heinz123
Hello,

I have developed a plugin for Notepad++ using PB

The plugin allows you to filter a text for a search string and as result only lines containing the search string will be displayed.

I'd be interested in opinions about the plugin...bugs..problems..feature ideas

So if someone is interested you can download the plugin here:
https://dl.dropbox.com/u/109029325/LineFilter2.dll

Just copy it to your Notepad++ plugin folder and you should have an extension "Linefilter2"

Heinz

Re: Notepad++ plugin - LinefilterPosted: Mon Apr 01, 2013 7:

Posted: Wed Apr 03, 2013 11:41 am
by aaaaaaaargh
Great!, just what I needed! :D
An option to limit the search to a column range would be nice.

Re: Notepad++ plugin - LinefilterPosted: Mon Apr 01, 2013 7:

Posted: Wed Apr 03, 2013 3:35 pm
by Heinz123
Just today I have add RegEx support, so maybe you could use a Regual expression to filter columns

For example if you have this data:
111 222 333
111 222 333
222 111 333
111 333 222
bal bal bla
xxxxxxxxxxxx

If there are 4 spaces between the columns then the following RegEx will find only the "222" in the 2.column:
....222....
(The . stands for single character)

There may be better RegEx patterns for this purpose - you can google for it.

https://dl.dropbox.com/u/109029325/LineFilter2.dll

Heinz

PS:
The plugin is still "beta" so it probably needs some more testing..but I hope that is works for you :-)

Re: Notepad++ plugin - LinefilterPosted: Mon Apr 01, 2013 7:

Posted: Wed Apr 03, 2013 4:12 pm
by Tenaja
Seems to be a bug with a split screen. When I have the cursor on the right pane and search, a new file is opened in the right pane, but the search data is pasted into the front file on the left pane (altering an unrelated file).

Re: Notepad++ plugin - LinefilterPosted: Mon Apr 01, 2013 7:

Posted: Wed Apr 03, 2013 4:35 pm
by Heinz123
Tenaja wrote:Seems to be a bug with a split screen.
thank you for the information.
I will try to fix it