notepad++

Notepad++ regex to find 3 consecutive numbers

I'm trying to use Notepadd++ to find all occurrences of width=xxx so I can change them to width="xxx" as far as I have got is width=[^\n] which only selects width=x ...

file tree view notepad++

Hi, I was wondering how to make file tree view on notepad++ where i could select file by clicking it like the other editors have? Thanks. ...

Writing a plugin for Notepad++

I use Notepad++ as my main editing tool. I want to write a plugin for it for a feature I'd like to implement, but am unsure of how to go about it. Are there any guides / blogs / tutorials that can point me in the right direction for creating a new plugin? ...

notepad++ plugin, C++ API

i am developing a notepad ++ plugin, am using a propertysheet with tabs as my dialog so far i have managed to show the dialog however when i move the dialog notepad freezes i.e. it stops responding, even the plugin stops responding you can get the source-code here (https://sourceforge.net/projects/notepadpluging/files/npp%20tab%20plug...

How to edit preference file for Notepad++?

My open source project uses spaces, not tabs, in its code. A contributor to the project has his own website which uses tabs, not spaces. He uses Notepad++ in Windows to edit files for both projects, and is frustrated when he forgets to manually set the Preferences correctly and thus inserts tabs into my project's files. Is there a way...

php debuggers which are not bloated

any suggestions for good php debuggers, which are not bloated? i tried using xdebug with dbgp plugin on notepad++, but it seems the dbgp plugin isn't compatible with notepad++ and hence, didn't work out crashing the app every time i accessed the debugger. any other suggestions? ...

Notepad++ premade template

Hi, I have seen in videos, that people get html template by typing "html:5" or something like that (btw, they're not using notepad++). Is this possible in notepad++? Thanks. ...

Notepad++ TextFX to escape a regular string for regular expression

In Notepad++ TextFX, is there a feature that can escape all reserved characters in a given string? Thanks. ...

Unable to edit and save a file on remote machine using notepad++

I am using Notepad++ 5.3.1. I want to edit and save files on a remote machine(both are running on windows xp). I have granted the access privileges and security permissions in the folder containing the files. When I try to save any of these files after editing in Notepad ++, I get the following error. 'Please check whether if this fil...

Notepad++ like "multi editing" in VIM?

I'm switching from Notepad++ to VIM as main text editor. Notepad++ can have multiple cursors by holding down ctrl and clicking anywhere in the text, so if you type, the text appears in multiple locations. Is it possible in vim? Something like insert after selecting multiple rows in visual mode, but with the possibility to have cursors ...

Haskell Console IO in notepad++

I've recently started to learn Haskell. I have this code module Main where import IO main = do hSetBuffering stdin LineBuffering putStrLn "Please enter your name: " name <- getLine putStrLn ("Hello, " ++ name ++ ", how are you?") I'm using the GHC compiler together with the notep...

Notepad++ Move Caret Outside Bracket

I've searched everywhere and can't find an answer to something incredibly simple and useful for Notepad++. When using autoclose, the cursor gets stuck inside, which is good until I've finished typing the parameters. How do I get the caret to jump outside of the currently nested autoclosed element? Regardless of it being (), {}, [], "", ...

Question about software that tracks divs better than notepad++

I recently got hired as a web developer, and the project that I am overseeing has a formatting issue on one of the pages because one of the divs is out of whack. It is a fairly complex page with quite a bit of php, and from what I can gather, I am missing a </div> tag somewhere, and accordingly everything is messed up. I am currently us...

Making gVim behave like Notepad++ in terms of HTML syntax highlighting

In Notepad++ when you work with HTML, when you move the cursor onto a tag it automatically highlights that tag and its opening/closing corresponding tag. That is really useful when you have lots of div inside each other. How do you turn this on in gVim? ...

Can I use notepad++ exe in my application ?

I am parsing html file with the help of the html agility pack to extract the table data from the html file. But there is some html files where there is no ending tags which is optional or there is no starting tag which is also optional.So html agility pack does not parse that html page properly.If I open the content of that html file in ...

EOL in Notepad++ and Notepad

I'm using Notepad++ to create some text file, but I noticed when the generated file is opened in Windows Notepad, the file contents get mal-formated due to the fact that Notepad++ use LF and EOL character, while Notepad expects CR + LF. Is there any way to change this behavior in Notepad++?? ...

Php alternative syntax highlighting in Notepad++

Is there any way to get tags and the if / endif stuff to highlight like the braces? Search brings me no help. ...

notepad++ regular expression

Hi Guys, I need your help. I have two lines like below: /pace =builtin\administrators Type=0x0 Flags=0x13 AccessMask=0x1f01ff /pace =domain\user Type=0x0 Flags=0x13 AccessMask=0x1f01ff Need to create a regular expression where it only select "0x1f01ff" where the line have "domain\user". This is what I have created but it select "/p...

Regex to add CDATA for mal formed XML

Hey guys! I have this huge xml file (13 mb) and it has some malformed values. Here is a sample of the xml: <propertylist> <adprop index="0" proptype="type" value="Ft"/> <adprop index="0" proptype="category" value="Bs"/> <adprop index="0" proptype="subcategory" value="Bsm"/> <adprop index="0" proptype="de...

Regex for zeroing in on build output text error

I'd like to quickly hone in on what failed in a build log output that is nearly 5k lines long, using Notepad++ as my editor for the file. Notepad++ has the nice ability to specify regular expressions, so I am wondering if there is a way to not match: Compile complete -- 0 errors, 0 warnings but to match, for example: Compile complete...