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: Notepad++    v4.8 official
      release (SourceForge.net)
   2. [notepad-plus - Open Discussion] RE: Request:     option to
      control horizontal scr (SourceForge.net)
   3. [notepad-plus - Help] RE: Deleteing part of       Comma Delim File
      (SourceForge.net)
   4. [notepad-plus - Help] RE: Deleteing part of       Comma Delim File
      (SourceForge.net)
   5. [notepad-plus - Help] RE: Deleteing part of       Comma Delim File
      (SourceForge.net)
   6. [notepad-plus - Open Discussion] Start/End (SourceForge.net)
   7. [notepad-plus - Help] RE: Deleteing part of       Comma Delim File
      (SourceForge.net)
   8. [notepad-plus - Help] RE: Deleteing part of       Comma Delim File
      (SourceForge.net)
   9. [notepad-plus - Open Discussion] RE: Notepad++    v4.8 official
      release (SourceForge.net)
  10. [notepad-plus - Open Discussion] RE: Start/End (SourceForge.net)
  11. [notepad-plus - Help] RE: adding "folders" +/-    to sql
      language def (SourceForge.net)
  12. [notepad-plus - Open Discussion] RE: Feature      request: Line
      Change Indicators (SourceForge.net)
  13. [notepad-plus - Open Discussion] RE: Request:     option to
      control horizontal scr (SourceForge.net)


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

Message: 1
Date: Wed, 27 Feb 2008 14:48:35 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Notepad++       v4.8 official 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=4805054
By: nobody

That link only shows the .md5 file, not the program files.  Please update the
release files.  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: 2
Date: Wed, 27 Feb 2008 14:54:36 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Request:        option to control horizontal scr
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=4805059
By: nobody

> So it is still dynamic

regardless of what it's called, in 4.7.5 the horizontal scrollbar was not shown
unless the text extended beyond the window, in 4.8 it is always shown

I am asking to make this behavior configurable, this is at least the third time
that you flipped it, just make it a setting and everyone can select what they
prefer

______________________________________________________________________
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, 27 Feb 2008 15:01:20 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Deleteing part
        of      Comma Delim 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=4805071
By: nobody

I wont swear, but something like this should work -
Goto Edit->Find and select the Replace tab and check regular expression
find this:
([^,]*,[^,]*,[^,]*,[^,]*,[^,]*,[^,]*,[^,]*,[^,]*,[^,]*,[^,]*,[^,]*,[^,]*,[^,]*,[
^,]*,[^,]*,[^,]*,[^,]*,).+(,.*)
replace with:
\1\2

______________________________________________________________________
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, 27 Feb 2008 15:04:23 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Deleteing part
        of      Comma Delim 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=4805076
By: nobody

oops, I meant this (I ended the last one wrongly - I'm not sure if $ at end
will work either)

([^,]*,[^,]*,[^,]*,[^,]*,[^,]*,[^,]*,[^,]*,[^,]*,[^,]*,[^,]*,[^,]*,[^,]*,[^,]*,[
^,]*,[^,]*,[^,]*,[^,]*,).+(,[^,]*) $
replace with: 
\1\2 

______________________________________________________________________
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, 27 Feb 2008 15:11:13 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Deleteing part
        of      Comma Delim 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=4805087
By: nobody

Using regex is a way to do it.

You might also want to replace each , by a newline + some identifier and then
record and play a macro that deletes each 7th to 16th line, then replace the
newline + identifier again by ,'s.

The most easy way to achieve this is use a spreadsheet program like Excel. Just
read the csv file, remove the particular columns and write it back.

You may also replace all ,'s by tabs in Notepad++ and then paste the data into
Excel and do the same.


______________________________________________________________________
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, 27 Feb 2008 15:14:56 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion]
        Start/End
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=4805091
By: nobody

How to add some text on the begin/end line (this same text for each line)?
Example (before operation):

<table border="1">
<tr align="center">
<td rowspan="2">My index </td>

After:

writeln(f,'<table border="1">');
writeln(f,'<tr align="center">');
writeln(f,'<td rowspan="2">My index </td>');

______________________________________________________________________
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, 27 Feb 2008 15:18:39 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Deleteing part
        of      Comma Delim 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=4805095
By: nobody

Thanks...the export to excel then replace tab w , did the trick!

Thanks 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: 8
Date: Wed, 27 Feb 2008 15:20:55 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Deleteing part
        of      Comma Delim 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=4805098
By: nobody

Oops, again - I was really really sloppy - I tested this one and it worked

^([^,]*,[^,]*,[^,]*,[^,]*,[^,]*,[^,]*,)[^,]*,[^,]*,[^,]*,[^,]*,[^,]*,[^,]*,[^,]*
,[^,]*,[^,]*,[^,]*,[^,]*(,[^,]*)
replace with:  
\1\2 

______________________________________________________________________
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: Wed, 27 Feb 2008 13:55:10 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Notepad++       v4.8 official 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=4804937
By: nobody

Well. I actually needed the convert function yesterday but didn't find the new
release until today.
A problem/bug though. Converting back and forth crashes my notepad++ (on vista).

______________________________________________________________________
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, 27 Feb 2008 15:22:54 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Start/End
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=4805104
By: nobody

find: ^(.*)$
replace: writeln\(f,'\1'\);

enable regex. Or create a macro with home and end, typing your characters en
pressing the down arrow, then run to the end of the file.

______________________________________________________________________
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, 27 Feb 2008 14:12:34 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: adding
        "folders" +/-   to sql language def
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=4804974
By: nobody

Add any of these Keywords entries to the Languages group/tag:

<Keywords name="Delimiters">[00]00</Keywords>
<Keywords name="Folder+">Begin FolderOpenKeywords</Keywords>
<Keywords name="Folder-">End FolderCloseKeywords</Keywords>
<Keywords name="Operators"># ( ) { } &lt; = &gt;</Keywords>
<Keywords name="Comment">1 2 0[</Keywords>

... or something likt it.

Just look in the stylers.xml for the default languages to get a clue.


______________________________________________________________________
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, 27 Feb 2008 15:40:24 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Feature request: Line Change Indicators
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=4805122
By: nobody

It would also probably only be practical if it didn't require a ton of 
resources.
I would much rather be able to open very large files and edit them rather rather
than have some bookkeeping features, however nice they might be.

But Don indicates it aint likely to happen anyway.

______________________________________________________________________
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, 27 Feb 2008 15:41:11 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Request:        option to control horizontal scr
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=4805126
By: donho


> regardless of what it's called, in 4.7.5 the horizontal scrollbar
> was not shown unless the text extended beyond the window, in 4.8 it is always
shown

No. in 4.8 it has the same behaviour. Just try and see.

> I am asking to make this behavior configurable, this is at least
> the third time that you flipped it, just make it a setting and everyone can
select what they prefer

I'm not go for it.
This behaviour is a better compromise for me.
No mention that making it optional needs a lot of coding effort that I do not
want to do.

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: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/

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

_______________________________________________
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 21, Issue 99
*************************************************

Reply via email to