Send Notepad-plus-plus mailing list submissions to
        [EMAIL PROTECTED]

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] After delete     doLocalConf.xml
      (SourceForge.net)
   2. [notepad-plus - Open Discussion] RE: Have respect for God
      (SourceForge.net)
   3. [notepad-plus - Open Discussion] adding new       language - cmake
      (SourceForge.net)
   4. [notepad-plus - Open Discussion] here is a        script to have
      dark backgrounds (SourceForge.net)
   5. [notepad-plus - Translation] RE: Finished Dutch   Translation
      (SourceForge.net)
   6. [notepad-plus - Open Discussion] "Go To Line"     ERROR in
      Notepad++ (SourceForge.net)
   7. [notepad-plus - Help] How to export serch result (SourceForge.net)
   8. [notepad-plus - Help] Cross problem with IZarc (SourceForge.net)
   9. [notepad-plus - Open Discussion] RE: After        delete
      doLocalConf.xml (SourceForge.net)
  10. [notepad-plus - Open Discussion] RE: adding new   language -
      cmake (SourceForge.net)
  11. [notepad-plus - Open Discussion] RE: adding new   language -
      cmake (SourceForge.net)
  12. [notepad-plus - Help] UFT-8 and saving xhtml      help please
      (SourceForge.net)
  13. [notepad-plus - Open Discussion] RE: After        delete
      doLocalConf.xml (SourceForge.net)


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

Message: 1
Date: Wed, 11 Apr 2007 23:05:58 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] After
        delete  doLocalConf.xml
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=4256506
By: nobody

Hi,
I use multiuser environment, so I deleted the doLocalConf.xml
After this program stores conf files in user's profile directory - greate.

But it seems that multiuser option is VERY BUGGY:
1. The configuration isn't read frome those files.
2. The configuration isn't save to those files.
3. Where the file doLocalConf.xml exists NP++ launches with small icons on 
toolbar.
When I delete doLocalConf.xml file NP++ launches with ugly, big icons on
toolbar.

Is there any possibility that you prepare new version whitch corrects those
bugs?

Best regards
IGIdeus


______________________________________________________________________
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, 11 Apr 2007 23:40:48 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: Have
        respect for God
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=4256542
By: nobody

PREVED KROSAVCHEGI!
DEBIAN RULED!

______________________________________________________________________
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, 12 Apr 2007 01:09:26 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] adding
        new     language - cmake
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=4256632
By: fantaz

Hi,
I'm trying to do some development with cmake (http://www.cmake.org) and I have
defined some keywords and rules via user defined language procedure as descirbed
by the docs. Since cmake is becoming a widely adopted make generator tool(KDE
started using cmake not long ago), and there exist language definition for vim,
kate and emacs, among the others. It seems like only scite does not have the
cmake syntax rules and keyword list. Anyway, how one can add new language to
npp, but not via user defined language? I mean this is kind of feature request,
but better yet a plea. Would UD language xml file help one of the devs
in implementing the cmake rules? If you guys are busy, how can i add a language
in npp, if you are interested in this kind of extension? I'm not mutch of a
programmer, but I'd do as best as I can...
Best regards,
fantaz

______________________________________________________________________
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: Thu, 12 Apr 2007 02:47:42 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] here is
        a       script to have dark backgrounds
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=4256760
By: nobody

My poor eyes suffer from white backgrounds.
So i wrote a tiny perl script to reverse colors !
I had no further adaptations to make, it seems to work
for many file types !!!

USAGE:

perl darkstyler.pl < stylers.xml > stylers.xml_dark
mv stylers.xml stylers.xml_ori
cp stylers.xml_dark stylers.xml

==================

#!/bin/perl

sub hpoids { $_[0]=~/(..)(..)(..)/; return hex($1)+hex($2)+hex($3); }
sub hrev { $_[0]=~/(..)(..)(..)/; return sprintf("%02X%02X%02X",255-hex 
$1,255-hex
$2,255-hex $3) }

while(<>) {
unless (/fgColor="([^"]+)" bgColor="([^"]+)"/) { print; next }
$fg=$1; $bg=$2;

# invert color levels
#if (hpoids($bg)>384) { $fg=hrev $fg; $bg=hrev $bg } else { print; next }
$fg=hrev $fg; $bg=hrev $bg;
# main color
$fg='FFFF00' if $fg eq 'FFFFFF';

s/fgColor="([^"]+)" bgColor="([^"]+)"/fgColor="$fg" bgColor="$bg"/;
print;
}

______________________________________________________________________
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: Thu, 12 Apr 2007 02:48:27 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Translation] RE: Finished
        Dutch   Translation
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=4256762
By: nobody

Please can you also safe the url as txt-file on your site.
Because an error will be displayed by opening the url.

Thanks
Jos

______________________________________________________________________
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: 6
Date: Thu, 12 Apr 2007 03:58:17 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] "Go To
        Line"   ERROR in Notepad++
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=4256861
By: nobody

Hi all,

When opened a binary file of 1MB in hex view and tried to jump on character
"xxx", I noticed that when the "View in Hex" check box is selected the total
number of characters ("You can't go further" statement) shows correct number
of bytes. In case when the check box is unselected it doesn't show the correct
file size. So, I suppose it's a bug, but because I don't know where to post
it, I posted it here.

Bye,
Mtx

______________________________________________________________________
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: Thu, 12 Apr 2007 04:17:50 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] How to export serch
        result
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=4256879
By: nobody

It is possible to search something in a file and mark all lines in witch has
the wanted text. Is it possible to select ant copy all my results? I do not
found 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: Thu, 12 Apr 2007 04:36:11 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] Cross problem with
        IZarc
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=4256912
By: kawe2

Windows XP SP2
IZarc 3.7
Notepad++ v4.0.2
Notepad launcher properly(?) installed (works in all other cases)

Hi all,

I get a cross problem when using Notepad++ with IZarc to view txt files from
within archives (or other files that are directly linked to Notepad(++)).

When I double-click on a txt file I expect the file to be temporarily extracted
and shown with Notepad++.

What happens here is:

1. I get "create new" message:
    
The file "<IZarctemppath>\filename.txt" doesn't exist. Create it?

2. If I click "Yes" Notepad++ crashes immediately.
   If I click "No" I get of course an empty sheet.

 Furthemore, Notepad++ may crash on closing the document or not.
 I haven't yet understood this behaviour. It may depend on Notepad++ settings.

This seems not to happen neither if I use another archiver nor another editor
...


Stephan 


______________________________________________________________________
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: Thu, 12 Apr 2007 04:59:12 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        After   delete doLocalConf.xml
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=4256959
By: nobody

Did you tried 4.0.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=331753



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

Message: 10
Date: Thu, 12 Apr 2007 05:10:43 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        adding new      language - cmake
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=4256983
By: donho

In the next release (v4.1), cmake will be supported.
The RC will be available on next weekend (on the 22th April).
I'll *try* to include *CMakeLists.txt* in the next release for those who want
to compile Notepad++ project with MinGW, but I promise nothing.

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: Thu, 12 Apr 2007 05:22:25 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        adding new      language - cmake
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=4257002
By: fantaz

Cool!
Looking forward to try, use and abuse new release.
I got used to npp, and i do like to work with it. Great job!
Best regards,
fantaz

______________________________________________________________________
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: Thu, 12 Apr 2007 06:51:31 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] UFT-8 and saving
        xhtml   help please
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=4257136
By: nobody

I'm new to xhtml and am going through Ian Lloyd's book to learn.  He states
that we need to save in UTF-8 and we are learning in xhtmt. I only see UTF-8
in the format drop-down can I make this my default?  Also when I save I can
only save as html is this ok since I'm supposed to be learning in xhtml.  Hope
I make sense as all these things are new to me......thanks in advance for any
advice or help......george

______________________________________________________________________
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: Thu, 12 Apr 2007 08:33:18 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        After   delete doLocalConf.xml
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=4257303
By: nobody

Sorry, I forgot to mention that I didn't test previous versions.
I run 4.02 only.

Best regards
IGIdeus

______________________________________________________________________
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



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

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV

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

_______________________________________________
Notepad-plus-plus mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/notepad-plus-plus


End of Notepad-plus-plus Digest, Vol 11, Issue 19
*************************************************

Reply via email to