Send Notepad-plus-plus mailing list submissions to
        notepad-plus-plus@lists.sourceforge.net

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
        notepad-plus-plus-requ...@lists.sourceforge.net

You can reach the person managing the list at
        notepad-plus-plus-ow...@lists.sourceforge.net

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] remove hr from code fold? (SourceForge.net)
   2. [notepad-plus - Open Discussion] Plugin Central   links
      (SourceForge.net)
   3. [notepad-plus - Help] RE: How2preserve column     alignment when
      copy/paste (SourceForge.net)
   4. [notepad-plus - Help] Replace in columnar selection: Text FX
      Ctrl+R (SourceForge.net)
   5. [notepad-plus - Plugin Development] RE: NppExec   v0.3.1 has
      been released! (SourceForge.net)
   6. [notepad-plus - Plugin Development] RE: NppExec   v0.3.1 has
      been released! (SourceForge.net)
   7. [notepad-plus - Plugin Development] API for       Gmod Lua
      (SourceForge.net)
   8. [notepad-plus - Plugin Development] RE: NppExec   v0.3.1 has
      been released! (SourceForge.net)
   9. [notepad-plus - Help] RE: No toolbar in 5.4.3?? (SourceForge.net)
  10. [notepad-plus - Help] RE: No toolbar in 5.4.3?? (SourceForge.net)


----------------------------------------------------------------------

Message: 1
Date: Tue, 30 Jun 2009 16:48:56 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Help] remove hr from code
        fold?
To: nore...@sourceforge.net
Message-ID: <7472169.331...@sourceforge.net>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=7472169
By: space-lion

I just set up user-defined code folds, and I love it except for the long black
line that stretches across my page at each fold. Is there any way to get rid
of that?

Many thanks!

______________________________________________________________________
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: Tue, 30 Jun 2009 18:49:56 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] Plugin
        Central links
To: nore...@sourceforge.net
Message-ID: <7472358.331...@sourceforge.net>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=7472358
By: cchris

Sourceforge is performing tests at this moment, and URLs are not stable. All
SF links to plugins are currently broken. I'll wait a couple days for the dust
to settle, and then change all links as applicable.

Sorry for the inconvenience, but this disturbance of service was not planned.

CChris

______________________________________________________________________
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: Tue, 30 Jun 2009 14:44:05 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: How2preserve
        column  alignment when copy/paste
To: nore...@sourceforge.net
Message-ID: <7471967.331...@sourceforge.net>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=7471967
By: cchris

My first question would be: how are they not preserved? Could you explain what
happens and when?

CChris

______________________________________________________________________
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: Tue, 30 Jun 2009 20:05:38 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Help] Replace in columnar
        selection: Text FX Ctrl+R
To: nore...@sourceforge.net
Message-ID: <7472493.331...@sourceforge.net>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=7472493
By: fool4uanyway

What I said about consecutive replacement influence before in case of _deleting_
characters, is also true when you _add_ them.

Here's what happens.

xyz 123 abc def 
xyz 123 abc def

You select the column range:
>>z 123 a<<

The Ctrl+R Replace dialog recognizes this selection.

Now you replace each single space character by three other characters.

The result of the first replacement is this:
>>z","123 a<<

Oh no, that is what you _think_ it would be.

The replace function _still_ considers the range of the absolute columns you
entered (or confirmed by leaving them unchanged) before.

This, then, is your "new selection":
>>z","123<<

One space character was removed, three other characters inserted.
The result is that you lose two characters at the end of your original
selection.

Now, there is no more space character in your column range selection.

So you should take into account the (extra) characters that are _added_ by the
replacements.

Perhaps a better way to perform you changes would be using regular expressions,
or simply columnar selection or the column editor.

All would do if all your space characters are at absolute positions.
Just select the rectangular column of the space characters, press Alt+C and
enter ",".

Regular expressions will perhaps also do if the space characters are at 
different
positions.
You could simply check for occurrences of 
([^ ]+)_
(_ represents a space character) or
([^ ]+ [^ ]+ )
and replace them by \1",".

Do a forum search to find out more about those magic replacements.


______________________________________________________________________
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: Tue, 30 Jun 2009 20:54:38 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
        NppExec v0.3.1 has been released!
To: nore...@sourceforge.net
Message-ID: <7472567.482...@sourceforge.net>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=7472567
By: ilme

@DV:
You're right. I noticed that later on. 
I simply didn't capture the return key to update stuff afterwards.

Anyway I think it's quite stable now and this time I've included the source
for you:
http://www.file-upload.net/download-1735560/TabToPath_source.7z.html

I can already hear you cursing while looking at the source :O Everything's 
packed
into one header file, cuz I didn't know where/how to implement it best. There
are 3 places in the "DlgConsole.cpp" where I added some lines only. I commented
these places at the top of the header file for you. Actually only 2 places for
the TAB stuff, but meanwhile I added also deleting whole current commandline
by hitting ESC key.. like in windows console again.

There are some (maybe many?) dirty places in the code.. like calling
"Edit.SendMsg(...)" in the 'OnNotify' itself. Maybe you know better solutions
of course.. I tried my best in the end.

I was in a rush with comments and everything right now, cuz I will be offline
for 2 weeks now.

So good luck + thanks for checking it out
I hope it helped a little
Cheers

______________________________________________________________________
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: Tue, 30 Jun 2009 21:00:37 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
        NppExec v0.3.1 has been released!
To: nore...@sourceforge.net
Message-ID: <7472576.482...@sourceforge.net>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=7472576
By: ilme

I forgot to mention some things:

- I also added TAB functionality in 'CMD'  mode. But it expects a 'usual' 
command
prompt in order to read the current path ! In the beginning I even tried reading
out the PEB of the child process lol. I was hoping to get the current directory
string from there, but the problem was, that it never gets updated at runtime..
dooh !
- I was not sure how/if to implement the stuff you suggested about including
searching in
%PATH% for the tabbing ? It might be confusing when you start tabbing and it
lists simply
everything it finds. Current directory items + all %PATH% items :?

______________________________________________________________________
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: 7
Date: Tue, 30 Jun 2009 21:09:16 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] API
        for     Gmod Lua
To: nore...@sourceforge.net
Message-ID: <7472585.482...@sourceforge.net>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=7472585
By: sonar13

Is there anyway I could make an API for the Gmod 10 Lua syntax highlighting
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=482781



------------------------------

Message: 8
Date: Tue, 30 Jun 2009 21:11:36 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
        NppExec v0.3.1 has been released!
To: nore...@sourceforge.net
Message-ID: <7472592.482...@sourceforge.net>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=7472592
By: ilme

And again I forgot something :|

a) It doesn't jump into TAB code, if something's selected.. I assume that's ok

b) It doesn't jump into TAB code, if WRAP mode is on. Cuz it might crash then.
So don't start thinking why I doesn't work for you - you prolly enabled text
wrapping in the console window !!
That's a pity somehow. Well I'm used to enable wrap mode all the time, but we
can't have it all, right ? I think that would be another nightmare to implement
it for wrapped lines 8-o

ok now.. be back in 2 weeks

______________________________________________________________________
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, 30 Jun 2009 21:48:32 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: No toolbar in
        5.4.3??
To: nore...@sourceforge.net
Message-ID: <7472648.331...@sourceforge.net>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=7472648
By: aw2100

I have the same problem with the toolbar on my Windows 2000 System. 

With the version 5.4.2 I have no problem with the toolbar.

I will use the older version at the moment and hope that the bug is fixed in
the next version.

______________________________________________________________________
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: Tue, 30 Jun 2009 21:54:26 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: No toolbar in
        5.4.3??
To: nore...@sourceforge.net
Message-ID: <7472659.331...@sourceforge.net>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=7472659
By: aw2100

the link to the bug:
https://sourceforge.net/tracker/?func=detail&aid=2805832&group_id=95717&atid=612
382

______________________________________________________________________
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



------------------------------

------------------------------------------------------------------------------


------------------------------

_______________________________________________
Notepad-plus-plus mailing list
Notepad-plus-plus@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/notepad-plus-plus


End of Notepad-plus-plus Digest, Vol 38, Issue 8
************************************************

Reply via email to