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 - Help] basic macro help please (SourceForge.net)
2. [notepad-plus - Open Discussion] RE: [Feature Request] View
gzip compressed files (SourceForge.net)
3. [notepad-plus - Open Discussion] RE: [Feature Request] View
gzip compressed files (SourceForge.net)
4. [notepad-plus - Translation] RE: New And Fixed Hebrew
Translation Made By Me (SourceForge.net)
5. [notepad-plus - Help] RE: basic macro help please
(SourceForge.net)
6. [notepad-plus - Open Discussion] [FR] Translate Windows
context menu entry (SourceForge.net)
7. [notepad-plus - Help] Copying from mIRC to Notepad++
(SourceForge.net)
8. [notepad-plus - Open Discussion] RE: [BUG]: N++ crashed on
opening cssfile on ftp (SourceForge.net)
9. [notepad-plus - Open Discussion] RE: [BUG]: N++ crashed on
opening cssfile on ftp (SourceForge.net)
10. [notepad-plus - Help] RE: Color problem (SourceForge.net)
11. [notepad-plus - Plugin Development] Doxgyen Plugin
(SourceForge.net)
12. [notepad-plus - Open Discussion] [BUG] File history doesn't
work anymore (SourceForge.net)
13. [notepad-plus - Open Discussion] [Feature request] Multiline
regexps (SourceForge.net)
----------------------------------------------------------------------
Message: 1
Date: Mon, 28 Jul 2008 13:04:11 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] basic macro help
please
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=5127187
By: sjjs1985
hi, i am very new to np++ and just need some quick guidelines to start me off
please.
how do i use the macro function? for example:
-------------------
#one
#one:hover
#two
#two:hover
#three
#three:hover
-------------------
and i want to change 'one','two'and 'three' to 'example'
this is just a basic example. i know u wouldnt do this.
are there any guides on the net cuz i cant for the life of me find any!
thanks,sam
______________________________________________________________________
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: Mon, 28 Jul 2008 14:53:38 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
[Feature Request] View gzip compressed files
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=5127461
By: snemarch
Hm, "very large" XML files? Considering that scintilla (and thus Notepad++)
doesn't handle very large files well, viewing/editign anything that's big enough
to warrant compression doesn't sound like a particularly good idea :)
Anyway, you won't be able to get around the "decompress them completely" stage
- it can be done transparently, but you do need complete decompression before
you can edit... unless you're willing to do major core changes to NP++ :)
______________________________________________________________________
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: Mon, 28 Jul 2008 15:11:59 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
[Feature Request] View gzip compressed files
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=5127510
By: nobody
Just out of interest, does anyone with experience of Scintilla here know whether
it would be possible to achieve compressed file handling with the existing
Scintilla
editor framework, thus requiring (apparently large) modifications to NP++ code
only, or is the Scintilla editor library itself not designed to allow the
handling
of compressed files?
Thanks.
______________________________________________________________________
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: Mon, 28 Jul 2008 16:32:32 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Translation] RE: New And
Fixed Hebrew Translation Made By Me
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=5127716
By: aviramof
IS THERE ANY ONE IN THIS FORUM WHO CAN GIVE ME SOME REPLY ABOUT MY TRANSLTION
OR SOMETHING LIKE THIS AND ETC.?
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=558104
------------------------------
Message: 5
Date: Mon, 28 Jul 2008 19:21:06 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: basic macro
help please
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=5128075
By: fool4uanyway
Perhaps you are helped by the information and referenced threads in this
thread:
"Macro Recording & Run Tools" (Help forum)
http://sourceforge.net/forum/forum.php?thread_id=1984894&forum_id=331754
You may be best off by using a regular expression to achieve what you want.
Your regular expression would "say" something like
- look for each line beginning with # and the word immediately following it
- replace this by #example
Move the cursor in the document to the top by pressing Ctrl+Home.
In the Ctrl+R advanced, or Ctrl+H regular Replace dialog you can enter the
following
expressions.
Find field:
^#[a-zA-Z]+
Replace field:
#example
Check the regular expression checkbox or click the radio button and replace
all occurrences.
^________ look for the beginning of a line (so no in-line matches will
be found)
#________ look for the character #
[a-zA-Z]_ look for any of the characters in the ranges a to z and A to Z
......... you may add numbers here as well: add 0-9 after the opening or just
before
......... the closing square bracket
+________ look for a consecutive string of matching characters with a minimum
of 1
This doesn't require you to be specific about the lines containing the :hover
part.
But possibly you do not want to replace other #word occurences in the document.
______________________________________________________________________
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: Mon, 28 Jul 2008 20:18:06 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] [FR]
Translate Windows context menu entry
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=5128181
By: nobody
Just an idea:
Would it be possible to translate the "Edit with Notepad++"-entry in the Windows
context menu (the menu that appears when I click on a file using the right mouse
button) to the same language NP++ uses? I think it would be nice if that entry
in the context menu used the same language as the editor itself does. What do
you think?
Greetings from Germany,
Dominik
______________________________________________________________________
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: Mon, 28 Jul 2008 21:23:51 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] Copying from mIRC
to Notepad++
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=5128314
By: stingnl
Hello,
I've noticed a strange thing.
I have to sometimes copy stuff from mIRC 6.33 to Notepad++ 5.0.2:
Now when i let's say, copy the word "alias" and paste it into Notepad++, it
says:
aliasNUL.NULwNULeNULbNULdNUL.NUL.NUL
The clipboard just reports "alias" and when I paste it into notepad it pastes
as "alias", just about everywhere else, except Notepad++.
It also only occurs with mIRC, with no other application I haven't been able
to reproduce it.
Running on Windows Vista SP1
______________________________________________________________________
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, 29 Jul 2008 01:48:24 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
[BUG]: N++ crashed on opening cssfile on ftp
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=5128773
By: nobody
v5.0
I'll try v5.0.2 later.
______________________________________________________________________
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, 29 Jul 2008 02:04:40 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
[BUG]: N++ crashed on opening cssfile on ftp
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=5128799
By: nobody
Oh, yeah! This bug has been fixed.
Thanks, Don.
______________________________________________________________________
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: Tue, 29 Jul 2008 08:50:34 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Color problem
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=5129498
By: atttze
Anyone?
______________________________________________________________________
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, 29 Jul 2008 10:11:59 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development]
Doxgyen Plugin
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=5129698
By: usladha
Hi,
Is there any plugin to insert comments with doxygen tags. Say like when I place
my cursor in a function definition, say
int func(int a, float b)
and then say insert doxygen comment, it replaces the whole thing with
/**
* @brief
* @param a
* @param b
* @returns
*/
int func(int a, float b)
Thanks
______________________________________________________________________
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: Tue, 29 Jul 2008 10:27:35 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] [BUG]
File history doesn't work anymore
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=5129738
By: nobody
Since I installed NP++ v5.0.2, file history doesn't work anymore - in the file
menu there are no recently opened files listed anymore.
Anyone else having this problem, too?? :-?
Greetings from Germany,
Dominik
______________________________________________________________________
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: 13
Date: Tue, 29 Jul 2008 11:01:19 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] [Feature
request] Multiline regexps
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=5129808
By: nobody
Are newlines in regular expressions (in both search pattern and replacement
part in "replace" functionality) going to be supported?
______________________________________________________________________
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 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 26, Issue 63
*************************************************