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
        [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] New feature:     Rename file
      (SourceForge.net)
   2. [notepad-plus - Open Discussion] RE: how to       select all lines
      containing a keyw (SourceForge.net)
   3. [notepad-plus - Help] RE: Macro with search to    end of file
      (SourceForge.net)
   4. [notepad-plus - Help] RE: Macro with search to    end of file
      (SourceForge.net)
   5. [notepad-plus - Help] RE: how to append lines     with a comma or
      other cha (SourceForge.net)
   6. [notepad-plus - Open Discussion] New feature:     Rename file
      (SourceForge.net)
   7. [notepad-plus - Open Discussion] RE: how to       select all lines
      containing a keyw (SourceForge.net)
   8. [notepad-plus - Open Discussion] RE: how to       select all lines
      containing a keyw (SourceForge.net)
   9. [notepad-plus - Plugin Development] RE: insert    plugin, a web
      edition... (SourceForge.net)
  10. [notepad-plus - Open Discussion] line selection   & numbers
      (SourceForge.net)
  11. [notepad-plus - Help] Search for occurence of 2   Items
      (SourceForge.net)
  12. [notepad-plus - Open Discussion] RE: N++ 4.9.2,   behaviour for
      undo action (SourceForge.net)


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

Message: 1
Date: Tue, 03 Jun 2008 19:27:06 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] New
        feature:        Rename file
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=5006352
By: pedery

Upon right-clicking a tab page it would be nice to be able to rename it in one
go.

______________________________________________________________________
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: Tue, 03 Jun 2008 19:32:44 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: how
        to      select all lines containing a keyw
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=5006358
By: pshute

"Still, you can use Notepad++'s extensive toolkit to achieve what you what."

Good answer.  But myxador doesn't explain what he wants to do once he has 
selected
all these lines.  Selecting non-contiguous lines isn't posible, as far as I
know, so there's obviously more to the question.

Perhaps myxador just wants to see where all the matches are.  If so, then 
enabling
"Mark Line" and "Style found token" in the Find (control+F) dialog before 
clicking
Find All should help.  Otherwise the URL Fool4UAnyway provided should help with
most other possibilities.



______________________________________________________________________
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: Wed, 04 Jun 2008 00:21:20 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Macro with
        search to       end of file
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=5006731
By: fool4uanyway

I suggest you can easily check what repeating the macro does by either execute
it a number of times manually, or entering a number (say 3) in the Run Macro
Multiple Times dialog. Perhaps you will find that the dialog will find the same
match over and over again.

You can also use either Find/Replace dialog to add a word to each line 
containing
your search string.

Select or check the regular expression mode.

In the Find field, you'll want to search for your word preceded or followed
by any number of characters, including none at all:

(^.*wordtosearchfor.*$)

^_______ = match must be/start at the beginning of the line (not necessary with
.*)
._______ = search for any character
*_______ = search for any number of the precedinng character (0 or more times)
(......) = groups an expression to allow re-placing it in the Replace field
$_______ = match must be/end at the end of the line (not necessary with .*)

In the Replace field, you will simply re-place the found match and add the word
Hello:

\1Hello

\1______ = refers to the first () grouped expression in the Find field and 
re-places
it

See also:

"how to append lines with a comma or other character" (Help forum) 
http://sourceforge.net/forum/forum.php?thread_id=1967758&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=331754



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

Message: 4
Date: Wed, 04 Jun 2008 00:24:27 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Macro with
        search to       end of file
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=5006736
By: fool4uanyway

Find field:
^(.*wordtosearchfor.*)$

I suggest you use the advanced Find/Replace dialog (CTRL+R), because the CTRL+H
Replace dialog will (also) find (and replace) the same match over and over
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: 5
Date: Wed, 04 Jun 2008 00:27:53 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: how to append
        lines   with a comma or other cha
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=5006748
By: fool4uanyway

Also here, the CTRL+H Replace dialog will find a match (and replace/add) on
the same line over and over again.

Use the CTRL+R advanced Find/Replace dialog.


______________________________________________________________________
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, 04 Jun 2008 00:30:52 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] New
        feature:        Rename file
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=5006763
By: fool4uanyway

Perhaps someone had the same idea before you and posted it as well.

This has been discussed before.


______________________________________________________________________
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, 04 Jun 2008 00:43:16 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: how
        to      select all lines containing a keyw
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=5006787
By: fool4uanyway

> But myxador doesn't explain what he wants to do once he has selected all these
lines.
> Selecting non-contiguous lines isn't posible, as far as I know, ...

It is possible, more or less, using TextFX Viz. That is, TextFX Viz allows you
to copy the visible part of a selection. Of course one can copy matches and
paste them into a new document.

> Perhaps myxador just wants to see where all the matches are.

I refer to a message that describes how you can "select" all those lines. I
believe that is what myxador asks for.

See also the message

"RE: copy to clip all text matching regex pattern"
http://sourceforge.net/forum/message.php?msg_id=4915652

in the thread

"copy to clip all text matching regex pattern" (Help forum)
http://sourceforge.net/forum/forum.php?thread_id=2012623&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: 8
Date: Wed, 04 Jun 2008 02:58:29 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: how
        to      select all lines containing a keyw
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=5007054
By: donho

> But myxador doesn't explain what he wants to do once he has selected all these
lines.
> Selecting non-contiguous lines isn't posible, as far as I know,
> so there's obviously more to the question. 

If he want to do some operations on the marked lines, here's a good news :
In Notepad++ v5, user can delete the marked lines and do copy/cut/paste from
(or to) the clipboard on the marked lines.

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



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

Message: 9
Date: Wed, 04 Jun 2008 03:26:46 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
        insert  plugin, a web edition...
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=5007115
By: agro1986

Great plugin! I've posted a howto on my blog:

http://www.agronesia.net/2008/06/04/notepad-html-editing-tag-insertion-surround-
plugin/

Bug:

>From the shortcut mapper, all entries for the plugin is "not used"

Wishlist:

We should be able to use a syntax like this:

&Link=<a href="{1:Destination URL}" target="{2:target}">|</a>

And then the plugin will popup a dialog box asking for "Destination URL" and
"target" before inserting it. Mockup screenshot on the blog entry.

Thanks a lot for the 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: 10
Date: Wed, 04 Jun 2008 03:48:08 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] line
        selection       & numbers
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=5007160
By: th_fischer

I find myself creating bookmarks when I try to select a full line (like some
others do).
I want to reiterate the request for switching the bookmark column to the left
of the numbering column. This also would make the behaviour more consitent:
now to select a line you can click on the right of the numbers if the bookmark
column is hidden and you have to click left of the numbers if it is present.
Thomas

______________________________________________________________________
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, 04 Jun 2008 04:11:28 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] Search for
        occurence of 2  Items
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=5007194
By: cosoco

How to search for files, which contain both of 2 or more items?
E.g.:
Search in files for "house" AND "street".


______________________________________________________________________
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: Wed, 04 Jun 2008 07:38:30 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: N++
        4.9.2,  behaviour for undo action
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=5007616
By: chknbone

I'm seeing this behavior as well. In my case I had made a significant amount
of changes and with one click of the undo button the file reverted back to the
previously saved version thus wiping out all of my changes. Fortunately, one
click of redo button and all my changes were there again.

I found that after closing the file and re-opening it, the "normal" undo 
behavior
was restored.

______________________________________________________________________
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



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

-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php

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

_______________________________________________
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 25, Issue 4
************************************************

Reply via email to