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] RE: NppExec: external
plugins' messages (SourceForge.net)
2. [notepad-plus - Plugin Development] RE: running C program in
NPP console PROBLEM! (SourceForge.net)
3. [notepad-plus - Help] RE: Is it possible to dock windows
console in (SourceForge.net)
4. [notepad-plus - Open Discussion] RE: MS-DOS Style
(SourceForge.net)
5. [notepad-plus - Help] RE: Configure style of "Style token
found" (SourceForge.net)
6. [notepad-plus - Open Discussion] Hiding/Unhiding lines bug
(SourceForge.net)
7. [notepad-plus - Open Discussion] RE: Syntax Highlightning for
Makefile (SourceForge.net)
8. [notepad-plus - Open Discussion] replace notepad with
notepad++ (SourceForge.net)
9. [notepad-plus - Open Discussion] RE: Hiding/Unhiding lines
bug (SourceForge.net)
10. [notepad-plus - Open Discussion] RE: Notepad++ v5.0.3 new
release (SourceForge.net)
11. [notepad-plus - Open Discussion] Bug: C# nested regions
(SourceForge.net)
12. [notepad-plus - Open Discussion] RE: replace notepad with
notepad++ (SourceForge.net)
13. [notepad-plus - Help] RE: syntax folding broken in 5.x?
(SourceForge.net)
14. [notepad-plus - Open Discussion] RE: Notepad++ v5.0.3 new
release (SourceForge.net)
----------------------------------------------------------------------
Message: 1
Date: Wed, 06 Aug 2008 08:27:30 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
NppExec: external plugins' messages
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=5149664
By: dv__
Did somebody try 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=482781
------------------------------
Message: 2
Date: Wed, 06 Aug 2008 08:40:06 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
running C program in NPP console 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=5149691
By: dv__
This is a known limitation. NppExec uses pipes to redirect the console
input/output
and, in your situation, nothing is read from the pipe until you enter something.
The WinAPI function PeekNamedPipe just says there is nothing in the pipe and
that's all, NppExec can not do anything with it.
So I recommend you to use NPP_RUN to run your application in its own (console)
window.
I.e. your NppExec's script will be similar to:
// compiling
gcc test.c -o test.exe
// running
NPP_RUN test.exe
Or, in common case, something similar to:
// compiling current file
gcc "$(FULL_CURRENT_PATH)" -o "$(CURRENT_DIRECTORY)\$(NAME_PART).exe"
// running the output .exe file
NPP_RUN "$(CURRENT_DIRECTORY)\$(NAME_PART).exe"
For more details, open NppExec's Console and type:
help
and press Enter.
______________________________________________________________________
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: Wed, 06 Aug 2008 08:43:41 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Is it possible
to dock windows console in
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=5149699
By: dv__
You can start cmd.exe right in NppExec's Console ;-)
______________________________________________________________________
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, 06 Aug 2008 08:44:51 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
MS-DOS Style
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=5149702
By: narcissistic
I can't get the error again, however I am getting this error when installing
now.
---------------------------
Notepad++ v5.0.3 Setup
---------------------------
Error opening file for writing:
C:\Program Files\Notepad++\LINEDRAW.TTF
Click Abort to stop the installation,
Retry to try again, or
Ignore to skip this file.
---------------------------
Abort Retry Ignore
---------------------------
______________________________________________________________________
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: Wed, 06 Aug 2008 08:51:04 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Configure style
of "Style token found"
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=5149716
By: djf3
Does anyone have an idea??
Thankyou!
______________________________________________________________________
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: Wed, 06 Aug 2008 09:04:02 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion]
Hiding/Unhiding lines bug
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=5149740
By: randombystander
My problem with hiding and unhiding lines with Notepad++ v5.0.3.
1. I have multiple lines hidden
2. I unhide any section (not the first or last)
3. That section expands, but the blue arrows in the margins of all the sections
below [only] disappear but the sections do not expand
4. Switch tabs away from this document and back, and all the sections below
are now visible
I am sorry if this is hard to understand, English is not my forte. I hope this
is known, but if not maybe a fix?
somerandombystander
______________________________________________________________________
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: Wed, 06 Aug 2008 11:16:37 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
Syntax Highlightning for Makefile
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=5149965
By: danielweber
Hi Joe :)
I created and submitted a patch that allows registering languages for
extensions (jam/txt/bat) and complete file names (i.e. Makefile/Jamfile)
as well:
http://sourceforge.net/tracker/index.php?func=detail&aid=2038993&group_id=957
17&atid=612384
Cheers,
Daniel
______________________________________________________________________
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: Wed, 06 Aug 2008 12:06:32 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] replace
notepad with 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=5150037
By: diablo6
how can i replace notepad with notepad++ and when i click on notepad icon in
the accessories list, notepad++ will start
______________________________________________________________________
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: Wed, 06 Aug 2008 12:12:33 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
Hiding/Unhiding lines bug
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=5150049
By: vserghi
Could this be related to this bug I wonder.
http://sourceforge.net/forum/forum.php?thread_id=2141884&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=331753
------------------------------
Message: 10
Date: Wed, 06 Aug 2008 12:14:45 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
Notepad++ v5.0.3 new release
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=5150051
By: chill3d
me too. and its terrible. I haven't imagined how dependent I am from the Quick
Text Plugin.
______________________________________________________________________
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: Wed, 06 Aug 2008 12:31:13 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] Bug: C#
nested regions
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=5150088
By: phirzel
Hi
I have nested #region definitions which is supported by .Net like:
#region outer
#region inner
#endregion /*inner*/
#endregion /*outer*/
Closing the outer region still shows TWO endregion lines instead of the outer
only!
By the way I am very happy with your great tool!
Regards
Peter
______________________________________________________________________
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: Wed, 06 Aug 2008 12:39:31 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
replace notepad with 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=5150103
By: thamsher
See http://notepad-plus.sourceforge.net/uk/download.php
Below the the Plugins section is Notepad Replacement
______________________________________________________________________
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: Wed, 06 Aug 2008 12:51:16 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: syntax folding
broken in 5.x?
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=5150122
By: donho
I can not reproduce the bug in v5.0.3.
Could you provide the instructions to reproduce it?
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=331754
------------------------------
Message: 14
Date: Wed, 06 Aug 2008 12:52:33 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
Notepad++ v5.0.3 new release
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=5150126
By: donho
Use shortcut mapper to remap the keys.
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
------------------------------
-------------------------------------------------------------------------
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 27, Issue 7
************************************************