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 [EMAIL PROTECTED] You can reach the person managing the list at [EMAIL PROTECTED] 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++ as a Python IDE (SourceForge.net) 2. [notepad-plus - Open Discussion] RE: Updates to CSS syntax highlighting (SourceForge.net) 3. [notepad-plus - Open Discussion] RE: creating a new language support in N++ (SourceForge.net) 4. [notepad-plus - Open Discussion] RE: Updates to CSS syntax highlighting (SourceForge.net) 5. [notepad-plus - Open Discussion] RE: Updates to CSS syntax highlighting (SourceForge.net) 6. [notepad-plus - Help] Search Forums and don't Re-place questions (SourceForge.net) 7. [notepad-plus - Open Discussion] RE: Suggestion: Default Save Folder (SourceForge.net) 8. [notepad-plus - Open Discussion] RE: Updates to CSS syntax highlighting (SourceForge.net) 9. [notepad-plus - Open Discussion] RE: Suggestion : integrated Help (SourceForge.net) 10. [notepad-plus - Plugin Development] NppExec v0.2.5 release 2 (SourceForge.net) ---------------------------------------------------------------------- Message: 1 Date: Thu, 02 Oct 2008 21:30:23 +0000 From: "SourceForge.net" <[EMAIL PROTECTED]> Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: Notepad++ as a Python IDE To: [EMAIL PROTECTED] Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; charset="UTF-8" Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=5359385 By: airdrik The simplest way would be to use the line: <Command name="Run Current Document" Ctrl="yes" Alt="no" Shift="no" Key="116">" ;$(FULL_CURRENT_PATH)" ;</Command> This utilizes Windows file associations to pick the correct program for executing the current file. Assuming that python is associated with .py files, running this when the current file is a python file will execute it with python. This has the added bonus (for those working in mixed language environments) that you can run any file types that windows recognizes. (Or the drawback that it doesn't work if you've associated NotePad++ with your .py files, which will result in merely reopening the current file in NP++) Alternatively, a new feature (plugin) suggestion would be to make an integrated python debugger similar to the php debugger plugin: DBGP. ______________________________________________________________________ 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, 02 Oct 2008 21:39:34 +0000 From: "SourceForge.net" <[EMAIL PROTECTED]> Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: Updates to CSS syntax highlighting To: [EMAIL PROTECTED] Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; charset="UTF-8" Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=5359423 By: donho No, the patch doesn't fix crash due to keyin Chinese character. Don ______________________________________________________________________ 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, 02 Oct 2008 21:44:54 +0000 From: "SourceForge.net" <[EMAIL PROTECTED]> Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: creating a new language support in N++ To: [EMAIL PROTECTED] Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; charset="UTF-8" Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=5359442 By: airdrik There's the easy but less flexible way, and there's the hard way. The easy way is to User Define Dialog (one of the buttons on the toolbar), which allows you to defile general syntax in a limited fashion. This saves the new language definition and style to your user's userDefineLang.xml. If you need more flexible syntax recognition than is provided by the User Define Dialog, I don't think that langs.xml (in the NP++ Program Files directory) offers any more flexible syntax. Instead, you need to delve into the scintilla syntax lexer code (c++) and create a new lexer for your language. ______________________________________________________________________ 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: 4 Date: Thu, 02 Oct 2008 21:53:24 +0000 From: "SourceForge.net" <[EMAIL PROTECTED]> Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: Updates to CSS syntax highlighting To: [EMAIL PROTECTED] Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; charset="UTF-8" Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=5359481 By: airdrik A nice addition, which may be just outside the scope of the CSS lexer, would be to enable CSS highlighting in html files' style tags/attributes (similar to java/vb script highlighting in html/asp pages). ______________________________________________________________________ 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, 02 Oct 2008 21:59:02 +0000 From: "SourceForge.net" <[EMAIL PROTECTED]> Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: Updates to CSS syntax highlighting To: [EMAIL PROTECTED] Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; charset="UTF-8" Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=5359504 By: donho FYI, just took the latest revision here : http://scintilla.cvs.sourceforge.net/viewvc/scintilla/scintilla/src/LexCSS.cxx?r evision=1.13&view=markup Build new Scintilla binary - still crash. Don ______________________________________________________________________ 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, 02 Oct 2008 22:10:48 +0000 From: "SourceForge.net" <[EMAIL PROTECTED]> Subject: [Notepad-plus-plus] [notepad-plus - Help] Search Forums and don't Re-place questions To: [EMAIL PROTECTED] Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; charset="UTF-8" Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=5359563 By: fool4uanyway First of all: please do search the forums before asking anything that is likely to have been answered before. Read the thread about searching Notepad++ forums. You may have to search for this one visually in the forum's first page, it is still actual. Read the message "RE: Replace in multiple files" By: Fool4UAnyway (fool4uanyway) - 2008-06-23 19:01 http://sourceforge.net/forum/message.php?msg_id=5049962 in the thread "Replace in multiple files" (Help forum) http://sourceforge.net/forum/forum.php?thread_id=2091300&forum_id=331754 Again, the advice is simply to use Agent Ransack to (regex) find the files you are looking for, select them all and open them in Notepad++. But you may not even have the need to use Notepad++ if you want to perform a simple replace action. TextCrawler can do that for you. Please, read the threads referenced in the message above. ______________________________________________________________________ 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: 7 Date: Thu, 02 Oct 2008 22:55:39 +0000 From: "SourceForge.net" <[EMAIL PROTECTED]> Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: Suggestion: Default Save Folder To: [EMAIL PROTECTED] Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; charset="UTF-8" Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=5359736 By: donho Implemented. Just get v5.1 beta : https://sourceforge.net/forum/forum.php?thread_id=2267749&forum_id=331753 Don ______________________________________________________________________ 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: 8 Date: Fri, 03 Oct 2008 02:56:25 +0000 From: "SourceForge.net" <[EMAIL PROTECTED]> Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: Updates to CSS syntax highlighting To: [EMAIL PROTECTED] Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; charset="UTF-8" Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=5360653 By: heravar Actually, I just have javascript highlighting in HTML files (and HTML in ASP too) But I couldnt make it recon the vbscript, how did u do it? ______________________________________________________________________ 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: 9 Date: Fri, 03 Oct 2008 02:58:07 +0000 From: "SourceForge.net" <[EMAIL PROTECTED]> Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: Suggestion : integrated Help To: [EMAIL PROTECTED] Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; charset="UTF-8" Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=5360662 By: pshute That's at http://notepad-plus.sourceforge.net/uk/download.php not the Sourceforge download section. It's a couple of years out of date, but still better than nothing. Some up to date context sensitive help would be a great addition to the project if anyone wants to volunteer to do it. ______________________________________________________________________ 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: Fri, 03 Oct 2008 08:23:47 +0000 From: "SourceForge.net" <[EMAIL PROTECTED]> Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] NppExec v0.2.5 release 2 To: [EMAIL PROTECTED] Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; charset="UTF-8" Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=5361870 By: dv__ v0.2.5 release 2 - September 2008 --------------------------------- - fixed: (potential) bug in CNppExec::DoExecScript() - fixed: several (potential) bugs, thanks to Patrick Corwin I.e. this is the same NppExec v0.2.5 except several fixed bugs. This is an ANSI (non-Unicode) version so far, which is compatible with old versions of Notepad++ and new ANSI build of Notepad++ (non-Unicode). To build the Unicode version of NppExec, some enhancement are required. It will be done in next NppExec's release. Future versions of NppExec will be completely Unicode-compatible. Plugins download link: https://sourceforge.net/project/showfiles.php?group_id=189927 ______________________________________________________________________ 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=482781 ------------------------------ ------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ ------------------------------ _______________________________________________ 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 29, Issue 2 ************************************************