Tagged Questions

Notepad++ is a free and open source text editor for Windows. It is designed as a replacement for the built-in Notepad application.

learn more… | top users | synonyms

146
votes
11answers
77k views

Notepad++ tabs to spaces

Does anyone know how to convert tabs to spaces in Notepad++? I found a webpage that suggests it's possible (http://www.texteditors.info/notepad-replacements-compared.php) but I couldn't find any ...
70
votes
3answers
2k views

Can vim highlight matching HTML tags like Notepad++?

VIM has support for matching pairs of curly brackets, parentheses, and square brackets. This is great for editing C-style languages like PHP and Javascript. But what about matching HTML tags? ...
44
votes
10answers
85k views

Find CRLF in Notepad++

How can I find/replace all CRLF characters in notepad++? Looking for something equivalent to the ^p special character in Word.
43
votes
14answers
14k views

Is there an extension to reindent JSON in Notepad++?

I need Notepad++ to take a json string from this {"menu": {"id": "file","value": "File","popup": {"menuitem": [{"value": "New", "onclick": "CreateNewDoc()"},{"value": "Open", "onclick": ...
30
votes
6answers
91k views

Auto-Indent in Notepad++

We always write code like this formal: void main(){ if(){ if() } but when I use notepad++,the display is : void main(){ if(){ if() } How to use the notepad++ ...
25
votes
10answers
15k views

How to select columns in editors and IDEs ( Notepad++ , Kate , VIM , Netbeans , Eclipse, Textpad ,other editors )

How to select columns in Notepad++ , Kate , VIM , Netbeans , Eclipse, Textpad, ...? for delete or insert or replace some characters.
25
votes
4answers
21k views

can Notepad++ open up a file and folder browse panel?

i like Notepad++ because it is quick to start up, can support many languages, and it can even match a <div> with the </div> so that you can check when a <div> is matching the correct closing ...
23
votes
3answers
5k views

How do I use Notepad++ (or other) with msysgit?

How do I use Notepad++ (or any other editor besides vim) with msysgit? I tried all of the following to no avail: git config --global core.editor C:\Program Files\Notepad++\notepad++.exe git config ...
22
votes
3answers
22k views

formatting code within notepad++?

Is there a keyboard shortcut to format code within Notepad++ ? I'm mainly working with HTML, CSS and Python code. For example: <title>{% block title %} {% endblock %}</title> ...
21
votes
3answers
20k views

How can I enable auto complete support in Notepad++?

I am trying to add simple syntax highlighting and auto completion for a simple scripting language... I added syntax highlighting using this article Now I want to know how to enable auto completion ...
20
votes
3answers
17k views

Notepad++ removing duplicate rows [closed]

Is there any possibility to remove duplicated rows in Notepad++ to leave only single line occurrence?
18
votes
2answers
8k views

Using JSLint in Notepad++

I have seen other text editors use extensions to allow syntax checkers such as JSLint, is this possible with Notepad++?
18
votes
7answers
27k views

Notepad++ HTML Tidy

Is HTML Tidy for Notepad++ broken? None of the commands except Tidy (the first one) work. They don't show any message, even with all text selected. I really need Tidy to work, or is it just a ...
18
votes
3answers
19k views

Using RegEX To Prefix And Append In Notepad++

I have quite a large list of words in a txt file and I'm trying to do a regex find and replace in Notepad++. I need to add a string before each line and after each line.. So that: wordone wordtwo ...
17
votes
4answers
25k views

How to delete specific lines on notepad++?

I'm cleaning up some code files (c#) and want to remove the regions. And what I would like to do is delete all the lines that have the string '#region'. That's just an example, I can think of several ...
15
votes
5answers
7k views

Any Notepad++ plugins to automatically save document versions

Does anyone know of any notepad++ plugin that saves a version of whatever I'm working on periodically? Ideally, it would save many versions with the automatic version number and the date in the title, ...
14
votes
4answers
5k views

copy notepad++ text with formatting?

I'm using notepad++ to write code.. How do I copy code in notepad++ along with its formatting to paste into word? (ie syntax highlights etc) Thanks
14
votes
3answers
9k views

Commenting code in Notepad++

I'm using Notepad++ as an editor to write programs in Python. It might sound daft but I looked around in the editor and could not find any means (not the manual way but something like in Emacs) to do ...
14
votes
9answers
5k views

Emacs, highlight all occurences of a word

In Notepad++ editor, there's a convenient feature: if you select a word in your text (not necessarily a keyword), the word is highlighted throughout the text. Is there any similar way in Emacs? Not ...
13
votes
3answers
611 views

Does vim have this Notepad++ feature?

In Notepad++, there is a dotted line that runs down from the function keyword through the end of the method. It looks like this: Can vim reproduce something similar?
11
votes
1answer
4k views

I want to open new Notepad++ with new window [closed]

After I execute Notepad++, every time I re-execute Notepad++, the existing one is opened. I want to open a new Notepad++ window, like Windows Notepad. I mean I want two Notepad++ windows. How can I ...
11
votes
5answers
3k views

Extend Notepad++

As I use Notepad++ daily at work, I want to extend it to be more productive. What i want to do is select multiple lines containing words, right click and click a menu item like "Comma separate" then ...
11
votes
3answers
10k views

Does notepad++ show all hidden characters?

In notepad++ I have set "replace tab with 2 spaces". When coding in python I copy-pasted some code from the web and it appeared indented correctly. But running the code resulted in indentation ...
10
votes
5answers
10k views

Finding Line Beginning using Regular expression in Notepad++

Finding Line Beginning using Regular expression in Notepad++ (Sorry if this is a newbie question) I want to strip a 4000-line HTML file from all the jQuery "done" stuff, e.g.: <DIV class=menu ...
10
votes
2answers
766 views

Does anyone know how to make notepad++ treat csproj files as XML automatically?

I often use notepad++ for editing of the csproj files. And I always need to go to the Language menu and select XML in order to get syntax highlighting. Is it possible to configure notepad++ to treat ...
10
votes
3answers
6k views

How do you use Notepad++ regex pipe | for strings longer than one character?

I'm trying to get notepad++ to regex find all instances of "abc" and "def" in the following sentence: The abc went to the def. None of the following syntaxes seem to work: abc|def [abc|def] ...
10
votes
9answers
13k views

Komodo Edit and Notepad++ ::: Pros & Cons ::: Python dev [closed]

I'm using Notepad++ for python development, and few days ago I found out about free Komodo Edit. I need Pros and Cons for Python development between this two editors...
10
votes
8answers
4k views

Streaming log(txt) viewer

Anybody in the know of a viewer (or Notepad++ plugin) that can read txt files in a streaming way? I would like to see for example the last 10 lines of a txt file that gets appended continiously.
9
votes
1answer
350 views

notepad++ run selected code in python console seamlessly

I often use R to analyze data, and really enjoy Notepad++ along with NppToR. Especially, NppToR enables to run a part of code without much hassle. I just highlight a snippet of R code to run and press ...
9
votes
3answers
5k views

Notepad++ XmlTools Not Installing

This is depressing - I have installed XMLTools and can see it in the menu - It has one sub menu which is "How To Use" If I select that it says something like no libxml / libxslt - Google returns ...
8
votes
3answers
233 views

PHP function descriptions as I type in Notepad++

Is there a plugin for Notepad++ which would allow me to see functions including parameters/returns as I type? For example, if i type "implode(", I'd see: string implode ( string $glue , array ...
8
votes
9answers
823 views

Looking for an editor which closes HTML tags the way like Dreamweaver does

I really like the way Dreamweaver deals with autocompletion of XML and HTML documents. When I type </ it automatically finds the nearest open tag and autocloses it. So when I have this: <div ...
8
votes
9answers
777 views

What is the benefit of using things such as emacs, vim, and nano over any other IDE or text editor?

From what Ive seen. emacs etc.. run in terminal. Is there any benefit to this? It seems that it would be more of a hassle to write and organize things. I'm not trying to be subjective I literally know ...
8
votes
3answers
3k views

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 ...
8
votes
3answers
4k views

How do you run a python script from within notepad++?

When I'm using textmate, I simply hit "apple+r" and the program gets interpreted. How can I run a program from within notepad++? I see that F5 is for "Run", but pointing that to Python.exe simply ...
8
votes
5answers
3k views

Using VIM as a HTML editor

You know how Notepad++ has this feature that when you click on a tag (say ) it automatically highlights the ending tag () as well? What's it called? And how do you tweak VIM to have this feature as ...
8
votes
5answers
10k views

Notepad++ and code completion

Is there any way to improve code completion in notepad++? Currently it supports some kind of "static" code completion and it requires to make a list of instructions and they parameters in xml file ...
8
votes
14answers
50k views

Using regular expressions to do mass replace in Notepad++ and Vim

So I've got a big text file which looks like the following: <option value value='1' >A <option value value='2' >B <option value value='3' >C <option value value='4' >D It's ...
8
votes
3answers
4k views

How to disable Notepad++'s annoying 'parenthesis completion'?

Whenever I type a (, [, or {, Notepad++ completes it with the corresponding closing bracket. I find this 'feature' annoying and would like to disable it. It doesn't seem to be listed in the ...
7
votes
1answer
2k views

Notepad++ with .less colour highlight

I want Notepad++ to treat my .less files just as my .css files and thereby get color highlighting. Any tip?
7
votes
6answers
4k views

Using Notepad++ to compile Java code

I've been trying to set up Notepad++ as a little Java environment, mainly for learning Java as I was having some difficulty getting a simple program to work with NetBeans, unfortunately all the advice ...
7
votes
4answers
2k views

Tips for using Notepad++ for rails development?

I just started using notepad++ for rails development. Are there any plugins/options/tips that makes it easier to use for rails? Edit I ditched Notepad++ for Vim and it's been great.
7
votes
2answers
4k views

Notepad++ Regex Replace doesn't work on Notepad++

I tried to search for every word that has bar-foo and switch them to foo-bar so I wrote on the find (\w+)-(\w+) and on the replace $2-$1 and instead of writing foo-bar it wrote $2-$1. Yes, ...
7
votes
1answer
8k views

Format HTML document

I like very much in Viso Studio (Format HTML Document) (CTRL +K, CTRL +D) But There are the same one for another free editor , I thing in Visio studio express id doesn't exist . Can I find another ...
7
votes
2answers
3k views

Haml/Sass Syntax Highlighting in Notepad++?

Has anybody made this yet?
7
votes
5answers
853 views

How to mimic Visual Studio's CTRL-X, CTRL-V functionality in Notepad++?

I'm using Notepad++ for some projects and miss Visual Studio's Ctrl + X, Ctrl + C functionality that cuts or copies the entire current line when no text is selected. The cut line shortcut seems to be ...
7
votes
6answers
30k views

How to write macro for Notepad++?

I would like to write a macro for Notepad++ which should replace char1, char2, char3 with char4, char5, char6, respectively. Thanks
6
votes
5answers
2k views

notepad++ auto-close html tags in php files

I'm not sure this belongs to stackoverflow, but I decided to ask it here. In notepad++ how can I enable to auto-close html tags in php files? I'm able to do this in html and xml files (I think ...
6
votes
3answers
3k views

Notepad++ code snippets manager

Is there any plugin for notepad++ that manages code snippets with backup for the database and code highlighting? Or is there any other software that does this and that is free? Thanks.
6
votes
1answer
1k views

Can someone tell me how to run a batch file from NOTEPAD++

I thought I could run a batch file from Notepad++ directly using nppexec by (or the built in run command) by typing CMD $(FULL_CURRENT_PATH) But since notepad++ HAS a CMD command (which open the cmd ...

1 2 3 4 5 13