Send Notepad-plus-plus mailing list submissions to notepad-plus-plus@lists.sourceforge.net
To subscribe or unsubscribe via the World Wide Web, visit https://lists.sourceforge.net/lists/listinfo/notepad-plus-plus or, via email, send a message with subject or body 'help' to notepad-plus-plus-requ...@lists.sourceforge.net You can reach the person managing the list at notepad-plus-plus-ow...@lists.sourceforge.net When replying, please edit your Subject line so it is more specific than "Re: Contents of Notepad-plus-plus digest..." Today's Topics: 1. [notepad-plus - Open Discussion] RE: Notepad++ v5.4.1 (SourceForge.net) 2. [notepad-plus - Open Discussion] RE: Greenness of Notepad++ (SourceForge.net) 3. [notepad-plus - Help] Asp Syntax Colors (SourceForge.net) 4. [notepad-plus - Open Discussion] NPP support added to Ndexer (SourceForge.net) 5. [notepad-plus - Open Discussion] Req: Default file extension when saving (SourceForge.net) 6. [notepad-plus - Open Discussion] RE: Notepad++ v5.4.1 (SourceForge.net) 7. [notepad-plus - Help] [Linux] Npp always creates/opens file 'exep' (SourceForge.net) 8. [notepad-plus - Help] Replacement based on definition file? (SourceForge.net) 9. [notepad-plus - Open Discussion] Custom Style Elements (SourceForge.net) 10. [notepad-plus - Open Discussion] RE: Notepad++ v5.4.1 (SourceForge.net) 11. [notepad-plus - Open Discussion] RE: Notepad++ v5.4.1 (SourceForge.net) ---------------------------------------------------------------------- Message: 1 Date: Thu, 28 May 2009 04:00:08 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: Notepad++ v5.4.1 To: nore...@sourceforge.net Message-ID: <7413589.331...@sourceforge.net> Content-Type: text/plain; charset="UTF-8" Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=7413589 By: golem777 Thank you for release, but still 2 bugs 1 - My problem persists (Russian) http://pic.ipicture.ru/uploads/090526/1v3Wt07pyJ.jpg 2 - Replace on: 20H D;03 C -ever this text ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=331753 ------------------------------ Message: 2 Date: Thu, 28 May 2009 05:38:29 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: Greenness of Notepad++ To: nore...@sourceforge.net Message-ID: <7413658.331...@sourceforge.net> Content-Type: text/plain; charset="UTF-8" Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=7413658 By: eksortso Just get rid of the "green" comments in the description of Notepad++. It has nothing to do with the editor, which can stand on its own merits well enough. ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=331753 ------------------------------ Message: 3 Date: Thu, 28 May 2009 05:47:23 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Help] Asp Syntax Colors To: nore...@sourceforge.net Message-ID: <7413672.331...@sourceforge.net> Content-Type: text/plain; charset="UTF-8" Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=7413672 By: royshoa Hello, i am programming in asp with notepad++ and i really need some help over here. if i go to: Setting >> Style Configuration and then choose: Language = ASP Style Description = WORD i can add my keywords their, but, i can only choose one color to my keywords. i really need more colors. are some one know how to add a: Style Description to the ASP language in notepad++? for example: WORD2. Thank, Roy Shoa. ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=331754 ------------------------------ Message: 4 Date: Thu, 28 May 2009 06:03:52 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] NPP support added to Ndexer To: nore...@sourceforge.net Message-ID: <7413691.331...@sourceforge.net> Content-Type: text/plain; charset="UTF-8" Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=7413691 By: djn2 Hello all. I've just successfully scratced an itch and want to share this should somebody find it useful. Ndexer [http://code.google.com/p/ndexer/] is an open source code search program based on ctags and SQLite. Once it has initally scanned the folders you select it is remarkably fast at finding stuff - you just launch either 'Search Tags' or 'Search Files', start typing and it will find every file (and line number) that includes the searched tag. More, double-clicking on the result preview opens the configured default editor at the correct line number. As long as the editor is one of SciTE, TextPad or VisualStudio... You may already have guessed where is this going to end. To add NPP support what you'll need is a SVN client to get the source code (TortoiseSVN is fine), a decent text editor to modify it (no prizes for guessing... :-)) and VisualC# Express to compile the thing (free from MS at http://www.microsoft.com/express/vcsharp/). Step by step: 1) Use your Subversion client to export the source code from http://ndexer.googlecode.com/svn/trunk/ to a folder of your choice; 2) In the TextEditors folder make a copy of TextPad.cs and call it Notepad++.cs; 3) Open this file in NPP a change as follows: a) line 11 - change the string 'TextPadDirector' to 'NotepadPlusDirector' (C# doesn't like plus signs in its source files) b) line 12 - same as above c) line 21 - change the string 'TextPad4' to 'Notepad++' d) line 37 - change the whole line to Launch(String.Format(" -n{1} {0}", filename, initialLineNumber)); e) save and exit 4) Install Visual C# Express (may take a while) and launch it. Once started select to open an existing project: select 'Ndexer.csproj' from the source folder; 5) Press F5 to compile (ignore the alert about the missing database parameter). The compiled ndexer.exe is in the obj/debug folder; 6) Download the original Ndexer from Google Code and expand into a folder; 7) Overwite the original ndexer.exe with the one you just compiled; 8) Launch Ndexer (you're supposed to supply a database name as an argument - this means you either launch it from the command line as in 'ndexer.exe index.db' or make a shortcut to it and add the database name modifying the shortcut; 9) Configure the folders and file types to be scanned right-clicking on the tray icon and selecting 'Configure'; in the 'UI' tab select NotepadPlus and set the editor's location. That's all, folks. Start searching and have fun . djn ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=331753 ------------------------------ Message: 5 Date: Thu, 28 May 2009 07:30:36 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] Req: Default file extension when saving To: nore...@sourceforge.net Message-ID: <7413775.331...@sourceforge.net> Content-Type: text/plain; charset="UTF-8" Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=7413775 By: uninfected When I create a new document ("File > New"), paste some text and choose "Save" I end up with a file without file extension ("new1" or something else if I overwrote that suggestion). This might be intended in some rare cases but I guess in most cases there's an extension the user prefers. The extension could be added by the user but this has to be done manually each time. If you create a lot of similar files it would be handy to have NP++ add the extension. Would it be possible to add an option that sets the default file extension? A good place would be "Preferences" > "New Document/Open Save Directory" > "Default file extension: ___". When left blank NP++ would act like now: saving without extension. When entered e.g. ".txt" the above example would create the file new1.txt. ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=331753 ------------------------------ Message: 6 Date: Thu, 28 May 2009 07:40:33 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: Notepad++ v5.4.1 To: nore...@sourceforge.net Message-ID: <7413786.331...@sourceforge.net> Content-Type: text/plain; charset="UTF-8" Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=7413786 By: golem777 And last BUG The option "Match case" dont work properly. (he always work) ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=331753 ------------------------------ Message: 7 Date: Thu, 28 May 2009 08:49:29 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Help] [Linux] Npp always creates/opens file 'exep' To: nore...@sourceforge.net Message-ID: <7413936.331...@sourceforge.net> Content-Type: text/plain; charset="UTF-8" Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=7413936 By: haraldc I installed v5.4 in Ubuntu v9.04 under wine v1.0.1 according to the instructions on the npp website. It works, but when started it always wants to open (or to create, if not yet existing) a file 'exep' in Z:\username\home\ when opened from the main menu entry or in c:\Programme\Notepad++\localization\ when opened from the desktop icon. It does not do that if started with the -noPlugins or -nosession parameter. The corresponding setting in the settings menu has no effect. I have only the plugins running, that were in the downloaded package. However, needing the plugins and the 'automatic' session saving being quite useful, how can I avoid this compulsory opening of the 'exep' file? ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=331754 ------------------------------ Message: 8 Date: Thu, 28 May 2009 09:05:45 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Help] Replacement based on definition file? To: nore...@sourceforge.net Message-ID: <7413977.331...@sourceforge.net> Content-Type: text/plain; charset="UTF-8" Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=7413977 By: haraldc When I use Scite, there is the possibility to replace a predefined token by another token, based on a definition in a special user-edited file 'abbrev.properties' in the users 'Documents and Settings' folder by pressing Ctrl+B. Ex: you type 'krCtrl+B' and you get 'Kind regards'. Is there a similar function with npp or one of the plugins? ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=331754 ------------------------------ Message: 9 Date: Thu, 28 May 2009 14:40:29 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] Custom Style Elements To: nore...@sourceforge.net Message-ID: <7414540.331...@sourceforge.net> Content-Type: text/plain; charset="UTF-8" Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=7414540 By: nppp Is it possible to create your own style elements, say for XML files? Our system uses the ^ (carrot) tags to denote a value that has to be replaced with a value from a hashmap. For example: <query> SELECT * FROM ^dbtable^ </query> ^dbtable^ will be replaced with a value from a hash map. What I am wanting to do is create a style rule to color the ^dbtable^ tag such that it stands out. Is this possible to do? ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=331753 ------------------------------ Message: 10 Date: Thu, 28 May 2009 14:51:05 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: Notepad++ v5.4.1 To: nore...@sourceforge.net Message-ID: <7414563.331...@sourceforge.net> Content-Type: text/plain; charset="UTF-8" Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=7414563 By: aathell '2 - Replace on: 20H D;03 C -ever this text' - You stated the same thing in the 5.4 release thread; I still don't see the 'bug' here. Perhaps you could explain the steps to re-create? almostautomated ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=331753 ------------------------------ Message: 11 Date: Thu, 28 May 2009 14:56:12 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: Notepad++ v5.4.1 To: nore...@sourceforge.net Message-ID: <7414577.331...@sourceforge.net> Content-Type: text/plain; charset="UTF-8" Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=7414577 By: aathell Could anyone else confirm this? I've tried multiple times and it just keeps working the way it should! ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=331753 ------------------------------ ------------------------------------------------------------------------------ Register Now for Creativity and Technology (CaT), June 3rd, NYC. CaT is a gathering of tech-side developers & brand creativity professionals. Meet the minds behind Google Creative Lab, Visual Complexity, Processing, & iPhoneDevCamp as they present alongside digital heavyweights like Barbarian Group, R/GA, & Big Spaceship. http://p.sf.net/sfu/creativitycat-com ------------------------------ _______________________________________________ Notepad-plus-plus mailing list Notepad-plus-plus@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/notepad-plus-plus End of Notepad-plus-plus Digest, Vol 36, Issue 61 *************************************************