notepad++

c# Linq Keywords?

I'm adding more keywords to notepad++'s C# Syntax highlighting and it would really help if i had a complete list of LINQ keywords for c#. ...

scite editor and gcc setting up?.

Hey there, In class we're using the Scite editor with gcc and its a tad outdated. I was wondering how you would "attach"(For lack of a better term) gcc to scite so that it would compile the code when I hit the compile icon?. Also would this process be the same when using other text editors like notepad++. -cheers. ...

Delete a macro in Notepad++

I have a macro in Notepad++ that I don't use anymore, the macro also uses a shortcut I want to use for other macro's. But there seems to be no function in Notepad++ to delete macro's. Is there a more difficult way to delete macro's in Notepad++ (for instance manipulating the setting-files of Notepad++)? ...

How set tcl language parsing rules in function list - notepad++ plugin

I have tried to do this refering to follwoing link. http://skypher.com/index.php/2008/07/28/function-list-for-php/ But no success. Can you help me please. It will be great if namesapces also parsed. ...

How do I indent multiple lines at once in Notepad++?

In many text editors that are aimed at programmers, if the user has a selection that spans more than 1 line and presses the TAB key, those lines are indented by 1 TAB (or a number of spaces, depending on how the editor is configured). However, this does not seem to be the default behavior of Notepad++. Is there a way I can do this in No...

Is there a Notepad++ feature to add some vertical space to the bottom or scroll below last line?

Whenever I'm doing some coding in Notepad++ i need to add some lines at the bottom so if i scroll down, the code doesn't stop at the bottom at the window. The problem is that I sometimes forget to take out the lines :/. I need to know if there's some kind of plugin or feature that I may have missed that adds some vertical space at the ...

Compiling C++ programs

Should I use Visual C++ Express to write and compile or should I write in Notepad++ and compile it? I like using Notepad++ because of its clean interface and speedy start-up as compared to Visual which is a considerably heavier program. If I do write in Notepad++ how do I compile it using Visual? ...

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": "OpenDoc()"},{"value": "Close", "onclick": "CloseDoc()"}]}}} to this... {"menu": { "id": "file", "value": "File", "popup": { "menuitem": [ ...

Regular Expression in Notepad++ (Ignore if contains)

Hi I'm a newbie I am trying to create a regex in notepad ++ to replace all href="http://www.reactivemail.com/(any series of charcters)" essentially all I want is to put a / on the end of all href's but only if it does not contain a dot e.g it is a path to a file like .html so here is what i want to find href="http://www.reactivemail.c...

How can I enable autocomplete text support in Notepad++

There's already a question on this here. But i want to know if its possible to add autocomplete text support in a .txt file for english words (maybe from GNU Aspell dictionary)? ...

Has anyone got a JSP language file for Notepad++?

I can't seem to find a language syntax highlighting file for JSPs for Notepad++. Is there one out there? (Currently, I've just got it set to use Java highlighting, which is a little sub-optimal. I could knock together my own, I suppose, but I'm hoping the internet has solved my problem for me.) ...

Notepad++ Function List plugin: Javascript parsing rules to support nested functions

[Using Notepad++ 5.5.1 and Function List plugin v2.0beta] I'm trying to add to or modify the existing rules for Javascript functions in order to show nested (or member) functions in the function list. For example: function parentA (base){ function childA (exp){ return Math.pow(base, exp); } alert(childA(2)); // call private...

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 ...

How to Execute a Python File in Notepad ++ ?

I prefer using notepad ++ for developing, How do I execute the files in Python through Notepad++? ...

Does anyone have parsing rules for the Notepad++ Function List plugin for Ruby and Rake

I'me using Notepad++ for editing rake files and I'd like to be able to use the function list plugin. I've been unable to find any parsing rules on line, and the "Language Parsing Rules" dialog is not very clearly documented. I'm parsing methods into the list with the following, but would like to also display tasks. Function Begin: [...

notepad++ highlight colours

I like the highlighting feature in notepad++, but when using certain themes that default purple and yellow make the text unreadable, and it seems I cannot change it through style configurator. Does anyone know where I would find the option to change these? It's making working with dark themes hard. running ANSI on XP actually I was abl...

Notepad++ IDL Syntax Highlighting?

I was about to create a user-defined language file for Notepad++ to syntax-highlight IDL. But before I went and spent the time creating one, I wanted to check with the "community" to see if anyone else has one that's ready to go. Does anyone have any suggestions? ...

Ruby prompt when stdin isn't a terminal (for Notepad++ explicitely)?

Hello, I'm a Notepad++ user. One of the features I like from that software is the fact that you can have a "console" in the UI (which is not an actual terminal), and that you can run some command line interpreters from there. FYI, to get the console running in Notepad++, you need to have the NppExec plugin installed, and then go to Men...

QuickText (Notepad++) plugin for Eclipse

Is there a QuickText like (Tab Trigger) plugin for Eclipse? ...

How to create macros/shortcuts in Dreamweaver or Notepad++

I've never made "macros" or anything like that with any program. I'm moving my php code to use "gettext", so I have to look for all my static text and change it up. For example, I need to change page title to <?php echo _('page title'); ?>. I don't think there is a way to change it all up in one shot, as it involves looking to see if ...