Send Notepad-plus-plus mailing list submissions to
[email protected]
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 - Help] full content download? (SourceForge.net)
2. [notepad-plus - Help] RE: full content download? (SourceForge.net)
3. [notepad-plus - Help] Edit settings of an existing language?
(SourceForge.net)
4. [notepad-plus - Help] RE: Edit settings of an existing
language? (SourceForge.net)
5. [notepad-plus - Help] RE: Debugger for Python (SourceForge.net)
6. [notepad-plus - Help] RE: Debugger for Python (SourceForge.net)
7. [notepad-plus - Help] RE: How to automatize Save&Compile?
(SourceForge.net)
8. [notepad-plus - Open Discussion] RE: mount zip file
(SourceForge.net)
9. [notepad-plus - Open Discussion] Question about the GPL of
Notepad++ (SourceForge.net)
10. [notepad-plus - Open Discussion] RE: Question about the GPL
of Notepad++ (SourceForge.net)
----------------------------------------------------------------------
Message: 1
Date: Fri, 26 Sep 2008 22:59:34 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] full content
download?
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=5331033
By: spy46
is there a down loadable file, that will not only install N++ but also
the plugins?
there are so many of them for each one, that i dont know what one i need to
download, but mostly i just want the xml plugin.
but i tried to use the newest one, but it just gave me errors saying that there
were missing files, all of them with the .dll tag.
iconv.
libxml2.
libxslt.
nppcm.
scilexer.
zlibl.
i ended up downloading every one of them, but i would keep getting the error
saying that its missing these files, some would no longer show up, but the
iconc.dll
always did, i think 2 others did too.
so is there a full version of N++ that i can download and save me the headache?
______________________________________________________________________
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: 2
Date: Sat, 27 Sep 2008 00:52:57 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: full content
download?
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=5331433
By: heravar
The .exe version in the download pages comes with many of the plugins...
Also, with those plugins you are sure you have the ones correct for that
version...
______________________________________________________________________
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: 3
Date: Sat, 27 Sep 2008 16:59:15 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] Edit settings of an
existing language?
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=5333981
By: saktan
I mean not editing the style of a lang. but adding extra keywords, modifying
block commenting char seq.s. etc.
Is it possible, huh?
Thanks...
saktan
______________________________________________________________________
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: Sat, 27 Sep 2008 18:44:01 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Edit settings
of an existing language?
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=5334318
By: heravar
For autocomplete you can edit the files in the APIs folder...
For syntax coloring, im afraid you have to go through the code... at least for
php its that way
______________________________________________________________________
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: 5
Date: Sun, 28 Sep 2008 05:23:36 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Debugger for
Python
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=5336336
By: sammi101082
Folks,
I did manage to debug python using NPP. Thanks to the forum, i found a way to
run Python scripts. And a little bit of searching on the Python forum did the
trick for me.
Here's what i did:
1> Create a file debugpy.bat under installed location. [Not the Application
data. Installed one. Ex: For me it was in C:\ProgramFiles]
2> The contents of the bat file are as follows:
@echo off
set /P ARGV="Arguments: "
echo
if "%ARGV%"=="" cls
C:\Python25\python -m pdb %1 %ARGV%
echo
pause
3> Remember the path given in the previous step is the absolute path of the
Python Interpreter location on your machine.
4> Now type %APPDATA%\Notepad++ in Run. A folder will open. This is your
application
dir for NPP.
Here you will find a file shortcuts.xml.
5> Add an entry to this file as follows:
<Command name="DebugPython" Ctrl="yes" Alt="no" Shift="yes"
Key="122">$(NPP_DIRECTORY)\debugpy.bat
"$(FULL_CURRENT_PATH)"</Command>
This goes in the <UserDefinedCommands> section of the xml file. Save it.
[Remember to edit this using any editor other than NPP]
6> Fire up NPP. Open your python script to be debugged. Press Ctrl-Shift-F11.
And voila!! The debugger of Python launches up.
7> The "pdb" debugger is provided as part of the Python standard package. You
may need to know the debugger commands to make use of it effectively. Please
refer to http://www.python.org/doc/2.3.4/lib/debugger-commands.html
8> note that removing "-m pdb" argument from your bat file will just run the
file. I currently have 2 separate entries for run and debug, with diff key
mappings
in NPP.
Hope this helps all Python and NPP fans.
Regards,
Sam
______________________________________________________________________
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: 6
Date: Sun, 28 Sep 2008 05:31:21 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Debugger for
Python
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=5336355
By: sammi101082
I forgot to thank the forum thread which helped me in achieving this.
http://sourceforge.net/forum/forum.php?thread_id=2189443&forum_id=331754
thanks to all the folks who have posted on the above thread.
regards,
Sam
______________________________________________________________________
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: Sun, 28 Sep 2008 05:36:08 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: How to
automatize Save&Compile?
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=5336372
By: sammi101082
Hello Zoltan,
Take a look at https://sourceforge.net/forum/forum.php?thread_id=1707502&forum_i
d=672146. It is a workaround for your problem to save and compile at the click
of key. It is not a macro, but u will achieve ur purpose of saving the file
and compiling it.
Regards,
Sam
______________________________________________________________________
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: Mon, 29 Sep 2008 10:58:54 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
mount zip file
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=5341242
By: donho
What I see is a plugin (which can be use zlib) provide a panel to display file
tree in a zip file. Double click on a listed file will extract this file in
the sub-tmp directory and open it in Notepad++.
Yes, it's a interesting feature and plugin project. However I don't see myself
to implement this plugin since I'm busy on the other things right now.
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: 9
Date: Mon, 29 Sep 2008 13:07:11 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] Question
about the GPL of Notepad++
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=5341592
By: kenpoon000
Hi,
I am currently making use of Notepad++, it's really a nice tool and I like it.
While I have some doubts on the GPL of Notepad++.
When I look into the source code of Notepad++, I find that it is using TinyXML
for access of data from
XML file, but it is not under GPL.
It is just a kind remind and I hope it helps, because I really think that
Notepad++
is a good editor.
I am looking forward to your replies.
Best Regards,
Ken
______________________________________________________________________
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: Mon, 29 Sep 2008 15:03:03 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
Question about the GPL of Notepad++
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=5342023
By: snemarch
TinyXML is ZLIB license, iirc, and AFAIK it's perfectly fine including projects
using the ZLIB license in GPL projects. Doesn't mean that TinyXML suddenly falls
under the GPL license, though.
______________________________________________________________________
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
------------------------------
-------------------------------------------------------------------------
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
[email protected]
https://lists.sourceforge.net/lists/listinfo/notepad-plus-plus
End of Notepad-plus-plus Digest, Vol 29, Issue 5
************************************************