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 - Help] RE: saving from the run     command
      (SourceForge.net)
   2. [notepad-plus - Help] RE: overwriting Search      histroy on every
      new searc (SourceForge.net)
   3. [notepad-plus - Help] RE: overwriting Search      histroy on every
      new searc (SourceForge.net)
   4. [notepad-plus - Help] RE: code folding for user   defined
      language (SourceForge.net)
   5. [notepad-plus - Help] RE: bracket Auto-completion problem
      (SourceForge.net)
   6. [notepad-plus - Plugin Development] NppExec       v0.3 has been
      released! (SourceForge.net)
   7. [notepad-plus - Open Discussion] RE: Greenness    of Notepad++
      (SourceForge.net)
   8. [notepad-plus - Help] RE: bracket Auto-completion problem
      (SourceForge.net)
   9. [notepad-plus - Open Discussion] RE: Request:     Search in Files
      result save to sess (SourceForge.net)
  10. [notepad-plus - Open Discussion] RE: Shortcut     for Date
      insertion (SourceForge.net)
  11. How Could I use Function List in Unicode version (sc1801)


----------------------------------------------------------------------

Message: 1
Date: Wed, 22 Apr 2009 06:04:52 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: saving from the
        run     command
To: nore...@sourceforge.net
Message-ID: <7258712.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=7258712
By: geo_aoe

Try NppExec, it has a option to save all files before running.

______________________________________________________________________
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: Wed, 22 Apr 2009 06:07:34 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: overwriting
        Search  histroy on every new searc
To: nore...@sourceforge.net
Message-ID: <7258720.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=7258720
By: geo_aoe

Why does the search history bother you ?
You can still type whatever you want.


______________________________________________________________________
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, 22 Apr 2009 09:09:27 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: overwriting
        Search  histroy on every new searc
To: nore...@sourceforge.net
Message-ID: <7259781.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=7259781
By: cchris

Being able to weed out the search history would be a nice enhancement, since
the list has a fixed depth. Of course, it can be done from config.xml, but the
process is clumsier.

Also, this method doesn't work when some search string is down the list and
a few discardable searches push it over the edge.

Since you may not know, when performing a search, whether you'll want to keep
this entry (try fine tuning a regexp), ome ability to edit the history on the
spot would be the best solution. Plus an additional switch to turn on/off 
history
recording, for instance while testing different vaiants of the same regex.

CChris

______________________________________________________________________
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: Wed, 22 Apr 2009 09:27:55 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: code folding
        for user        defined language
To: nore...@sourceforge.net
Message-ID: <7259828.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=7259828
By: cchris

Support for folding - in general terms - has to be done in the code of the edit
component indeed, and that is where it is in Scintilla. And I don't see many
obvious changes that it should undergo.

Supporting folding in some language means instructing Scintilla to fold a 
specific
line in a document, and this is done by the lexer, which is a dll that could
be written in any language as long as it can interface with the C++ written
other components and meet their requirements. If you write your lexer in C++,
then your dll must implement and export, among others

        virtual void Fold(unsigned int startPos, int lengthDoc, int initStyle, 
WordList
*keywordlists[], Accessor &styler) const;
 
(quoted from ExternalLexer.cxx).

Browse the collection of Lex<language>.cxx files in the sources, and you will
see that some of them do perform some folding of their own, drawing on 
Scintilla's
builtin support.

CChris

______________________________________________________________________
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: Wed, 22 Apr 2009 09:36:20 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: bracket
        Auto-completion problem
To: nore...@sourceforge.net
Message-ID: <7259855.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=7259855
By: cchris

Well it depends.

For builtin languages, the highlighters are compiled into a dll called 
SciLexer.dll.
They use ptions to be found in the relevant section (XML node) of stylers.xml.
The source for the lexer is Lex<lang>.cxx.

For user defined languages, the same dll is being used, but the configuration
is read from userDefinedLang.xml. The source file for the single lexer being
used is LexUser.cxx.

And for languages which you define external lexers for, it is up to the lexer
to know where to draw the configure info from.

CChris

______________________________________________________________________
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: Wed, 22 Apr 2009 09:47:08 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development]
        NppExec v0.3 has been released!
To: nore...@sourceforge.net
Message-ID: <7259895.482...@sourceforge.net>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=7259895
By: dv__

https://sourceforge.net/forum/forum.php?thread_id=3234230&forum_id=672146

______________________________________________________________________
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: 7
Date: Wed, 22 Apr 2009 09:56:42 +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: <7260066.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=7260066
By: dv__

Is it possible that we were born on the same planet with such people without
sense of humor who take jokes seriously?.. ;)))

______________________________________________________________________
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: Wed, 22 Apr 2009 10:00:53 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: bracket
        Auto-completion problem
To: nore...@sourceforge.net
Message-ID: <7260078.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=7260078
By: dv__

https://sourceforge.net/forum/forum.php?thread_id=3012566&forum_id=482781

______________________________________________________________________
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: Wed, 22 Apr 2009 10:48:41 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Request:        Search in Files result save to sess
To: nore...@sourceforge.net
Message-ID: <7260335.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=7260335
By: cchris

Record a macro where you
1/ Right click the earch window , choose Select all
2/ Right click there and choose Copy
3/ create new document
4/ Paste clipboard.

You can't automate the saving of that file, as you may want to use different
filenames. I miss scripts, sometimes.

Just works.

CChris

______________________________________________________________________
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: Wed, 22 Apr 2009 10:55:19 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Shortcut        for Date insertion
To: nore...@sourceforge.net
Message-ID: <7260351.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=7260351
By: cchris

Exactly what I had in mind.

Well, my C++ is very rusty, and I have tackled making the search/replace actions
recordable in a macro. That takes some code refactoring, and VS2008 didn't like
the way generic_string and TCHAR [] mix together - I'm not happy with the 
silencer
I'm using. So it will be a while before I do this - you'll get it released 
before
I start perhaps!

CChris

______________________________________________________________________
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, 23 Apr 2009 08:52:48 +0800
From: sc1801 <sc1...@163.com>
Subject: [Notepad-plus-plus] How Could I use Function List in Unicode
        version
To: notepad-plus-p...@lists.sourceforge.net.
Message-ID: <49efbbe0.2010...@163.com>
Content-Type: text/plain; charset=GB2312

Functionlist is cool staff for me,but it does not have unicode binary,
how could I build an unicode vesion ?
any modification needs
?





------------------------------

------------------------------------------------------------------------------
Stay on top of everything new and different, both inside and 
around Java (TM) technology - register by April 22, and save
$200 on the JavaOne (SM) conference, June 2-5, 2009, San Francisco.
300 plus technical and hands-on sessions. Register today. 
Use priority code J9JMT32. http://p.sf.net/sfu/p

------------------------------

_______________________________________________
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 35, Issue 37
*************************************************

Reply via email to