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
        notepad-plus-plus-requ...@lists.sourceforge.net

You can reach the person managing the list at
        notepad-plus-plus-ow...@lists.sourceforge.net

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 - Translation] RE: French   Translation
      (SourceForge.net)
   2. [notepad-plus - Help] NP++ 5.3: Highlighting      Edited Lines
      (SourceForge.net)
   3. [notepad-plus - Open Discussion] Language for     cisco
      (SourceForge.net)
   4. [notepad-plus - Open Discussion] open     containing folder
      (SourceForge.net)
   5. [notepad-plus - Plugin Development] Version 5.3 (SourceForge.net)
   6. [notepad-plus - Help] RE: FTP logins gone after   update
      (SourceForge.net)
   7. [notepad-plus - Help] Find/Replace Dialog Problem on Windows
      7 (SourceForge.net)
   8. [notepad-plus - Open Discussion] RE: open containing folder
      (SourceForge.net)
   9. [notepad-plus - Open Discussion] RE: ALL  reserved keywords
      for PHP and JavaScript! (SourceForge.net)
  10. [notepad-plus - Help] Find Direction Up fails     to find the
      nearest (SourceForge.net)
  11. [notepad-plus - Open Discussion] Problem of       current directory
      (5.2) (SourceForge.net)


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

Message: 1
Date: Mon, 23 Mar 2009 16:54:03 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Translation] RE: French
        Translation
To: nore...@sourceforge.net
Message-ID: <6927411.558...@sourceforge.net>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=6927411
By: donho

The localization files are updated in installer but not in zip package.
This issue will be fixed in next release.

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=558104



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

Message: 2
Date: Mon, 23 Mar 2009 17:07:11 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Help] NP++ 5.3:
        Highlighting    Edited Lines
To: nore...@sourceforge.net
Message-ID: <6927543.331...@sourceforge.net>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=6927543
By: omnilord

Is there a way to turn off highlighting the edited lines when you make changes
to a file?

I've looked through stylers.xml and I don't have any backgrounds set to white
or anything near white, but any time I start typing the line turns and stays
white.  I have a black background with light colors so this makes it problematic
to read.  Even after saving the file, it still has the changed line highlighted.

______________________________________________________________________
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: Mon, 23 Mar 2009 18:39:53 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] Language
        for     cisco
To: nore...@sourceforge.net
Message-ID: <6928514.331...@sourceforge.net>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=6928514
By: captaindoogles

Is there a language color scheme for notepad++ for cisco pix, switch or
routers?

If not how would I go about making one?

______________________________________________________________________
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: Mon, 23 Mar 2009 20:54:14 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] open
        containing folder
To: nore...@sourceforge.net
Message-ID: <6929847.331...@sourceforge.net>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=6929847
By: mathmax

Hello,

I would like to know if there any plugin to add the possibility to open the
containing folder of a file (by right clicking on the tab of the corresponding
file). If not, can we expect this feature in a future release ?

Regards

______________________________________________________________________
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: Mon, 23 Mar 2009 21:08:08 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development]
        Version 5.3
To: nore...@sourceforge.net
Message-ID: <6930002.482...@sourceforge.net>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=6930002
By: shamuntoha

Latest version still it does not sence the auto completion for following 
senario.
Only it recognise its an .html lists to represent. But normally it should html,
js, php autocomplete show.

example test:

<html>
        <head>
                <meta http-equiv="Content-Type" content="text/html; 
charset=iso-8859-1" />
                <title>jQuery UI Example Page</title>
                <script type="text/javascript" 
src="js/jquery-1.3.2.min.js"></script>
                <script type="text/javascript"
src="js/jquery-ui-1.7.1.custom.min.js"></script>
                <script type="text/javascript">
                
                        // Jquery structure
                        $(document).ready(function(){
                                alert("alert");
                                
                                $("a").click(function(){
                                        alert("ok");
                                });
                                
                        });
                        
                </script>
        
        </head>
        <body>
        
<a href="">hel</a> 

<a href="">oooo</a>
        
        </body>
</html>




______________________________________________________________________
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: 6
Date: Mon, 23 Mar 2009 21:57:18 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: FTP logins gone
        after   update
To: nore...@sourceforge.net
Message-ID: <6930519.331...@sourceforge.net>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=6930519
By: gr3gwalt

Hi Gene,

Have you read the other messages in the thread?

I think you'll find your answer is that you are looking at the ini file in the
wrong directory.

______________________________________________________________________
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: Tue, 24 Mar 2009 00:29:53 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Help] Find/Replace Dialog
        Problem on Windows 7
To: nore...@sourceforge.net
Message-ID: <6931949.331...@sourceforge.net>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=6931949
By: bernzilla

Not sure if this is the right place to report this bug, but I'm running 
Notepad++
v5.3 on 64-bit Windows 7, and after I do a Find/Replace operation and close
the dialog, a strange transparent version of the window lingers around until
I restart the application.  It's pretty annoying.

I've put a screenshot up here:

http://i44.tinypic.com/2l8zpt3.gif

Just thought I'd point this out in case someone feels like fixing it. :)

______________________________________________________________________
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: Tue, 24 Mar 2009 08:19:20 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: open
        containing folder
To: nore...@sourceforge.net
Message-ID: <6935887.331...@sourceforge.net>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=6935887
By: h0russ

The explorer plugin has a button to goto the folder of the current file. Very
handy.

______________________________________________________________________
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: Tue, 24 Mar 2009 09:58:17 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: ALL
        reserved keywords for PHP and JavaScript!
To: nore...@sourceforge.net
Message-ID: <6936768.331...@sourceforge.net>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=6936768
By: mayteks

hey. I tried the way you described in top post. Although this looks better than
nothing, I don't like the function names being highlighted with the same color
as keyword like "public" or "function".

I tried to create another WordStyle tag in php section, like: <WordsStyle
name="KEYWORD" styleID="117" fgColor="FF0000" bgColor="F2F2F9" fontName=""
fontStyle="0" fontSize="" keywordClass="instre2">

.. and all the keywords are being shown in stylers configurator, but 
highlighting
just doesn't work. If I set keywordClass to "instre1" instead of "instre2",
then everything gets highlighted as with your method.

Until there's no tidy solution, I'd stay with CE. I can't get it, why it must
be so impossible to let users extend default stylers.

______________________________________________________________________
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: Tue, 24 Mar 2009 12:50:11 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Help] Find Direction Up
        fails   to find the nearest
To: nore...@sourceforge.net
Message-ID: <6938388.331...@sourceforge.net>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=6938388
By: mbednarek

Problem: "Find: Direction Up" fails to find the nearest character.

To reproduce:
* Create a new file with three characters, say "123" (sans quotes)
* Select (highlight) the middle character, say "2"
* Invoke Find (Ctrl+F); untick Wrap around; Search mode: normal; untick
In selection
* Select Direction: Up
* Type the first character ("1") in Find what:
* Press Find next

Expected result: first character to be selected/highlighted
Actual result: message box: Can't find the text

The same procedure, when Direction: Down is specified, works as expected: the
third character is selected.

Related problem:
* When no character is selected, pressing Ctrl+F will select the current word,
with the effect that no subsequent or previous character in that word can be
found.

Am I doing something wrong or are these "undocumented features"?


______________________________________________________________________
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: 11
Date: Tue, 24 Mar 2009 14:11:40 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] Problem
        of      current directory (5.2)
To: nore...@sourceforge.net
Message-ID: <6939204.331...@sourceforge.net>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=6939204
By: jugoslavdujic

NPP 5.2 (Unicode) does not seem to SetCurrentDirectory when the active tab 
changes,
and previous versions seem to did it. With NPP 5.2, the current (working) 
directory
is persistently C:\Program Files\Notepad++. I don't know if the change was 
accidental
or purposeful, but it breaks several features:

* Run/Open file... tries to find the selected file in Notepad++ directory, which
is unlikely to be there. So does Run/Open in another instance
* Run/Run... tries to execute the application in Notepad++ directory. This is
not normally what the application wants.
* Similarly, Standard menu->Open in Light explorer opens the file in Notepad++
directory. Not a desired effect.

For what it's worth, I do have Settings/Preferences/New document.../File 
Open/Save
directory set to "Follow the current 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=331753



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

------------------------------------------------------------------------------
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-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 34, Issue 56
*************************************************

Reply via email to