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 - Open Discussion] RE: drop down Auto
completion (auto dropdown) (SourceForge.net)
2. [notepad-plus - Open Discussion] RE: wrong characters on
printed pages (SourceForge.net)
3. [notepad-plus - Open Discussion] RE: wrong characters on
printed pages (SourceForge.net)
4. [notepad-plus - Open Discussion] RE: 4.2.2 crashes very often
(SourceForge.net)
5. [notepad-plus - Open Discussion] RE: [Request] Syntax
Highlighting & User Defi (SourceForge.net)
6. [notepad-plus - Help] RE: Some more "advanced" mass
replacement/del (SourceForge.net)
7. [notepad-plus - Plugin Development] RE: Tabs (SourceForge.net)
8. [notepad-plus - Open Discussion] RE: Will you develop this
nice notepad for Li (SourceForge.net)
9. [notepad-plus - Open Discussion] Run Macro until end of file
never stops. (SourceForge.net)
10. [notepad-plus - Plugin Development] RE: New Plugin available:
FTP_synchronize (SourceForge.net)
11. [notepad-plus - Help] Stuttered Page Up/Down (SourceForge.net)
12. [notepad-plus - Plugin Development] RE: New Plugin available:
FTP_synchronize (SourceForge.net)
13. [notepad-plus - Open Discussion] Crash if a file in
session.xml not found 422 (SourceForge.net)
----------------------------------------------------------------------
Message: 1
Date: Fri, 14 Sep 2007 06:32:22 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: drop
down Auto completion (auto dropdown)
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=4518393
By: nobody
//Autocomplete
if Notification.nmhdr.code = SCN_CHARADDED then
begin
if isAlNum(Chr(Notification.ch)) then
begin
Inc(Autocomplete_Chars);
if Autocomplete_Chars = 3 then
begin
Autocomplete_Chars := 0;
SendMessage(LocalNppData._nppHandle, WM_COMMAND, hiword(BN_CLICKED)
and loword(IDC_AUTOCOMPLETE), 0);
end;
end
else
begin
Autocomplete_Chars := 0;
end;
end;
Include the following code into a plugin's notification procedure. This should
open the dialog after 3 character.
Not tested and code is not checking for cursormodification were the counter
has to be reseted too.
But it's the basic for the plugin you need. Have fun with it.
______________________________________________________________________
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: 2
Date: Fri, 14 Sep 2007 07:10:57 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
wrong characters on printed pages
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=4518465
By: nobody
Walked around it and, it seems, we need a "Character set" combo box in style
setup dialog, which than will be passed to scintilla with
SCI_STYLESETCHARACTERSET
mesage...
This happened, for example, with Courier New font and default charset, when
with other font it could work fine... It seems default charsets for different
fonts are messed up in Windows, so we need a feature to control it %)
______________________________________________________________________
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: Fri, 14 Sep 2007 07:13:54 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
wrong characters on printed pages
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=4518471
By: nobody
Just for test i added line
execute(SCI_STYLESETCHARACTERSET, (WPARAM)styleID, (LPARAM)SC_CHARSET_RUSSIAN);
into setSpecialStyle() and it works perfectly with Courier New now! So we need
an ability to control it...
______________________________________________________________________
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: Fri, 14 Sep 2007 07:34:46 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
4.2.2 crashes very often
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=4518501
By: nobody
Sorry,
I forgot to name the versions.
NP++ V 4.2.2
FL 2.0 Alpha
regards,
Simon
______________________________________________________________________
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: Fri, 14 Sep 2007 07:39:55 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
[Request] Syntax Highlighting & User Defi
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=4518507
By: nobody
ASP is a built-in language, which have a corresponding lexer (parser written
on C). Amount of word groups and rules of parsing are defined inside this lexer.
You can use User-defined language, but it allows to create a very simple rules,
or you can download the source, open scintilla module, edit LexHTML.cxx and
add there whatever you like. Than recompile the SciLexer.dll and put it to np++
directory. Yep, not user-friendly, but fast in runtime and very powerfull way :)
______________________________________________________________________
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: 6
Date: Fri, 14 Sep 2007 08:18:58 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Some more
"advanced" mass replacement/del
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=4518555
By: nobody
open replace dialog, check "Regular expression"
1.
in find editbox type .*/.*
replace edit-box leave blank
press replace all
2.
same as previews, but first type ^.$
replace all
then type ^..$
replace all
and so on up to 5 dotes - this will delete lines with letters < 6
and then once type ^...........*$
and replace - this will delete lines with letters > 10
Regexes in notepad++ are very poor... With better regex engine this all could
be done with 1 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: 7
Date: Fri, 14 Sep 2007 09:00:51 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
Tabs
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=4518618
By: nobody
Tabs do not work logically (f0r me). When I ctrl tab through, it goes through
a history. Is there anyway to iterate through the tabs from left to right?
______________________________________________________________________
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: 8
Date: Fri, 14 Sep 2007 09:46:04 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: Will
you develop this nice notepad for Li
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=4518685
By: nobody
Linux in vmware = no Compiz, as far as I remember?
I'll go try Kate out...
______________________________________________________________________
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: Fri, 14 Sep 2007 09:47:27 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] Run
Macro until end of file never stops.
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=4518689
By: nobody
Hi,
I'm using Npp 4.2.2, and have a problem with the 'run macro until end of file'
feature - it never stops. It just goes in a loop, from top to bottom, over and
over and over.
______________________________________________________________________
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: Fri, 14 Sep 2007 10:22:54 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
New Plugin available: FTP_synchronize
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=4518730
By: harrybharry
For the initial directory option, please download the latest CVS version here
http://npp-plugins.cvs.sourceforge.net/*checkout*/npp-plugins/NppPlugins/FTP_syn
chronize/build/FTP_synchronize.dll
As for the crashes: still nothing on my own system, but because its so random
I think it may be the message thread. Ill see if I can change that so its not
threaded anymore. Ill also see if I can cleanup the cleanup ;)
______________________________________________________________________
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: Fri, 14 Sep 2007 10:42:44 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] Stuttered Page
Up/Down
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=4518764
By: boinka
Hi Don,
Could I humbly suggest the user-selectable option to map the Page Up/Down keys
to SCI_STUTTEREDPAGEUP/DOWN instead of SCI_PAGEUP/DOWN? I personally greatly
prefer the stuttered behavior to the always-whole-page behavior.
Thanks for a truly awesome editor!
______________________________________________________________________
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: 12
Date: Fri, 14 Sep 2007 08:37:01 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
New Plugin available: FTP_synchronize
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=4518582
By: nobody
No hang! But I do get a crash when N++ closed (not every time).
Application popup: notepad++.exe - Application Error : The instruction
at "0x77f87eeb" referenced memory at "0x00000014". The memory could not
be "read".
Application popup: notepad++.exe - Application Error : The instruction
at "0x0103545f" referenced memory at "0x0103545f". The memory could not
be "read".
This is after a FTP server connect and disconnect.
If I just open N++ and close it I still get a crash every time:
Application popup: notepad++.exe - Application Error : The instruction
at "0x010353d8" referenced memory at "0x010353d8". The memory could not
be "read".
If I disable all other plug-ins I still get the crash but not every time.
Getting there ;-)
Mark B
______________________________________________________________________
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: 13
Date: Fri, 14 Sep 2007 09:48:55 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] Crash if
a file in session.xml not found 422
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=4518691
By: nobody
Every now and then, NP++ 4.2.2 crashes on startup. There is no way to launch
it!
Deleting session.xml fixes the problem, but is a pain.
How to reproduce:
1. Have 10 files in session.xml
2. The 8th file no longer exists.
3. actifIndex="9" (meaning NP++ tries to select the 10th file (0..9) at
startup.
If I change actifIndex="9" to actifIndex="8" there is no crash.
So I guess NP++ is trying to select a tab that doesn't exist, and then crashes:
Faulting application notepad++.exe, version 4.2.2.0, faulting module
notepad++.exe,
version 4.2.2.0, fault address 0x0004dc41. (Offset 0x0004dc41)
The program '[2388] notepad++.exe: Native' has exited with code -1073741811
(0xc000000d). (Invalid Parameter?)
______________________________________________________________________
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 16, Issue 37
*************************************************