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: delete remove   duplicate line word
      sort length (SourceForge.net)
   2. [notepad-plus - Help] Fixed-width font for        entire code
      (SourceForge.net)
   3. [notepad-plus - Help] RE: Fixed-width font for    entire code
      (SourceForge.net)
   4. [notepad-plus - Plugin Development] RE:   Function navigation?
      (SourceForge.net)
   5. [notepad-plus - Plugin Development] RE:   Function navigation?
      (SourceForge.net)
   6. [notepad-plus - Open Discussion] How to bring     back
      "Favorites" icon (SourceForge.net)
   7. [notepad-plus - Open Discussion] RE: How to       bring back
      "Favorites" icon (SourceForge.net)
   8. [notepad-plus - Open Discussion] RE: What is      langs.model.xml?
      (SourceForge.net)
   9. [notepad-plus - Open Discussion] RE: What is      langs.model.xml?
      (SourceForge.net)
  10. [notepad-plus - Open Discussion] RE: Question     for Don Ho
      (SourceForge.net)
  11. [notepad-plus - Help] RE: Default file path? (SourceForge.net)
  12. [notepad-plus - Help] RE: Help deletin dupe       words/lines and
      sorting (SourceForge.net)
  13. Re: Converting line endings (Idris Samawi Hamid ????? ????? ????)


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

Message: 1
Date: Fri, 04 Jul 2008 08:24:19 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: delete remove
        duplicate line word sort length
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=5073056
By: fool4uanyway

To allow "accentual correct" sorting, you might replace each single character
uniquely with another character that would result in the correct sorting order.
Then, after sorting, you could do a reverse replacing to get the original 
characters
back. This would require you to create a 1-to-1 transformation list, which you
could execute by using the Simple Script Plug-In's TransformChars function:

TransformChars( string alphabet1, string alphabet2 )
: replaces all characters in alphabet1 with the characters in the same position
in alphabet2.

Equivalent to running a series of replaces on single characters.

This function operates on each line individually, so \r and \n won't work. 
All other escape characters work fine.

Each character in the line will be looked up in alphabet1. If it finds it, it
replaces it with the character in the same position in alphabet2.

Unlike in other functions, matching is case-sensitive.

For obvious reasons, alphabet1 and alphabet2 should be the same length. If not,
characters may not be replaced that should be. They do not, however, need to
be the same characters.

Alphabet1 and alphabet2 do not have to include all letters in the alphabet,
only ones that need to be replaced.

This function can be used for simple encryption, but because there's no 
guarantee
the transformation will be reversible, you need to choose your alphabets
carefully.

Examples:

Replacing asterisks with ampersands, ampersands with quotation marks, and 
quotation
marks with asterisks:

transformchars("*&\q","&\q*")

Replacing vowels with numbers:

transformchars("aeiouAEIOU","1234512345")

Replacing tabs with spaces:

transformchars("\t"," ")

Rot13 cyper:

transformchars("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ","nopqrstuv
wxyzabcdefghijklmNOPQRSTUVWXYZABCDEFGHIJKLM")


______________________________________________________________________
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: Fri, 04 Jul 2008 09:05:48 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] Fixed-width font
        for     entire code
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=5073134
By: startman2

The PHP code ist displayed in a fixed-width font, the comments are not. How
can I change the font and choose one fixed-width font for the entire code?

______________________________________________________________________
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: Fri, 04 Jul 2008 09:36:54 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Fixed-width
        font for        entire code
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=5073206
By: fool4uanyway

Read this message:

"1a no what ur doing? Use Notepad++!"
http://sourceforge.net/forum/message.php?msg_id=4263950

in this thread:

"Default Comment Formatting" (Open Discussion forum)
http://sourceforge.net/forum/forum.php?thread_id=1715611&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=331754



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

Message: 4
Date: Fri, 04 Jul 2008 09:49:52 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
        Function navigation?
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=5073225
By: romeojuncu

Hi,

I would like to know, what do you mean by the list window of OpenCTags can't
be closed? Actually, it closes when you hit Esc or when it loses focus.
If you think it's a bug, you may post-it on OpenCTags forum

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



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

Message: 5
Date: Fri, 04 Jul 2008 10:04:25 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
        Function navigation?
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=5073255
By: romeojuncu

Hi everybody,

I've developped OpenCTags plugin (http://openctags.sourceforge.net), to do 
things
like these. It uses ctags and the tags file is not refreshed automatically,
this is a lack.
Otherwise, I would like to have your remarks on this plugin, maybe I can make
it better

Regards,
romeo

______________________________________________________________________
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: Fri, 04 Jul 2008 10:11:20 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] How to
        bring   back "Favorites" icon
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=5073279
By: nobody

Hi everyone,

can someone tell me how to bring back that heart icon that indexed my favorite
files such as httpd.conf to the toolbar? 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: 7
Date: Fri, 04 Jul 2008 10:41:55 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: How
        to      bring back "Favorites" icon
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=5073330
By: janschreiber

More recent versions of N++ come with a Light Explorer plugin. What you want
is the older "heavy" Explorer plugin that can be downloaded here:
http://sourceforge.net/project/showfiles.php?group_id=189927&package_id=223667
It includes the favorites tab.

______________________________________________________________________
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: Fri, 04 Jul 2008 11:43:25 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: What
        is      langs.model.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=5073429
By: im2crazy4u

English

______________________________________________________________________
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: Fri, 04 Jul 2008 11:44:42 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: What
        is      langs.model.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=5073431
By: im2crazy4u

Hit enter to soon. It sends up a message box warning and presents English.

______________________________________________________________________
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: Fri, 04 Jul 2008 11:48:31 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Question        for Don Ho
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=5073445
By: im2crazy4u

Apparently your first thread
(http://sourceforge.net/forum/forum.php?thread_id=2100300&forum_id=331753) 
wasn't
enough so you made a second one. Perhaps some people just have more important
things to do. Just a guess on my part though.

______________________________________________________________________
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: Fri, 04 Jul 2008 12:48:48 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Default file
        path?
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=5073537
By: tmont

Ah.  That makes sense, although I found that tiny piece of functionality 
extremely
convenient.  Thanks for the explanation.

______________________________________________________________________
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: Fri, 04 Jul 2008 14:18:09 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Help deletin
        dupe    words/lines and sorting
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=5073703
By: frmariam

Thanks for your detailed help!

As for sorting the words beggining with accentuated chars I thinks it's still
easier to do it manually (they're still just a few).

Actually for this list the line lenght seems to matter (the app seems to 
complain
otherwise)... The list is over 2500 lines... And based on that link I'd need
a way to autoprefixing my lines with a number based on their length... I didn't
quite get or thought of a way to do 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: 13
Date: Fri, 04 Jul 2008 08:40:15 -0600
From: Idris Samawi Hamid ????? ????? ???? <[EMAIL PROTECTED]>
Subject: Re: [Notepad-plus-plus] Converting line endings
To: notepad-plus-plus@lists.sourceforge.net
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain; format=flowed; delsp=yes; charset=utf-8

Hi,

On Thu, 03 Jul 2008 23:36:28 -0600, Jurko Gospodneti?  
<[EMAIL PROTECTED]> wrote:

> Actually not that much.  Just install cygwin and place its bin
> folder on your path and you get the whole power of *nix command-line
> utilties under windows. E.g. unix2dos & dos2unix for line endings,
> expand for converting between tabs and spaces, grep for searching in
> files, sed for replacing stuff in files, etc...Cygwin itself is real
> simple to install. Just run its setup.exe and select the packages you
> want, with the defaults being ok for a start. Later on you easily
> reconfgure and/or update your installation by running that same  
> setup.exe.

Cygwin.... yuch. Consider andlinux

http://www.andlinux.org/

a new and upcoming linux distro for windows.

You can also get something simple, gnutilities, a set of utils compiled  
for W32 which probably has what you need.

Best wishes
Idris

-- 
Professor Idris Samawi Hamid, Editor-in-Chief
International Journal of Shi`i Studies
Department of Philosophy
Colorado State University
Fort Collins, CO 80523



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

-------------------------------------------------------------------------
Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
Studies have shown that voting for your favorite open source project,
along with a healthy diet, reduces your potential for chronic lameness
and boredom. Vote Now at http://www.sourceforge.net/community/cca08

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

_______________________________________________
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 26, Issue 9
************************************************

Reply via email to