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 - Help] RE: UPPERCASE tag area in   regex
      search+replac (SourceForge.net)
   2. [notepad-plus - Open Discussion] RE: Replace in   block
      selection (SourceForge.net)
   3. [notepad-plus - Open Discussion] RE: Why New      version can't
      use FUNCTION LIST plug (SourceForge.net)
   4. [notepad-plus - Help] RE: Vista Compatiblity (SourceForge.net)
   5. [notepad-plus - Open Discussion] RE: Replace in   block
      selection (SourceForge.net)
   6. [notepad-plus - Help] Use the encoding "UTF       without BOM"
      (SourceForge.net)
   7. [notepad-plus - Open Discussion] RE: Notepad++    v4.8 official
      release (SourceForge.net)
   8. [notepad-plus - Open Discussion] RE: Notepad++    v4.8 official
      release (SourceForge.net)
   9. [notepad-plus - Open Discussion] Multiple shortcuts
      (Shift+Ins, etc.) (SourceForge.net)
  10. [notepad-plus - Open Discussion] RE: Notepad++    v4.8 official
      release (SourceForge.net)
  11. [notepad-plus - Open Discussion] RE: Multiple     shortcuts
      (Shift+Ins, etc.) (SourceForge.net)
  12. [notepad-plus - Help] RE: ASCII Support ... (SourceForge.net)
  13. [notepad-plus - Plugin Development] RE: New       plugin: CTAGS
      Support available (SourceForge.net)


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

Message: 1
Date: Tue, 26 Feb 2008 17:16:24 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: UPPERCASE tag
        area in regex search+replac
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=4802847
By: kolya_

I'll answer this with what he said: "Thanks for the fun problem."
Yeah, I guess it's good to have friends like that. Here's the script:

// Save this as "replace.js". 
// File to be converted is called "file.txt". 
// Delimiters of the text to be converted are "<pattern>" and "</pattern>"
here.
// To start the script enter on a command prompt:
// cscript //E:jscript //NoLogo replace.js > new.txt
// "new.text" contains the converted data
var fso = new ActiveXObject('Scripting.FileSystemObject');
var fs = fso.OpenTextFile('file.txt');
var s = new String(fs.ReadAll());
fs.Close();
s = s.replace(/<pattern>(.*?)<\/pattern>/gi, function($1){ return 
$1.replace(/>.*</,
function($1){ return $1.toUpperCase();})});
WScript.Echo(s);

______________________________________________________________________
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, 26 Feb 2008 17:56:11 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Replace in      block selection
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=4802892
By: donncon

I'm finding this to be the case in 4.7.5.

______________________________________________________________________
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: Tue, 26 Feb 2008 22:49:38 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: Why
        New     version can't use FUNCTION LIST plug
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=4803180
By: nobody

Hi, all , I found the reason now, because new Notepad++ didn't include
the "Function_list" plugin. But I need it , so I download a beta 
version(newlest)
of "Function_list"  and put it in the notepad++ plugin folder, but it can't
work!

Finally I download a stable version of  "Function_list" (1.2) it can !

The question is , this plugin is very usefull when you coding, like php, or
asp.

there will be many many function in one php page /asp page. it can easily goto
different part of page

______________________________________________________________________
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: Tue, 26 Feb 2008 23:18:52 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Vista
        Compatiblity
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=4803215
By: nobody

Where is the auto-update option?  I am not seeing it in version 4.8.
http://img297.imageshack.us/my.php?image=npppreferencesru4.jpg

______________________________________________________________________
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 00:07:29 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Replace in      block selection
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=4803280
By: nobody

What exactly do you mean? How a block is pasted depends on how it was cut or
copied. So if you want to paste some column block, you'll have to select it
like that.


______________________________________________________________________
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, 27 Feb 2008 00:46:28 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] Use the encoding
        "UTF    without BOM"
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=4803331
By: nobody

npp (version 4.7.5) has two different encodings: "UTF-8" (this makes the 
problem)
and "UTF-8 without BOM"
You should choose it in the properties dialog.

In the german version: [Einstellungen] - [Einstellungen] - [Neues Dokument]
Klick: "UTF ohne BOM"
In english something like: [Properties] - [Properties] - [New Document] "UTF
without BOM"

TDittrich42


______________________________________________________________________
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, 27 Feb 2008 01:08:32 -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=4803378
By: alexiljin

Shortcut mapper -> Scintilla commands -> Name column: row 42 == row 46
== "SCI_WORDRIGHTEXTEND"
I believe row 46 should contain "SCI_WORDRIGHTENDEXTEND" instead.

PS: Just noticed while writing this that when the Shortcut mapper window is
displayed, Notepad++ at some point disappears from the Alt-Tab list (after a
couple of Alt-Tab switches). WinXP Pro SP2.

______________________________________________________________________
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, 27 Feb 2008 01:16:39 -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=4803399
By: nobody

Please NOTE:

Use the latest version of Explorer v1.7.2. There is a neccessary bug fix. 
Filtering
can cause a crash in Don's released version.

Best Regards
Jens

______________________________________________________________________
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, 27 Feb 2008 01:38:05 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] Multiple
        shortcuts (Shift+Ins, etc.)
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=4803449
By: alexiljin

Virtually every Windows program supports Shift+Del, Ctrl+Ins and Shift+Ins in
addition to Ctrl+X, Ctrl+C and Ctrl+V. Those Ins/Del shortcuts are way back
from the days of the DOS, so a lot of people got used to them (including me).

Luckily, you can assign multiple shortcuts to a command in Notepad++, despite
the fact that Shortcut Mapper looks like as if you can't. The way to do it is
to record a single-command macro and assign your favourite shortcut to it.

For example, start Notepad++.
Select "Macro -> Start Recording" from the menu.
Press Ctrl+C to record the "copy" command.
Select "Macro -> Stop Recording" from the menu.
Select "Macro -> Save current recorded macro" from the menu.
In the dialog box set the Name field = "Copy" and make the shortcut = Ctrl+INS.
Click OK.
You will see the new command and the shortcut listed at the bottom of the 
"Macro"
menu.
The macros are stored in the "shortcuts.xml" configuration 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: 10
Date: Wed, 27 Feb 2008 01:55:44 -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=4803475
By: nobody

Thanks, but I'll wait for v4.8.1 tomorrow... ;-)

______________________________________________________________________
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 02:03:52 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Multiple        shortcuts (Shift+Ins, etc.)
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=4803477
By: alexiljin

The macro will still work as before, because it does not replay the keyboard
shortcut, but rather sends the "copy" command code to the Scintilla component.

______________________________________________________________________
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, 27 Feb 2008 02:35:41 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: ASCII Support
        ...
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=4803527
By: nobody

Yep, it would be a good addon to have an ASCII lookup table where you can 
cut/paste
an ASCII symbol to your document.

______________________________________________________________________
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: 13
Date: Wed, 27 Feb 2008 02:42:28 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
        New     plugin: CTAGS Support available
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=4803534
By: user009sf

Excellent Plugin.
One of the best addons for Notepad++.

1.
To simplify generation of the CTAG database 
(tags file) use OpenCTagsForNpp.dll
Plugins->OpenCTags->CTags
{this step creates the 'tags' file}

2.
Then you can configure and use NPPtags.dll
Plugins->Ctags->Configuration (use the 'tags' file
generate in step 1. here)

Works great !!


______________________________________________________________________
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



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

-------------------------------------------------------------------------
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 92
*************************************************

Reply via email to