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] Copy column (SourceForge.net)
   2. [notepad-plus - Help] duplicate word on line      copy colum
      equator = (SourceForge.net)
   3. [notepad-plus - Help] RE: Copy column (SourceForge.net)
   4. [notepad-plus - Help] RE: Replace [In     selection] if
      selection=column (SourceForge.net)
   5. [notepad-plus - Help] RE: Where is "Stream        unComment"
      (SourceForge.net)
   6. [notepad-plus - Plugin Development] RE: NppExec   Query
      (SourceForge.net)
   7. [notepad-plus - Open Discussion] RE: Single       line
      comment/uncomment (SourceForge.net)
   8. [notepad-plus - Open Discussion] RE: Single       line
      comment/uncomment (SourceForge.net)
   9. [notepad-plus - Open Discussion] Feature  request: sort
      selected lines (SourceForge.net)
  10. [notepad-plus - Open Discussion] Allow edition    of MS Compound
      Documents (SourceForge.net)


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

Message: 1
Date: Tue, 30 Jun 2009 22:29:53 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Help] Copy column
To: nore...@sourceforge.net
Message-ID: <7472699.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=7472699
By: erictal

Hi,
I'm very new to notepad++ so I apologize if my question make no sense.

I have a list like this:
c=
fd=
b=

and I would like to make it:
c=c
fd=fd
b=b

(copy values before the sign '=' and paste them after the sign '=')
It is a very long list so I don't want to do it line by line.


Can anyone advise?

Thanks,
Eric.

______________________________________________________________________
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 22:37:57 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Help] duplicate word on
        line    copy colum equator =
To: nore...@sourceforge.net
Message-ID: <7472718.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=7472718
By: fool4uanyway

Use either the Ctrl+F / Ctrl+H Find/Replace dialog or the Ctrl+R Text FX 
Advanced
Find/Replace dialog.

Check regular expression mode.

In the Find field, enter:
^([^=]+)=$

In the Replace field, enter:
\1=\1

Replace all occurrences.

^ ____ Search for/from the start of each line
[^=] _ Search for any character not equal to =
+ ____ Search for any consecutive string of the previous match, with at least
one
() ___ Groups an expression to be able to re-place it
= ____ the = sign
$ ____ Search for the end of the line

\1 ___ Re-place the first grouped expression ()
= ____ re-place the = sign
\1 ___ Place the first grouped expression again


______________________________________________________________________
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: Tue, 30 Jun 2009 23:27:46 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Copy column
To: nore...@sourceforge.net
Message-ID: <7472774.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=7472774
By: erictal

Perfect.

Thank you so much.

______________________________________________________________________
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, 01 Jul 2009 00:44:58 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Replace [In
        selection] if selection=column
To: nore...@sourceforge.net
Message-ID: <7472849.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=7472849
By: beerslayer

To cchris: the "1 per line" box was never checked.  But thanks for the 
suggestion
anyway.

To Fool4UAnyway:
Hmmm... interesting.  I did a bit of experimenting and confirmed exactly what
you are saying about the selection changing.  That's indeed why only one column
of spaces got replaced.  I don't know if that was the intended functionality
or not, but it seems obvious to me that text which is selected when an operation
is initiated should remain selected while that operation is taking place.  The
behaviour you pointed out (selected text becoming invisibly unselected) seems
very counter-intuitive to me.

I've tried working with Notepad++'s "regular expressions" in the past and found
them almost impossible to use.  Things that I have tried to do with regexes
that I *know* work in Perl or Awk do not work in Notepad++, and leave me trying
repeatedly to tweak spaces or periods or other characters to trick Notepad++
into doing what I want it to do.  I finally gave it up as a lost cause several
months ago, and I do not even attempt to use them any more.

Selecting just the column of spaces and using Alt-C as you suggest did exactly
what I needed.  This is probably the solution I should have used from the start,
except that I was trying to "kill two birds with one stone" and replace both
columns of spaces with a single operation.  In hindsight, it would have been
quicker to do it this way... :P

Thank you very, VERY much for your help!  Not only did you tell me what I needed
to know, but you gave me a glimpse into the internal workings of Notepad++ as
well.


______________________________________________________________________
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: Wed, 01 Jul 2009 02:08:51 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Where is
        "Stream unComment"
To: nore...@sourceforge.net
Message-ID: <7472939.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=7472939
By: zhu19774279

thx

______________________________________________________________________
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, 01 Jul 2009 03:03:06 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
        NppExec Query
To: nore...@sourceforge.net
Message-ID: <7472983.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=7472983
By: paoloricardo

> Maybe it expects the file path in double quotes

No, this doesn't work

> Plugins -> NppExec -> Help/About.

I don't have any of npes_temp.txt, npes_saved.txt or nppexec.ini in any of NPP
's sub-folders. Nothing in Plugins\Config. Nor do I have npec_cmdhistory.txt

______________________________________________________________________
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: Wed, 01 Jul 2009 07:41:11 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Single  line comment/uncomment
To: nore...@sourceforge.net
Message-ID: <7473305.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=7473305
By: laci272

Hello,

I've did just that, but it doesn't work. 
It comments a line above my text in a really strange behaviour. 
If I have a line: 1234567890 , the commented result will be // 12//34567890  ?!
Any ideas why this happens to me? 
I'm using the latest built, 543 unicode.

______________________________________________________________________
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, 01 Jul 2009 07:52:46 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Single  line comment/uncomment
To: nore...@sourceforge.net
Message-ID: <7473342.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=7473342
By: laci272

I forgot to mention that it also adds // characters in the line of code I was
recording the action.
If I open a new file and record it there, it adds the // in the first line of
code I'm using it on, commenting HALF of the <?php tag. (ex.: <?p//hp ) Upon
using the macro for many times, I get (<?p///////////////////////////hp)

______________________________________________________________________
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, 01 Jul 2009 08:06:47 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] Feature
        request: sort selected lines
To: nore...@sourceforge.net
Message-ID: <7473395.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=7473395
By: tetardd

Hi,

I can't find this function so here is a feature request:

It would be nice to be able to sort a selection of lines.

(For example, in my programming, in my unit declaration (Delphi), I can then
sort the variables, functions and procedures by alphabetical order).

David.

______________________________________________________________________
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, 01 Jul 2009 08:17:49 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] Allow
        edition of MS Compound Documents
To: nore...@sourceforge.net
Message-ID: <7473414.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=7473414
By: tetardd

Hi,

A feature request (maybe better as a plug-in request, I don't know) that will
give an incredible edge to Notepad++:

A long time ago, MS has introduced what they call "Structured Storage", which
in essence, are files where the internal structure ressembles a drive structure
with files (they call them IStream) and folders (they call them IStorage). This
allows softwares to save/read their own file formats with complex data in a
tree-like structure (MS Office uses this for example). Very powerful and very
useful.

The downside it that these file cannot easily be read for debugging (they can
be opened with an hexadecimal editor, for example the Notepad plug-in) but you
have a horrible jumble so almost useless. What you wan to do is check that the
list of storages(=folders) is the one that you expect, that they are in the
right tree structure and check similarly the list and content of the
streams(=files).

It would be nice to have an editor that displays the storage(=folder) structure
of such a file (a tree view) and the stream(=file structure) and allow each
stream's content to be edited individually (as an hexadecimal or text, i.e.
using the hex edit plug-in). This way, if your software does handle MS 
Structured
storage, a programmer would be able to debug and check the files he/she 
generates
and check they are OK. Every developer would have a copy of Notepad++ if that
feature was present.

As far as I know, the only (commercial) editor that has this feature is FlexEdit
and it's rubbish.

David.


______________________________________________________________________
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



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

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


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

_______________________________________________
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 9
************************************************

Reply via email to