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] RE: Who runs     this project?
      (SourceForge.net)
   2. [notepad-plus - Open Discussion] Notepad++        always hang when
      searching (SourceForge.net)
   3. [notepad-plus - Open Discussion] RE: Macros       broken
      (SourceForge.net)
   4. [notepad-plus - Open Discussion] How to: 1 ^      start-of-line
      per line in regexp? (SourceForge.net)
   5. [notepad-plus - Help] npp start up (SourceForge.net)
   6. [notepad-plus - Open Discussion] RE: Notepad++    always hang
      when searching (SourceForge.net)
   7. [notepad-plus - Help] Replacing a line (SourceForge.net)
   8. [notepad-plus - Help] RE: Replacing a line (SourceForge.net)
   9. [notepad-plus - Open Discussion] BUG: Save As     Dialog acts on
      newly opened file (SourceForge.net)
  10. [notepad-plus - Plugin Development] RE: Problem   with "subtree
      root folder" (SourceForge.net)
  11. [notepad-plus - Open Discussion] Column select    mode: deleting
      block very slow (SourceForge.net)
  12. [notepad-plus - Open Discussion] RE: Insert       unicode character
      via keyboard (SourceForge.net)


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

Message: 1
Date: Thu, 08 Nov 2007 18:16:05 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: Who
        runs    this project?
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=4613960
By: donho

People (including me) usually just uses the softwares without expressing their
gratitude.
Nice to know this project is appreciated enthusiastically by someone.

Notepad++ project stands on the shoulder of a giant - Scintilla edit component
(another open source project), enriched by numerous of brilliant plugins
( http://sourceforge.net/projects/npp-plugins/ ), and contributed by a lot of
volunteers who take their time to translate Notepad++/answer the questions on
the forums.
So its success (if we can say that) is based on open source's approach and free
software's spirit.

Feel free to ask your questions and contribute your knowledge on the forums.
That's how this open source project work :)

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: 2
Date: Thu, 08 Nov 2007 20:25:47 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion]
        Notepad++       always hang when searching
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=4614060
By: nobody

Recently, I suffered a lot from the situation where application stop responding
when a simple text search is performed in current file...

Sometimes, it just takes long time to search even in a very small file..

I tried to re-install the program but it does not work...

Please help 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=331753



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

Message: 3
Date: Thu, 08 Nov 2007 21:37:17 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Macros  broken
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=4614108
By: bullock

I'll try to look into this, but don't expect results anytime soon.

In the meantime, I've found that between Backspace and Delete, one tends to
be more reliable in macros than the other.

Regards.
Greg


______________________________________________________________________
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, 09 Nov 2007 00:46:18 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] How to:
        1 ^     start-of-line per line in regexp?
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=4614244
By: nobody

I want to replace the first column containing a number in a tab separated file.

I use the following regular expression in the Find field to accomplish this:
^[0-9]+\t

I replace this with nothing. The Replace field is empty.

The result of this is not what I expected. What happens is that every 
consecutive
column containing a number is also deleted. This is because, after deleting
the first, the next column has become the new first column on the same line.

I expected the ^ start-of-line marker to be active only once per line.

So I can't use CTRL+H Replace Dialog for this.

If I use the CTRL+R advanced Find/Replace Dialog and have only Regular Expr
checked, I have the same problem.
Fortunately, there is the 1 per line checkbox in this Dialog, which allows me
to achieve what I want.

There is also the Incremental checkbox in this Dialog. Checking it in this case
has no use, because what would be expected behavior then, is the same as the
default behavior.

Wouldn't it make more sense to automatically treat the ^ start-of-line as "1
per line" feature, allowing users to do this repeatedly (on the changed line)
by checking the Incremental checkbox?

Is or will there be a solution for my problem using the CTRL+H Replace Dialog?

Similarly, when using $ end-of-line marker things work as expected. This is
because the cursor is positioned _at_ the end of the line, after replacing,
so no more match will be found for any characters _before_ the new cursor 
position.
Clearly, this is what I logically also would expect when using the ^ 
start-of-line
marker.

Additionally, checking Incremental when using $ might be implemented as "Check
again the end of the line (until no longer matched)". I would very much welcome
^ and $ to be treated "equally" in this way, that is, with the same options
checked both ^ and $ work either _only once per line_ or _repeatedly_.

Are there any advocates for this?


______________________________________________________________________
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, 09 Nov 2007 01:04:47 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] npp start up
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=4614268
By: nobody

Is it possibile to have Notepad++ starting without a new empty file in it? I'd
like to have it started completely empty.

Bye,
Max


______________________________________________________________________
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: Fri, 09 Nov 2007 02:23:38 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Notepad++       always hang when searching
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=4614363
By: donho

What text do you search? with which option?

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: 7
Date: Fri, 09 Nov 2007 02:35:20 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] Replacing a line
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=4614380
By: nobody

  I need to replace a line in many archives .xml but I some find in the program
how to replace a word or phrase, someone knows how to proceed? Thank's to see
the thread. =)

______________________________________________________________________
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: 8
Date: Fri, 09 Nov 2007 02:41:01 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Replacing a
        line
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=4614387
By: nobody

Wow... That sounds... By the way, what _are_ you talking about, really?

Yes, it's really nice indeed to see the thread.


______________________________________________________________________
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: 9
Date: Fri, 09 Nov 2007 02:44:51 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] BUG:
        Save As Dialog acts on newly opened 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=4614392
By: nobody

I had a file in Notepad++ I wanted to save (as), and the Save As Dialog was
open.

Then I opened another file from Windows Explorer and Notepad++ showed up again,
bringing up the Save As Dialog again. I entered the name for the original file
I wanted to save, but it turned out the just opened file was saved using this
name, instead of the file I had chosen to save...


______________________________________________________________________
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, 09 Nov 2007 03:03:30 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
        Problem with "subtree root folder"
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=4614423
By: nobody

Just to let you know.

I found out how the complete directory tree from the root can be displayed.

1. Connect to the FTP server
 - You start in your home directory.
 - Only the way from the root to your home directory is displayed.
 - Clicking on the root symbol (aka "/") and "Refresh" does not change
anything.

2. Double click any folder beside the root folder.
 - All folders from the root are displayed.

If this a bug, maybe you could take care of in a future release.
If it is a feature, I'm just to dumb to understand. :-)

Thanks again for this plugin!
It helps a lot.

Haefti

______________________________________________________________________
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, 09 Nov 2007 04:22:51 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] Column
        select  mode: deleting block very slow
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=4614499
By: nobody

How come it takes Notepad++ so long to delete or remove a rectangular area in
column select mode?

Removing two columns of data in a tab separated file of 2000 lines takes
minutes.
Yesterday I tried the same with a file of 13000 lines. I terminated N++ when
it was still processing after a very long time.

Does this have something to do with the presence of tab characters?


______________________________________________________________________
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: Fri, 09 Nov 2007 04:26:00 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Insert  unicode character via keyboard
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=4614505
By: nobody

Dear Idris,

Thank you so much.
You said "then copied them to npp", I know that it works, but it does not work
by inserting these characters directly by keyboard.
I say that it is completely related to NotePad++, because I have not this 
problem
with PSPad editor at all. ( http://www.pspad.com/ ) I can easily insert 06CC
character in PSPad by keyboard and there is no problem with unicode characters.

Regards,
Mohammad.Mnt
[EMAIL PROTECTED]



______________________________________________________________________
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: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/

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

_______________________________________________
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 18, Issue 28
*************************************************

Reply via email to