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: Ctrl+Q behaviour (SourceForge.net)
2. [notepad-plus - Plugin Development] RE: Trapping Ctrl+C/X in
plugin (SourceForge.net)
3. [notepad-plus - Plugin Development] There Is No JSP Editor
Supported.... (SourceForge.net)
4. [notepad-plus - Help] Instant insertion of
<strong>$1</strong> (SourceForge.net)
5. [notepad-plus - Help] RE: Function List for User-Defined
Language (SourceForge.net)
6. [notepad-plus - Open Discussion] keyboard recording
(SourceForge.net)
7. [notepad-plus - Open Discussion] RE: font of C language
"STRING" not correct (SourceForge.net)
8. [notepad-plus - Plugin Development] Context Hints
(SourceForge.net)
9. [notepad-plus - Plugin Development] RE: Context Hints
(SourceForge.net)
10. [notepad-plus - Plugin Development] RE: Context Hints
(SourceForge.net)
11. [notepad-plus - Open Discussion] RE: Filesize Maximum
(SourceForge.net)
12. [notepad-plus - Help] RE: Ctrl+Q behaviour (SourceForge.net)
13. [notepad-plus - Help] Convert wrap to CR/LF (SourceForge.net)
----------------------------------------------------------------------
Message: 1
Date: Mon, 09 Jul 2007 12:58:50 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Ctrl+Q
behaviour
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=4404696
By: steakhacher
No and what a pity!!!
______________________________________________________________________
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, 09 Jul 2007 18:11:03 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
Trapping Ctrl+C/X in 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=4405007
By: loonychewy
I went to look further into this problem. First, I'll describe what I did, then
I describe my observations and findings. Need people to help confirm my
observations,
and to offer an explanation if possible.
What I did:
Download Npp 4.1.2 source code and compile it (in VS.NET 2005). Put breakpoints
in the message procedure of NPP's main window, for some of the scintilla
commands:
Notepad_plus.cpp -> void Notepad_plus::command(int id), lines 2190, 2196, 2202,
2206, 2212, 2219, 2557, 2570. These corresponds to the scintilla commands: undo,
redo, cut, copy, paste, delete, select all and duplicate line respectively.
Then I run this compiled version of Npp in debug mode (without any plugins).
I tried to activate these commands both using the menu item, as well as the
associated hotkeys (which were not remapped).
Observations:
1) When using the menu items, all breakpoints above were triggered
2) When using the corresponding hotkeys, only paste (Ctrl+V) triggers the
breakpoint.
In the scintilla component (SciLexer.dll), all these hotkeys were caught by
the message WM_KEYDOWN
3) The same things were observed when the hotkeys were remapped, and tried
again
Findings:
1) Menu items work as expected, with WM_COMMAND being received by NPP's windows
procedure
2) Most hotkeys for scintilla commands (except Paste) do not get translated
into keyboard accelerators in NPP into WM_COMMAND message, but instead, are
caught by scintilla via WM_KEYDOWN message. (Win32 documentation says that they
will get translated)
Am I the only one who face this issue? Can anyone compiling npp from source
kindly confirm this? Thanks in advance :-)
I want to make my multi-clipboard plugin shortcut mapping-friendly (instead
of currently hardcoded to Ctrl-C/X). I realise that this is also being done
with Hex-editor plugin (v0.83, HEXDialog.cpp, LRESULT HexEdit::runProcList(...),
line 600)
______________________________________________________________________
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: 3
Date: Mon, 09 Jul 2007 19:01:27 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] There
Is No JSP Editor Supported....
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=4405042
By: nobody
I want to suggest that, Notepad++ should have JSP editor.Notpad++ not rich if
there is no JSP editor.TQ
______________________________________________________________________
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: Mon, 09 Jul 2007 19:08:25 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] Instant insertion
of <strong>$1</strong>
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=4405051
By: nobody
Please give me some clue.
I want to select a string of text $1 and then press Ctrl+B to instantly add
<strong> </strong> around it. How can I configure Notepad++ to do this?
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=331754
------------------------------
Message: 5
Date: Mon, 09 Jul 2007 23:10:01 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Function List
for User-Defined 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=4405234
By: jenslorenz
This is a known bug.
______________________________________________________________________
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, 09 Jul 2007 23:26:24 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] keyboard
recording
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=4405254
By: nobody
When i try to move a dockable windows,my firewall always notices me that npp
is trying to make the keyboard recording.and what ever i answer(allow or
block),npp
will stop responding.ever worse,mouse events to ANY program are all blocked.i
have to kill npp.
is the keyboard recording really necessary?
______________________________________________________________________
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, 09 Jul 2007 23:39:29 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: font
of C language "STRING" not correct
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=4405274
By: nobody
I am having the same problem with .cpp source file. Look like the font for
STRING
style is not configurable. It is hard-coded somehow. Would very much appreciated
if someone could help.
M.Y.
p.s. I'm using Notepad++ v4.1.2 under Windows XP Professional SP2.
______________________________________________________________________
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: Tue, 10 Jul 2007 02:15:26 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development]
Context Hints
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=4405444
By: nobody
Are there any plugins covering context hints?
This might be usefull, and many other editors have this functionality
incorporated.
For instance: if you type plain html: "<input" and then a space, it would be
great to have a pulldown menu to choose an attribute like type, name etc.
______________________________________________________________________
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: 9
Date: Tue, 10 Jul 2007 02:24:55 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
Context Hints
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=4405461
By: nobody
CTR+SPACEBAR... nevermind!
______________________________________________________________________
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: 10
Date: Tue, 10 Jul 2007 02:29:31 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
Context Hints
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=4405468
By: nobody
I meant REAL context hinting: not a whole list of html tags, attributes and
others.
If you type an opening tag for let's say input "<input" you don't want to see
irrelevant context like "!doctype". The only hints you want to see are the
attributes
for the tag 'select'.
does it make sense?
______________________________________________________________________
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: 11
Date: Tue, 10 Jul 2007 02:35:15 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
Filesize Maximum
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=4405479
By: erikherlaar
Notepad++ crashes when opening a text file of about 2.3 GB (productdata). Are
you sure there is no limit? E.g. a counter reaching it's limits?
______________________________________________________________________
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: Tue, 10 Jul 2007 08:58:44 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Ctrl+Q
behaviour
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=4406092
By: nobody
Hi :)
Awww, thats a pity :(
Would it be possible to get this feature in future versions?
______________________________________________________________________
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: Tue, 10 Jul 2007 10:34:05 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] Convert wrap to
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=4406228
By: nobody
I have an EBCDIC file which I converted to ASCII. Everything is on one line
though and I need to know how to convert wraps to CR/LF. UltraEdit offers this
but I'm wanting to use Notepad++
Any help would be appreciated.
Brad
______________________________________________________________________
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
------------------------------
-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
------------------------------
_______________________________________________
Notepad-plus-plus mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/notepad-plus-plus
End of Notepad-plus-plus Digest, Vol 14, Issue 16
*************************************************