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] user language issues
(SourceForge.net)
2. [notepad-plus - Open Discussion] RE: Notepad++ for Windows
Mobile 6 (SourceForge.net)
3. [notepad-plus - Help] polish characters in notepad++
(SourceForge.net)
4. [notepad-plus - Open Discussion] How can add a suffix to some
lines (SourceForge.net)
5. [notepad-plus - Plugin Development] RE: user language issues
(SourceForge.net)
6. [notepad-plus - Help] RE: polish characters in notepad++
(SourceForge.net)
7. [notepad-plus - Open Discussion] RE: How can add a suffix to
some lines (SourceForge.net)
8. [notepad-plus - Open Discussion] spell check on the fly
(SourceForge.net)
9. [notepad-plus - Help] Find in files improvements (SourceForge.net)
10. [notepad-plus - Help] RE: Delete lines that contain a certain
strin (SourceForge.net)
11. [notepad-plus - Open Discussion] RE: spell check on the fly
(SourceForge.net)
12. [notepad-plus - Help] RE: Delete lines that contain a certain
string (SourceForge.net)
13. [notepad-plus - Open Discussion] RE: Feature Request: Direct
Open File (SourceForge.net)
----------------------------------------------------------------------
Message: 1
Date: Wed, 13 Feb 2008 16:41:48 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] user
language issues
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=4776809
By: meterman
I apologize if this is the wrong group to submit this question. I did a search
in the whole forum and didn't come up with answer, so...
I am writing a user language file for Scilab. It works well with one exception.
Comments in Scilab are indicated with with "//". However, there is also a "/"
operator. When I include "/" in the list of operators, NPP no longer recognizes
"//" as a comment prefix.
Is this a bug, the limitation of the system, or am I doing something wrong?
______________________________________________________________________
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: Wed, 13 Feb 2008 16:50:08 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
Notepad++ for Windows Mobile 6
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=4776823
By: nobody
I want too!!!
I realy enjoy the Notepad ++ for creating scripts and programs, and I look for
something like Notepad++ for Windows Mobile.
Any idea if its happen?
______________________________________________________________________
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: Wed, 13 Feb 2008 17:08:28 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] polish characters
in 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=4776839
By: nobody
Hello,
I had a problem creating web pages with polish characters using Notepad++. I
took some time to run trough this forum and found 2 answers (both by anonymous)
that put together solved my problem. Here is some info and the solution:
- The web pages are created using ISO-8859-2 encoding, defined in the 'head'
section of the html file: <meta http-equiv="Content-Type" content="text/html;
charset=ISO-8859-2">.
- I'm using an English version of Windows, but I added polish keyboard
(polish-programmer) to "default input language". That can be done through
(Windows
Vista example) Control Panel -> Regional and Language Options -> Keyboard and
Languages -> Change Keyboard -> Add -> Polish (programmer). To switch between
keyboards, use Shift +Alt or right click on EN and pick PL. (that applies also
to any other keyboard added to the system)
IN ORDER TO USE POLISH CHARACTERS IN Notepad++:
Close Notepad ++.
Download the newest version of ConvertExt plugin and install it.
http://notepad-plus.sourceforge.net/uk/download.php
After installation (check install.txt for instructions), edit file
ConvertExt.enc
and add code:
GROUP "Polish"
TABLE "WINDOWS-1250"
{
// A C E L N ? S Z Z a c e l n ? s z z
a5 c6 ca a3 d1 d3 8c 8f af b9 e6 ea b3 f1 f3 9c 9f bf
}
TABLE "ISO-8859-2"
{
// A C E L N ? S Z Z a c e l n ? s z z
a1 c6 ca a3 d1 d3 a6 ac af b1 e6 ea b3 f1 f3 b6 bc bf
}
In Notepad++ select menu: Plugins > ConvertExt > Options > Encoding
uncheck the 'Disable External Encodings' option.
After that highlight your document and select menu: Plugins > ConvertExt >
Polish
> Convert to ISO-88059-2
Hope it works for you.
==
Kasia
______________________________________________________________________
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, 13 Feb 2008 17:39:03 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] How can
add a suffix to some 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=4776877
By: nobody
I would like to add a suffix and prefix (i.e. tags) to some lines in the edited
file e.g., which I select by highlighting, rather than uisng the cursor to
obtain
position
e.g. I highlight the following string:
The quick brown fox jumped
and then the software returns:
<foxy>The quick brown fox jumped<unfoxy>
Can I do this with Notepad or one of its plugins
______________________________________________________________________
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, 14 Feb 2008 00:37:59 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
user language issues
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=4777295
By: nobody
It's a limitation of the User Defined Language system. If you use a self created
Lexer, it is possible to use / as an operator. You can check this in Pascal
language, for example.
______________________________________________________________________
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, 14 Feb 2008 00:39:54 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: polish
characters in 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=4777298
By: nobody
> and found 2 answers (both by anonymous)...
Does it matter that those messages were written by "anonymous"?
______________________________________________________________________
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: Thu, 14 Feb 2008 00:42:52 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: How
can add a suffix to some 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=4777303
By: nobody
Perhaps it would have been better to write this message as a reply to a similar
question or subject. You probably will find some similar messages and answers
by searching the forum.
______________________________________________________________________
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: Thu, 14 Feb 2008 00:49:19 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] spell
check on the fly
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=4777314
By: nobody
Can I have spell check on the fly, without having to press hot key?
Thx
______________________________________________________________________
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: Thu, 14 Feb 2008 01:18:58 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] Find in files
improvements
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=4777360
By: nobody
It would be nice if the "Find in files" feature is improved by:
1. In the find results high light the string/word(s) you was looking for.
2. Remember the last directory.
Almost all editors I tested have these options. But no editor can match
Notepad++!
So please add these features.
______________________________________________________________________
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, 14 Feb 2008 01:24:59 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Delete lines
that contain a certain strin
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=4777373
By: nobody
Another solution using macro`s.
Before recording keystroke macro, be sure all your necessary lines are
bookmarked.
Then record keystroke macro sequence - <F2> for jumping to next bookmarked line,
<Ctrl>+<L> for deleting all line, <SHIFT>+<F2> to toggle off bookmark from exact
line (if you`ll missed this third point, your macro will find next bookmark
on the same line.
______________________________________________________________________
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, 14 Feb 2008 03:57:33 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
spell check on the fly
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=4777619
By: nobody
Which fly are we talking about?
______________________________________________________________________
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: 12
Date: Thu, 14 Feb 2008 04:03:32 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Delete lines
that contain a certain string
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=4777625
By: nobody
Get any more clues from a message just posted one week ago on this very same
forum:
"How to delete all but certain lines"
http://sourceforge.net/forum/forum.php?thread_id=1933510&forum_id=331754
______________________________________________________________________
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, 14 Feb 2008 04:11:03 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
Feature Request: Direct Open 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=4777631
By: nobody
hey,
very cool alt+f5 does work! and not only for total, but also for relative path
statements (i.e. if you mark justATest.txt and current file is in the same
directory)
*thumbs up*
but however i would consider a context menu entry, because if i wouldn't had
accidentally read this forum i would have never found out... and donho obviously
too ^^
btw: where did you find this??
______________________________________________________________________
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: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
------------------------------
_______________________________________________
Notepad-plus-plus mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/notepad-plus-plus
End of Notepad-plus-plus Digest, Vol 21, Issue 43
*************************************************