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: NEW       FunctionList v
      2.0 ALPHA CRASH (SourceForge.net)
   2. [notepad-plus - Open Discussion] RE: Feature      request: Format
      Document (SourceForge.net)
   3. [notepad-plus - Open Discussion] Feature  request: better
      hotkeys (SourceForge.net)
   4. [notepad-plus - Open Discussion] RE: Why does     Notepad++
      bottom scrollbar not work? (SourceForge.net)
   5. [notepad-plus - Plugin Development] RE: NEW       FunctionList v
      2.0 ALPHA (SourceForge.net)
   6. [notepad-plus - Open Discussion] RE: Feature      request: better
      hotkeys (SourceForge.net)
   7. [notepad-plus - Help] RE: Slow window paint       (after alt+tab)
      (SourceForge.net)
   8. [notepad-plus - Plugin Development] RE: NEW       FunctionList v
      2.0 ALPHA (SourceForge.net)
   9. [notepad-plus - Help] Cursor Navigate     Backward/Forward exist?
      (SourceForge.net)
  10. [notepad-plus - Help] RE: [all ver.] save macro   does not work
      (SourceForge.net)
  11. [notepad-plus - Plugin Development] "Go To        Function" for
      Function List (SourceForge.net)
  12. [notepad-plus - Help] RE: Delete all unmarked     lines
      (SourceForge.net)
  13. [notepad-plus - Open Discussion] RE: Why does     Notepad++
      bottom scrollbar not w (SourceForge.net)


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

Message: 1
Date: Thu, 28 Jun 2007 02:24:20 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
        NEW     FunctionList v 2.0 ALPHA CRASH
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=4385176
By: nobody

Hello Simon,

did you ever tried to create the parsing rules with the dialog? If so, you 
should
had seen, that isn't possible to define Month as a Subgroup of Year and after
that Day as a Subgroup of Month!
I would like to say: There is a 2 Level limitation. This means only Month to
Year is possible or Day to Month.
Only possible is to define several Groups as a Subgroup to one Group.

But to prevent this mis-usage better, I have to change the dialog
box behaviour.

Best Regards
Jens

______________________________________________________________________
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: Thu, 28 Jun 2007 02:42:30 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Feature request: Format Document
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=4385197
By: nobody

Yeah, that sounds quite useful. Would love to see it!

Perhaps Don can try to put it in once he's finished fixing bugs etc. :)

______________________________________________________________________
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 Jun 2007 02:56:37 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] Feature
        request: better hotkeys
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=4385215
By: nobody

Hotkey to UPPERCASE. Thank you! :D

______________________________________________________________________
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, 28 Jun 2007 03:00:48 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: Why
        does    Notepad++ bottom scrollbar not work?
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=4385221
By: nobody

(I think) Scintilla is open source. Is it possible for Don (or someone else
who's capable) to edit the Scintilla source in order to fix the issue? Maybe
the modified source could then be suggested to be included in future releases
of Scintilla?

Those are my thoughts so far.

______________________________________________________________________
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 Jun 2007 03:05:01 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
        NEW     FunctionList v 2.0 ALPHA
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=4385228
By: nobody

Hello,

Please have a look into Pascal. There is an example with a Subgroup. Here you
can see I have defined VAR to OBJECT. It means the variables are now shown in
Group OBJECT.

See this example:

OBJECT
|-- Object 1
|-o Object 2
| '-o VAR
|   |--Var 1
|   |--Var 2

The condition: VAR needs to be within the Object (Between 'Function Begin' and
'Body End'). If you didn't defined a Body End there is no problem. Next Next
element Function Begin of the rule will be the Body End.

Example 1:

BB
|
Object 1 () {


}
|
BE

BB of 1
|
Object 1

BB of 2 and BE of 1
|
Object 2


Hope this helps to understand.

Best Regards
Jens












______________________________________________________________________
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: 6
Date: Thu, 28 Jun 2007 03:58:57 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Feature request: better hotkeys
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=4385293
By: nobody

Lowercase = CTRL+U
Uppercase = SHIFT+CTRL+U

Best Regards

______________________________________________________________________
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 Jun 2007 04:06:41 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Slow window
        paint   (after alt+tab)
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=4385306
By: nobody

Yes I am also primarily opening from network shares.

______________________________________________________________________
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 Jun 2007 06:35:57 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
        NEW     FunctionList v 2.0 ALPHA
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=4385543
By: nobody

I have created the correct Parsing Rules because I tried each rule with seperate
groups, and it works.
But when I use one group, and put them together, it doesn't work. It seems only
the second rule works.
The only difference between two rules is in the "Function Begin" (require and
require_once). But

Rule 1:
Function Beign:      \<require\>\s*\(*
Function List Name:  [a-zA-Z0-9\.\$'"_/\\ ]+
Function End:        \)*\s*;

Rule 2:
Function Beign:      \<require_once\>\s*\(*
Function List Name:  [a-zA-Z0-9\.\$'"_/\\ ]+
Function End:        \)*\s*;

______________________________________________________________________
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: 9
Date: Thu, 28 Jun 2007 07:56:32 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] Cursor Navigate
        Backward/Forward exist?
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=4385663
By: quantass

Does Notepad++ support Visual Studio like Navigate Backward/Forward?  This 
allows
me to step backward/forward in history to where my cursor was throughout the
document.

If there's a plugin for such a thing that would be fine.  So far I'm very 
impressed
with the app.


______________________________________________________________________
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, 28 Jun 2007 08:02:10 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: [all ver.] save
        macro   does not work
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=4385677
By: bullock

Alas, that is not possible as far as I know.  That is, the macro can record
the <F3> keystroke, to repeat the last search/replace, but it cannot store the
search/replace strings (or populate the search/replace fields) for you.

Regards.
Greg


______________________________________________________________________
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, 28 Jun 2007 08:12:41 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] "Go
        To      Function" for Function List
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=4385698
By: nobody

IDEs Dev-C++, Eclipse etc use "<CTRL> + click" to jump to implementation of
function.
I think, that is a good feature for Function List.

Is it pssible this feature to implement ? 


______________________________________________________________________
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: 12
Date: Thu, 28 Jun 2007 08:19:47 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Delete all
        unmarked        lines
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=4385714
By: acambre

I couldn't find anything in the menu that accomplishes this. Or if I did stumble
across something, it caused Notepad to hang on a 77MB text 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: 13
Date: Thu, 28 Jun 2007 08:44:34 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: Why
        does    Notepad++ bottom scrollbar not w
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=4385769
By: mateo1041

I submitted this as a bug on the Scintilla SourceForge.net bug tracker.  I'm
not quite sure what else to do.

https://sourceforge.net/tracker/index.php?func=detail&aid=1744905&group_id=2439&;
atid=102439

______________________________________________________________________
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 DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/

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

_______________________________________________
Notepad-plus-plus mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/notepad-plus-plus


End of Notepad-plus-plus Digest, Vol 13, Issue 54
*************************************************

Reply via email to