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 - Plugin Development] RE: XML Tools plugin 2.3
(r583) (SourceForge.net)
2. [notepad-plus - Help] RE: XML Plugin crashing (SourceForge.net)
3. [notepad-plus - Open Discussion] RE: UI Suggestion: clean up
Language menu (SourceForge.net)
4. [notepad-plus - Open Discussion] RE: Adding set of keywords
to syntax highlighter (SourceForge.net)
5. [notepad-plus - Open Discussion] RE: emails extractor
(SourceForge.net)
6. [notepad-plus - Help] Block comment highligt in lisp
(SourceForge.net)
7. [notepad-plus - Help] How to avoid changing style when saving
(SourceForge.net)
8. [notepad-plus - Help] Comment Line (SourceForge.net)
9. [notepad-plus - Help] RE: Firefox (SourceForge.net)
10. [notepad-plus - Help] RE: All I want is a text editor.
(SourceForge.net)
11. [notepad-plus - Help] RE: Firefox (SourceForge.net)
----------------------------------------------------------------------
Message: 1
Date: Wed, 17 Sep 2008 08:32:31 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
XML Tools plugin 2.3 (r583)
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=5284229
By: morbac
Hi all,
Thanks for interest and sorry for being so long to respond.
But I've good news, I think I've fixed the problem. The problem was:
The plugin builds a normal menu if libXML could be loaded and a short menu if
it couldn't. To do it, I allocated the funcItems dynamically, depending on
libXML
loading status:
int nbFunc = 29;
FuncItem* funcItem;
// loading libxml
...
if (libxmlStatus == 0) nbFunc = 1;
funcItem = new FuncItem[nbFunc];
...
For an unknown reason, it seems that NPP does not support dynamically allocated
funcItem table. So I changed this and it seems to work fine now.
I'll perform tests during next days and publish the new release on sourceforge
when it's ok. If someone is interested in testing the new release, it can be
(unofficially) grabbed on
http://www.calodox.scene.org/morbac/other/xmltools-2.3.1-r637.zip
______________________________________________________________________
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
------------------------------
Message: 2
Date: Wed, 17 Sep 2008 12:56:08 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: XML Plugin
crashing
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=5285070
By: morbac
The problem will be fixed in next release. A RC version of the plugin is
available
here:
http://www.calodox.scene.org/morbac/other/xmltools-2.3.1-r637.zip
______________________________________________________________________
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: Wed, 17 Sep 2008 13:13:36 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: UI
Suggestion: clean up Language menu
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=5285126
By: im2crazy4u
Or, in your preferences just go to the Language Menu tab and move items to the
disabled list. I suggest removing all the languages that you never use to clean
things up. It worked for me so that I have less than 20 showing ... and I really
only use three of them often.
2C
______________________________________________________________________
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: Wed, 17 Sep 2008 14:00:04 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
Adding set of keywords to syntax highlighter
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=5285298
By: dsvick
I'd like to be able to do the same thing as well. I found a post here
(http://forums.facepunchstudios.com/showthread.php?t=572237) that solved part
of the problem by getting it listed in the styler configurator but none of the
entries I make there get colored.
What I did was this...
In langs.xml I added a line in the javascript section (<Language
name="javascript"
... )
<Keywords name="type1"></Keywords>
And then in stylers.xml I added a line (in the javascript section there)
<WordsStyle name="KEYWORD2" styleID="53" fgColor="FF0000" bgColor="FFFFFF"
fontName="Courier" fontStyle="0" fontSize="" keywordClass="type1"></WordsStyle>
As I said it shows up now in the configurator but words I add do not get
colored.
There are several languages I'd like to be able to do this for, has anyone had
any success with this?
thanks
Dave
______________________________________________________________________
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: Wed, 17 Sep 2008 19:59:35 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
emails extractor
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=5286393
By: airdrik
another option is to do a regex find for the emails, and hit "Find in all open
documents".
This will open a view of all lines in all open documents matching that search
pattern. You can then copy everything from there to another location (like
a new file) for further processing.
An example regex to match e-mail addresses would be:
([EMAIL PROTECTED])
I would also suggest you study about regex search and replace patterns, as they
are very useful in processing more complicated patterns like this.
As for the lack of willingness to use other external (command line) tools for
what you would expect a text editor like Notepad++ to be able do; that
is understandable (especially since NP++ is a Windows program so many of the
users will not be familiar to the command line tools that Linux/Unix power users
are familiar with).
______________________________________________________________________
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: Wed, 17 Sep 2008 21:32:35 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] Block comment
highligt in lisp
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=5286667
By: saktan
Hi there,
In IntelliCAD's lisp (don't know other sects) comment chars are:
commentLine=";" commentStart=";|" commentEnd="|; "
Tough I've edited langs.xml as
<Language name="lisp" ext="lsp lisp" commentLine=";" commentStart=";|"
commentEnd="|; ">
I could not manage to highlight the comment blocks.
Need help.
Thanks in advance.
______________________________________________________________________
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: Wed, 17 Sep 2008 21:48:14 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] How to avoid
changing style when saving
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=5286717
By: kleptophobiac
I have a custom user defined style that I use. The file type is just a .txt
file (in Windows). My problem is that Notepad++ stupidly overrides my user
defined
style selection and sets the view back to plain text every time I save. It's
ridiculously annoying and only happens on a new installation of Notepad++. My
old computer works the way I want it to (ie, the program not assuming it knows
what I want and overriding my input).
Any advice on how to avoid this problem?
I would search the forum, but I see no search button. Google searching with
"site:" is a lame hack and doesn't give enough control to yield good results
anyway.
Thanks for the help!
______________________________________________________________________
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: Wed, 17 Sep 2008 23:49:20 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] Comment Line
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=5287060
By: mariofiorini
Hi all.
I am trying to define the comment line keyword for a user defined language
(Stata).
What I would like is the keyword to be " //" (quotes not being part of the
keyword).
That is a space followed by double forward slash. I am using the GUI for user
defined language but if I type " //" it does not recognize the space, no matter
whether I select or not "treat keyword as symbol". I've also tried to open the
userDefineLang.XML file but I do not know the XML syntax. How do you get a space
to be part of your keyword? Thanks,
Mario
______________________________________________________________________
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, 18 Sep 2008 03:22:26 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Firefox
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=5287533
By: marablue
Since upgrading to 5.0.3 I am unable to open/display a file in Firefox. I've
compared the current shortcuts.xml file to the backup, tried using both the
standard double quotes around FULL_CURRENT_PATH and also ' "', neither
works, I can't open a file when there is a space in the folder name (which on
Windows, is pretty often).
Notepad++ has stopped "encasing" the path to the file. I don't believe it's
Firefox's fault, as I can double click an .html, .htm. or .php file and it opens
perfectly in FF.
I was also able to launch files from Notepad++ in Firefox fine *before upgrading
to 5.0.3*.
>From my shortcuts.xml file:
<Command name="launch in Firefox" Ctrl="yes" Alt="yes" Shift="yes"
Key="88">"$(FULL_CURRENT_PATH)"</Command>
<Command name="launch in IE" Ctrl="yes" Alt="yes" Shift="yes"
Key="73">iexplore "$(FULL_CURRENT_PATH)"</Command>
Again, I've tried the following 3 "fixes", one which worked the last time this
happened, now none work:
Key="88">"$(FULL_CURRENT_PATH)"</Command>
Key="88">firefox "$(FULL_CURRENT_PATH)"</Command>
Key="88">firefox "$(FULL_CURRENT_PATH)"</Command>
I'm on XP, Firefox 2.0.0.16, if it matters.
______________________________________________________________________
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: 10
Date: Thu, 18 Sep 2008 10:37:28 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: All I want is a
text editor.
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=5288664
By: simonriverdale
I couldn't get on very well with KompoZer, I found it was too easy to include
extra, repeat, coding which I needed to edit out. I used HTML-Kit before I tried
Notepad++, the early version is still free, there are lots of add ons, some
of which are useful, and it includes a ftp app as well. Now I'm a little more
versed in HTML and CSS I find Notepad++ and LeechFTP or FileZillaClient to be
more than adequate.
______________________________________________________________________
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: 11
Date: Thu, 18 Sep 2008 03:26:01 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Firefox
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=5287540
By: marablue
An edit to the above post...I have tried using the code the double quotes. It
is being converted to HTML in my post, which is odd since Sourceforge states:
HTML tags will display in your post as 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=331754
------------------------------
-------------------------------------------------------------------------
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 28, Issue 22
*************************************************