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 - Plugin Development] RE: working   on new plugin
      (line filter) (SourceForge.net)
   2. [notepad-plus - Help] RE: User Defined Language   - Hex numbers
      (SourceForge.net)
   3. [notepad-plus - Open Discussion] RE: Character,   word, etc
      count (SourceForge.net)
   4. [notepad-plus - Open Discussion] RE: Character,   word, etc
      count (SourceForge.net)
   5. [notepad-plus - Help] Fortran 90 code folding (SourceForge.net)
   6. [notepad-plus - Help] RE: Inseting text instead   of replacing
      it... (SourceForge.net)
   7. [notepad-plus - Help] RE: Fortran 90 code folding
      (SourceForge.net)
   8. [notepad-plus - Help] RE: Fortran 90 code folding
      (SourceForge.net)
   9. [notepad-plus - Help] RE: crash at the startup    (opening a
      file) (SourceForge.net)


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

Message: 1
Date: Sat, 12 Jan 2008 07:25:52 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
        working on new plugin (line filter)
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=4717883
By: steakhacher

Hi

Your plugin seems to be very interesting. Can you send the dll and if you want
the sources to me or put a link to download it over the internet

Thanks a lot

______________________________________________________________________
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: Sat, 12 Jan 2008 07:37:59 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: User Defined
        Language        - Hex numbers
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=4717894
By: nobody

I saw Notepad++ correctly highlightes hex numbers in it's predefined languages
(for example C, C++). It is a pity Npp does not have this feature in user 
defined
languages.

______________________________________________________________________
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, 12 Jan 2008 07:44:00 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Character,      word, etc count
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=4717898
By: nobody

Thanks for this quick and precise Info. Have a good 2008.
Arran.

______________________________________________________________________
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: Sat, 12 Jan 2008 09:35:54 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Character,      word, etc count
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=4717999
By: trpplayer79

your welkome.
alsow the best for 2008

______________________________________________________________________
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: Sat, 12 Jan 2008 10:46:41 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] Fortran 90 code
        folding
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=4718059
By: nobody

I am trying to get code folding works in notepad++. The problem I encounter
is that, the keywords for folding cannot contain space.

For the keyword type, it can ended with "end type" as the following:
type A
  complex*16, pointer:: p
end type A

However, type can appeared alone too.
real function B
  type (A)::C
  xxxx
end function

Therefore, for the closing keyword, it must be set to "end type" instead of
"end" only. Otherwise,  folding cannot works properly.

Can anyone helps?
Thank you very much!

______________________________________________________________________
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: Sat, 12 Jan 2008 11:14:40 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Inseting text
        instead of replacing it...
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=4718083
By: nobody

Use CTRL+R advanced Find/Replace Dialog.
Check regular expressions.
Enter in the Find Field:
^(.)
Enter in the Replace Field:
text-to-be-inserted\1

There has to be a selection that is to be replaced.
By simply finding the first character on each line and replacing that by the
text to be inserted followed by that very same character, you will get the same
result, except for empty lines.

^ stands for start-of-line
. stands for "any character"
() enclose groups that can be used in the replace field
\1 refers to the first group in the regular expression of the Find Field: (.)


______________________________________________________________________
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: Sat, 12 Jan 2008 11:17:06 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Fortran 90 code
        folding
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=4718086
By: nobody

Yes, enter function as keyword to, to make sure all endings are correctly
matched.
You could have found this suggestion if you did search the forums for similar
questions.


______________________________________________________________________
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: Sat, 12 Jan 2008 11:28:13 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Fortran 90 code
        folding
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=4718094
By: nobody

I don't see why entering function as keyword can solve the problem.

I have tried a piece of code like this:

type A
        complex*16 pointer::p
end type A

real function B
type (A)::C

end function

with folder open: type function
and close folder: end

If I fold the 1st line "type A", it will close the whole code. Maybe it doesn't
know how to deal with both folder open (type) and folder close (end) in the
same line?

Thank you.

______________________________________________________________________
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: Sat, 12 Jan 2008 11:33:12 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: crash at the
        startup (opening a 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=4718099
By: nobody

I had the same problem, thanks for the tip nobody.

______________________________________________________________________
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



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

-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace

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

_______________________________________________
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 20, Issue 60
*************************************************

Reply via email to