Formatting code in Notepad++

Is there a keyboard shortcut to format code in Notepad++ ? I’m mainly working with HTML, CSS and Python code. For example: <title>{% block title %} {% endblock %}</title> <link rel=”stylesheet” href=”https://stackoverflow.com/media/style.css” type=”text/css” media=”screen” /> </head> To: <head> <title> {% block title %} {% endblock %} </title> <link rel=”stylesheet” href=”https://stackoverflow.com/media/style.css” type=”text/css” media=”screen” /> </head> I … Read more

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 –global core.editor “C:\Program Files\Notepad++\notepad++.exe” git config –global core.editor C:/Program Files/Notepad++/notepad++.exe git config –global core.editor C:\\Program Files\\Notepad++\\notepad++.exe 11 Answers 11

How do I stop Notepad++ from showing autocomplete for all words in the file

I’m trying to use Notepad++ with the Progress programming language. I have installed the language definition in %APPDATA%\Roaming\Notepad++ as userDefineLang.xml and syntax highlighting is working correctly. I’ve put a file in the notepad++ Plugins\APIs directory named progress.xml, but the contents are not recognized by Notepad++. I’ve also removed all the other language files from that … Read more

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 errors, which I solved in the end by removing all “visible” spaces at line beginnings and inserting the same amount of spaces … Read more