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 - Help] RE: greedy and non-greedy   reg ex
      (SourceForge.net)
   2. [notepad-plus - Help] RE: greedy and non-greedy   reg ex
      (SourceForge.net)
   3. [notepad-plus - Plugin Development] How to        associate language
      with file extension (SourceForge.net)
   4. [notepad-plus - Help] RE: greedy and non-greedy   reg ex
      (SourceForge.net)
   5. [notepad-plus - Help] RE: Find and replace macro (SourceForge.net)
   6. [notepad-plus - Open Discussion] RE: Storing      settings
      centrally (online) (SourceForge.net)
   7. [notepad-plus - Help] RE: Copy existing   language to new
      language (SourceForge.net)
   8. [notepad-plus - Open Discussion] RE: [BUG] NP++   4.6 crash on
      Vista X86 Ultimat (SourceForge.net)
   9. [notepad-plus - Help] annoying popup menu when    coding
      (SourceForge.net)
  10. [notepad-plus - Help] RE: Autocomplete without    Ctrl-Space
      (SourceForge.net)
  11. [notepad-plus - Plugin Development] RE: Plugin    Creation + Tab
      Ordering (SourceForge.net)
  12. [notepad-plus - Help] Custom Tabstops (SourceForge.net)


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

Message: 1
Date: Tue, 27 Nov 2007 16:08:19 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: greedy and
        non-greedy      reg ex
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=4646641
By: nobody

>> <font[^>]*>[^<]*</font>  
 
>Because it won't match strings like "<font>This is some <b>bolded</b> 
>text.</font>".

You're right - but you first offered <font[^>]*>.*</font> which does match the
bolded sequence.
So I'm not sure what we are having trouble matching.
 
>> (and, both of you, putting a comma before smart guy  
>> (as in "how's this, smart guy") is bad form) 
 
>Why? I wasn't asking who the smart guy was?

Are you saying it's better with the comma smart guy?

______________________________________________________________________
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: Tue, 27 Nov 2007 16:17:10 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: greedy and
        non-greedy      reg ex
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=4646650
By: fartinguncle

>>> <font[^>]*>[^<]*</font>  

>> Because it won't match strings like "<font>This is some <b>bolded</b>
text.</font>".
 
> You're right - but you first offered <font[^>]*>.*</font> 
> which does match the bolded sequence. So I'm not sure what we are having 
> trouble
> matching. 

<font[^>]*>.*</font> is an (admittedly, unescaped - it should have been
<font[^>]*>.*<\/font>) regex that matches the contents of a pair of 
opening/closing
font tags, such as that given in the example.  It doesn't match the bolded 
sequence
(unless I've misunderstood your point there).

The other example given: <font[^>]*>[^<]*</font> would not match the above text,
because there is an open-angle-bracket before the closing font tag, so the regex
would fail.

>>> (and, both of you, putting a comma before smart guy  
>>> (as in "how's this, smart guy") is bad form)  
 
>>Why? I wasn't asking who the smart guy was? 
 
>Are you saying it's better with the comma smart guy? 

Who's "the comma smart guy"?

- FartingUncle


______________________________________________________________________
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: Tue, 27 Nov 2007 16:29:04 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] How
        to      associate language with file extension
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=4646663
By: nobody

Hello all,

Does anyone know how to make N++ to always use the same language highligher
based on file extension?

Thanks,
Ovidiy

______________________________________________________________________
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: 4
Date: Tue, 27 Nov 2007 16:33:51 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: greedy and
        non-greedy      reg ex
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=4646670
By: harrybharry

It must be a newer (or older, doubtfull) version of scintilla and scite then,
the regex engine for Npp's scintilla is, afaik, hardcoded to be greedy (read
it in one of the comments when I was looking for an answer to the newline 
problem,
but I figured the problem didnt really exists as TextFX was there ;)). You can
browse the SVN, it should be in there somewhere. I found the behaviour to be
doubtfull too, but its confined to a single line anyway so the problem is 
generally
probably not too big (not in your case though). See if the TextFX regex engine
handles it better, I think it uses a different one from the scintilla engine.

______________________________________________________________________
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: Tue, 27 Nov 2007 18:10:45 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Find and
        replace macro
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=4646777
By: bullock

At present, the macro feature records only messages to the edit windows and
(some, but not all) menu commands.  It does not record any keystrokes or other
messages to any of the N++ dialog boxes.

Sometimes you can work around this limitation by prepopulating the Find dialog
with the search string, then close the dialog and record the macro using the
<F3> (Find Next) and then <Del> and typing in the replace string (or pressing
<Ctrl-V> to paste the clipboard contents).  Those keystrokes will get recorded,
but before playing the macro, you'll have to make sure the Find dialog
is prepopulated (and, if necessary, copy the replace string to the clipboard).

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: 6
Date: Tue, 27 Nov 2007 18:17:30 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Storing settings centrally (online)
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=4646785
By: fidvo

I can't make any claim about whether there will ever be a version with online
settings, but I run it from a memory stick, and I love it.  I would even suggest
this over online settings, because you can run it on a computer that doesn't
have internet access.

Since it loads everything into memory on startup, even a slow memory stick only
hurts the startup time, not the speed of the program once it's started.

Of course, on any computer where I have control over the programs that get 
installed,
I copy my memory stick installation over so that I can associate .txt and other
files with Notepad++.  I keep a backup copy of all my settings (macros, plugins,
etc) on my memory stick so I can easily copy them onto any computer to keep
them synchronized.


______________________________________________________________________
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: Tue, 27 Nov 2007 18:36:52 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Copy existing
        language to new 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=4646800
By: fidvo

While step-by-step instructions would be too detailed for this post, I can at
least point you in the right direction.

The langs.xml file stores the language settings.  In my langs.xml file (which
I haven't edited but might be out of date) VB starts on line 67.  You'll need
to copy lines 67-70 and paste them somewhere else in the file.  I would suggest
manually editing at least the name and ext parameters in the file, then restart
Notepad++ and do all the rest through the User Define dialog.

I believe this will work, although like I said, I haven't actually tried it,
so make a backup of your langs.xml file before editing it.

I hope this helps.


______________________________________________________________________
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: Tue, 27 Nov 2007 20:08:22 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        [BUG] NP++      4.6 crash on Vista X86 Ultimat
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=4646895
By: a_m_briggs

I  regularly see the crash on exit if the function list plugin is active. This
is also on Vista X86 ultimate.

______________________________________________________________________
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: Tue, 27 Nov 2007 20:29:39 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] annoying popup menu
        when    coding
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=4646908
By: nobody

Since I've started using notepad++, I started to notice that an annoying popup
menu comes up when I am coding in C at the moment I press enter I get this:
#define every time I press enter or go into a new line and what not.  Is there
a way to disable it. I apritiate the feedback ^O^

______________________________________________________________________
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: Tue, 27 Nov 2007 20:58:18 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Autocomplete
        without Ctrl-Space
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=4646928
By: nobody

Settings(on menu)->preferences->Backup/Auto-Completion
check the "Enable auto-completion on each input"

______________________________________________________________________
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: Tue, 27 Nov 2007 23:59:00 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
        Plugin  Creation + Tab Ordering
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=4647099
By: nobody

There will be a dockable plugin for listing of files. I will publish it tonight.
Maybe I can extend it in next version with an ordering feature.

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: 12
Date: Wed, 28 Nov 2007 00:07:15 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] Custom Tabstops
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=4647105
By: thuffir

Dear NP++ gurus!

Is it possible to set custom tabstops in NP++ (or with the help of a pluging)?

It would be very handy for assembler code like:

label  mnemonic1            ; Comment
       mnemonic2            ;  some more comment
       mnemonic2

etc...

I have been searchin these forums for a while, but I could not find any threads
on this issue.

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



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

-------------------------------------------------------------------------
SF.Net email is sponsored by: The Future of Linux Business White Paper
from Novell.  From the desktop to the data center, Linux is going
mainstream.  Let it simplify your IT future.
http://altfarm.mediaplex.com/ad/ck/8857-50307-18918-4

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

_______________________________________________
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 18, Issue 85
*************************************************

Reply via email to