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] RE: Copy/paste of text with NUL
characters (SourceForge.net)
2. [notepad-plus - Help] RE: reindenting html code (SourceForge.net)
3. [notepad-plus - Help] RE: how to replace text with carriage
return (SourceForge.net)
4. [notepad-plus - Help] RE: UPPER CASE or Proper Case only
keywords (SourceForge.net)
5. [notepad-plus - Help] RE: replace chars with special chars
[CR][LF] (SourceForge.net)
6. [notepad-plus - Help] RE: Regular Expression - Repeat {n}
Available (SourceForge.net)
7. [notepad-plus - Help] RE: Parsing Text/HTML/DOCs (SourceForge.net)
8. [notepad-plus - Help] RE: Compile from sources (SourceForge.net)
9. [notepad-plus - Help] RE: Easiest way to copy to clipboard
all line (SourceForge.net)
10. [notepad-plus - Open Discussion] RE: multi-line tab view?
(SourceForge.net)
11. [notepad-plus - Open Discussion] RE: Autohidding unused
options (SourceForge.net)
12. [notepad-plus - Open Discussion] RE: Support for big files
(SourceForge.net)
13. [notepad-plus - Open Discussion] RE: Hide Lines :: "Shortcut
mapper..." (SourceForge.net)
----------------------------------------------------------------------
Message: 1
Date: Sun, 30 Sep 2007 19:49:29 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Copy/paste of
text with NUL characters
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=4545188
By: severach
The standard paste tool is implemented by the Scintilla editor component and
it adheres to the standard which is to stop at a NUL character. Most other
programs
will adhere to this standard too. The TextFX copy and paste tools can handle
NUL bytes. Turn on TextFX Viz Settings Capture Keyboard Ctrl-C,X,V and with
the help of other nearby settings you should be able to get the NUL clipboard
handling you need.
______________________________________________________________________
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: Sun, 30 Sep 2007 20:02:36 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: reindenting
html code
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=4545197
By: severach
HTMLTidy isn't included in the normal download to keep the Notepad++ download
size small for the bulk of users who have no need for it. The binary download
binary from my page includes the complete HTMLTidy addon which you can further
tailor to your needs.
http://textfx.no-ip.com/textfx (it will be back up in a few hours)
______________________________________________________________________
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: Sun, 30 Sep 2007 20:09:39 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: how to replace
text with carriage return
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=4545202
By: severach
The editor boxes in the Ctrl+R dialog are made with Scintilla so they can do
much of what Notepad++ does. Rather than hack up the paste function it would
make more sense just to turn on the Notepad++ equivalent of "show all
characters."
I considered doing that but wondered who exactly would want it.
[CR][LF]
[TAB]
______________________________________________________________________
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: Sun, 30 Sep 2007 20:18:41 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: UPPER CASE or
Proper Case only keywords
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=4545206
By: severach
So far as I know plugins don't have access to the keyword highlighting system.
______________________________________________________________________
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: Sun, 30 Sep 2007 20:56:05 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: replace chars
with special chars [CR][LF]
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=4545229
By: severach
I was afraid someone would want this but I didn't build an easy way to do into
the Ctrl+R replace tool to prevent the torrent of complaints that would result
from people accidentally switching the setting. It takes a real special person
to want that feature.
If you don't mind hacking the NPPTextFX source you can get what you want. Find
function GetWindowTextUTF8arm() in POPPAD.C. The first 4 lines are what do the
deed.
hwndEditor: the Notepad++ window
hwndControl: the find or replace box
// Get the EOL mode from Notepad++
int iEolMode=SENDMSGTOED(hwndEditor, SCI_GETEOLMODE, 0, 0);
// Change the find or replace box to the same EOL mode
SENDMSGTOED(hwndControl, SCI_SETEOLMODE, iEolMode, 0);
// brazenly convert the EOL's that anonymous typed to the standard ones
SENDMSGTOED(hwndControl, SCI_CONVERTEOLS, iEolMode, 0);
// if (hwndEditor) {
// int iEolMode=SENDMSGTOED(hwndEditor, SCI_GETEOLMODE, 0, 0);
// SENDMSGTOED(hwndControl, SCI_SETEOLMODE, iEolMode, 0);
// SENDMSGTOED(hwndControl, SCI_CONVERTEOLS, iEolMode, 0);
// }
You can either comment out these lines or you can take advantage of something
else. If hwndEditor is NULL then EOL conversion is not performed. Change
pfr->hwndEditor to NULL in the two GetWindowTextUTF8arm() calls that use it.
Check out the other two calls which already have NULL there.
GetWindowTextUTF8arm(NULL/*pfr->hwndEditor*/,GetDlgItem(hDlg,IDC_EDTREPLACE),&pf
r->lpstrReplaceWith,&pfr->wReplaceWithSz,&pfr->wReplaceWithLen);
When you get that all done and compiled:
Ctrl-I=TAB
Ctrl-J=LF
Ctrl-M=CR
______________________________________________________________________
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: Sun, 30 Sep 2007 21:06:45 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Regular
Expression - Repeat {n} Available
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=4545237
By: severach
The RegEx function is built into the Scintilla component. For either Ctrl+F
or Ctrl+R to handle it's own localized case or enhanced RegEx would be a major
undertaking. The dialog would maintain it's own copy of the entire file during
the replace process and would need to become modal to prevent editing.
The best solution is to improve RegEx in the Scintilla component.
______________________________________________________________________
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: Sun, 30 Sep 2007 21:10:09 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Parsing
Text/HTML/DOCs
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=4545239
By: severach
Such a "gutter width" feature was planned but never got implemented.
______________________________________________________________________
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: Sun, 30 Sep 2007 21:46:31 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Compile from
sources
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=4545273
By: severach
http://sourceforge.net/forum/forum.php?thread_id=1702346&forum_id=331754
http://sourceforge.net/forum/forum.php?thread_id=1831647&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: 9
Date: Sun, 30 Sep 2007 22:00:19 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Easiest way to
copy to clipboard all line
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=4545280
By: severach
I'd reprint it but you've copied the previous message so well.
http://sourceforge.net/forum/message.php?msg_id=4194994
______________________________________________________________________
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: Sun, 30 Sep 2007 22:18:15 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
multi-line tab view?
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=4545285
By: pshute
Have you tried the Window menu? Also see
https://sourceforge.net/forum/message.php?msg_id=4533401 (control+tab).
______________________________________________________________________
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: 11
Date: Sun, 30 Sep 2007 22:29:06 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
Autohidding unused options
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=4545291
By: severach
Another reason is that the Microsoft Office team wrote a custom menu system
to support that so it's too much work until Microsoft provides it as a widget.
http://discuss.fogcreek.com/joelonsoftware3/default.asp?cmd=show&ixPost=94078
______________________________________________________________________
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: Sun, 30 Sep 2007 22:35:37 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
Support for big 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=4545296
By: severach
Small file editors make developing new features fast and easy so they are filled
with strange little things. Every new feature in a large file editor is a major
undertaking so features arrive slowly if at all. Feature filled, large file
editing, cheap: pick any two.
______________________________________________________________________
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: Sun, 30 Sep 2007 22:44:19 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: Hide
Lines :: "Shortcut mapper..."
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=4545297
By: steakhacher
I there is already a shortcut for ctrl+h. Alt+H could be a solution
______________________________________________________________________
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 2005.
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 17, Issue 2
************************************************