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++    4.9 release
      (May be UNSTABLE) (SourceForge.net)
   2. [notepad-plus - Help] RE: Insert Text (SourceForge.net)
   3. [notepad-plus - Open Discussion] RE: Request:     autosave/load
      new files to tempdir (SourceForge.net)
   4. [notepad-plus - Open Discussion] RE: Notepad++    4.9 release
      (May be UNSTABLE) (SourceForge.net)
   5. [notepad-plus - Open Discussion] RE: Notepad++    4.9 release
      (May be UNSTABLE) (SourceForge.net)
   6. [notepad-plus - Help] RE: Context menu - open     in new instance
      (SourceForge.net)
   7. [notepad-plus - Open Discussion] Information (SourceForge.net)
   8. [notepad-plus - Open Discussion] RE: Notepad++    4.9 release
      (May be UNSTABLE) (SourceForge.net)
   9. [notepad-plus - Open Discussion] RE: Notepad++    4.9 release
      (May be UNSTABLE) (SourceForge.net)
  10. [notepad-plus - Open Discussion] RE: Notepad++    4.9 release
      (May be UNSTABLE) (SourceForge.net)
  11. [notepad-plus - Open Discussion] RE: Notepad++    4.9 release
      (May be UNSTABLE) (SourceForge.net)
  12. [notepad-plus - Open Discussion] RE: Notepad++    4.9 release
      (May be UNSTABLE) (SourceForge.net)


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

Message: 1
Date: Wed, 30 Apr 2008 11:56:26 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Notepad++       4.9 release (May be UNSTABLE)
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=4937519
By: nobody

11. Add places bar in save as dialog

Now I don't have to spend that extra half second to click on the drop down and
scorll up to desktop.  I've got a button for it.

Thank you.

______________________________________________________________________
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, 30 Apr 2008 12:08:28 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Insert Text
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=4937544
By: fool4uanyway

1. You could perhaps create a macro that works on the list of databases, putting
the desired texts before and after each database. You could run that macro 
"until
the end of the document" containing the databases.

2. You could use the Column Editor to achieve the same in a slightly different
way, but this would only work completely if all names have the same length.

- Press CTRL+Home to move the cursor to the top of the list
- Press and keep holding down the SHIFT button.
- Press CTRL+End to move the cursor to the end of the list (below the last
entry)
- While still holding the SHIFT button, also press and hold down the ALT button
and press the CursorUp button once. You have now selected a column with width
0 at the start of each line.
- Press ALT+C to open the Column Editor dialog.
- Choose/click "Text to insert".
- Enter "EXEC sp_detach_db '" without the double quotes.
- Press Enter of click OK.

If the lines all have the same length, that is, the database names all have
the same names to start with, you can do the same for the postfix.

- Press CTRL+Home and then End to move to the end of the first line.
- Press and keep holding down the SHIFT button.
- Press CTRL+End to move the cursor to the end of the list (below the last
entry)
- While still holding the SHIFT button, also press and hold down the ALT button
and press the CursorLeft button once. You have now selected a column with width
0 at the end of each line.
- Press ALT+C to open the Column Editor dialog.
- Choose/click "Text to insert".
- Enter "', 'false'" without the double quotes.
- Press Enter of click OK.

You might perform some actions to get all database names padded with spaces
to make all lines of the same lengths to start with. You could remove those
spaces after adding the prefix and postfix texts, but this involves just another
(re)place action. It is also possible to do it without.

3. Take a look at this similar question, involving inserting text at the 
beginning
of each line using regular expression (regex) mode of the Find/Replace dialog:
 
"Insert Filename and Macro" (Help forum)
http://sourceforge.net/forum/forum.php?thread_id=1965723&forum_id=331754

or read this thread:

"how to append lines with a comma or other characters" (Help forum)
http://sourceforge.net/forum/forum.php?thread_id=1967758&forum_id=331754

4. You could also take a look at the Simple Script Plug-In. It has 
straightforward
function to insert text at the beginning and at the end of each line.

BeginLine(string text): Appends text to the beginning of every line.
EndLine(string text): Appends text to the end of every line.

Enclose text in quotes.

Examples:

BeginLine("<p>") would put an HTML paragraph tag at the beginning of every line
in the document.
EndLine("</p>") would close the HTML paragraph tag at the end of every line.

Your script would read:

BeginLine("EXEC sp_detach_db '")
EndLine("', 'false'")

You would run this script on the database names list.


______________________________________________________________________
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: Wed, 30 Apr 2008 12:24:00 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Request:        autosave/load new files to tempdir
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=4937572
By: fool4uanyway

Perhaps you may support this thread, then:

"Feature Request: temporarily save backups" (Open Discussion forum)
http://sourceforge.net/forum/forum.php?thread_id=1733368&forum_id=331753


______________________________________________________________________
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: Wed, 30 Apr 2008 12:29:57 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Notepad++       4.9 release (May be UNSTABLE)
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=4937579
By: fool4uanyway

1. Add smart highlighting feature (double click a word to highlight all the
same word in the document).

If I press SHIFT+End on a line, the "smart" highlighting is also activated.
Why is that? I surely didn't ask it to.


______________________________________________________________________
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: Wed, 30 Apr 2008 12:37:39 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Notepad++       4.9 release (May be UNSTABLE)
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=4937600
By: fool4uanyway

More precisely, the highlighting "thinks" it's smart if I select a single 
complete
line, from the start up to the end or the other way around, no matter how I
have selected it.

This is very annoying. (And please don't simply tell me to turn the feature
off.)


______________________________________________________________________
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: 6
Date: Wed, 30 Apr 2008 11:34:10 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Context menu -
        open    in new instance
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=4937478
By: nobody

Or name it alternatively, like Open with new Notepad++, in order not to 
overwrite
the current entry.


______________________________________________________________________
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: 7
Date: Wed, 30 Apr 2008 11:31:06 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion]
        Information
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=4937472
By: nobody

Nice portal! <a href=" http://myspace-3-vb5.150m.com/ ">Hello kitty myspace
layouts</a> jjhki

______________________________________________________________________
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, 30 Apr 2008 12:44:11 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Notepad++       4.9 release (May be UNSTABLE)
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=4937618
By: fool4uanyway

OK, I turned the smart highlighting feature off. I mixed it up with the 
incremental
search highlighting, which is what I expected and consider (more) useful.

Why does smart highlighting only apply to single words? As was the case with
my list document: the specific line I selected consisted of a single word only.
Why don't you simply smart highlight _any_ selection?

The incremental search, again, does this as expected.


______________________________________________________________________
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, 30 Apr 2008 13:24:39 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Notepad++       4.9 release (May be UNSTABLE)
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=4937707
By: donho

> Litte Bug: Transparency at the Styler Configurator is not updated,
> when using the slider. Only updated when disable and reenable the
Transparency.

It'll be fixed in the v4.9 OR.

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: 10
Date: Wed, 30 Apr 2008 13:32:37 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Notepad++       4.9 release (May be UNSTABLE)
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=4937723
By: donho

When you do Ctrl+M you don't do the bookmarks, so Ctrl+Shift+M should not clean
them.
This correct behaviour is corrected in v4.9.

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: 11
Date: Wed, 30 Apr 2008 13:44:40 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Notepad++       4.9 release (May be UNSTABLE)
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=4937749
By: donho

Yes, it's a critical bug.
It'll be fixed in the v4.9 OR. 
 
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: 12
Date: Wed, 30 Apr 2008 13:50:35 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Notepad++       4.9 release (May be UNSTABLE)
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=4937751
By: donho

> Why does smart highlighting only apply to single words?

Smart highlighting is used (for me) to quick see the variable or function used
in a function.
Due to the performance issue, it's limited in word scope.

If you want extensible feature, you can use incremental search highlighting
(as you notice), in which the performance issue is minimized.

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 the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone

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

_______________________________________________
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 23, Issue 85
*************************************************

Reply via email to