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 - Help] line numbers button? (SourceForge.net)
   2. [notepad-plus - Help] RE: Setting default path. (SourceForge.net)
   3. [notepad-plus - Help] RE: Set N++ as 'View        Source' Default in
      IE & (SourceForge.net)
   4. [notepad-plus - Help] RE: Cannot use braces as    folder
      characters? (SourceForge.net)
   5. [notepad-plus - Help] RE: Colour in documents (SourceForge.net)
   6. [notepad-plus - Help] RE: Set N++ as 'View        Source' Default in
      IE/FF (SourceForge.net)
   7. [notepad-plus - Help] RE: Set N++ as 'View        Source' Default in
      IE & (SourceForge.net)
   8. [notepad-plus - Help] locking the tab bar (SourceForge.net)
   9. [notepad-plus - Help] No one wants to provide     help with a
      problem (SourceForge.net)
  10. [notepad-plus - Help] Site is really good (SourceForge.net)
  11. [notepad-plus - Open Discussion] Bug Report (SourceForge.net)
  12. [notepad-plus - Help] RE: line numbers button? (SourceForge.net)
  13. [notepad-plus - Help] RE: No one wants to provide help with a
      probl (SourceForge.net)


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

Message: 1
Date: Fri, 23 Mar 2007 17:34:55 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] line numbers
        button?
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=4224818
By: nobody

Is the a line numbers button?

Press and it shows or unshows line numbers

______________________________________________________________________
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: Sat, 24 Mar 2007 01:02:36 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Setting default
        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=4225351
By: nobody

I've successfully used a shortcut on my desktop with the "Start in" path set
to the directory that I want.  --Joel


______________________________________________________________________
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: Sat, 24 Mar 2007 01:08:58 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Set N++ as
        'View   Source' Default in IE &
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=4225354
By: nobody

On my box, the registry entry for 
"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet
Explorer\View Source Editor\Editor Name" shows
C:\Tools\Notepad++\nppIExplorerShell.exe -- I guess if you installed it to the
default directory it would typically be "C:\Program
Files\Notepad++\nppIExplorerShell.exe" instead.  The quotes may be necessary
if there are spaces in the path. --Joel

______________________________________________________________________
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: Sat, 24 Mar 2007 00:45:00 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Cannot use
        braces as       folder characters?
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=4225342
By: nobody

After examining the sources I have found the problem, and here it is a solution
for that.

The problem: the LexUser.cxx uses different styles (SCE_USER_BLOCK_OPERATOR_OPEN
and SCE_USER_BLOCK_OPERATOR_CLOSE) to mark the beginning and the ending of a
block, but the BraceMatch function finds matches only with the same style.

I have changed the mask to STYLE_MAX in the LexUser and set the 
..._OPERATOR_CLOSE
constant to 44 (12 + 32), so it has the same lower 5 bits as the ..._OPEN value.

Now the BraceMatch masks the 6-8th bit, so it does not differentiate among the
two SCE_USER_... but the folding routine does, making it possible to fold the
text. One problem persists yet: the 6th bit represents an indicator, so we must
set the indicators[0].style in ViewStyle.cxx to INDIC_HIDDEN (the program does
not use indicators, so it is not harmful to change the code), and we can now
use braces as folding characters with brace matching.

______________________________________________________________________
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: Sat, 24 Mar 2007 01:18:28 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Colour in
        documents
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=4225360
By: nobody

My guess would be that when you start editing, Notepad++ doesn't know what kind
of file it is, so it assumes plain text.  When you save it as one of the HTML
filetypes that have been registered, it should show up with HTML syntax
highlighting.

Before you save the file, you can change to HTML highlighting by selecting 
"HTML"
on the Language menu, if you are using the English version of Notepad++.

If you mostly edit HTML, you can set it as the default language under the "New
Document" tab of the Preferences dialog.  --Joel

______________________________________________________________________
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: 6
Date: Sat, 24 Mar 2007 04:07:03 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Set N++ as
        'View   Source' Default in IE/FF
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=4225484
By: nobody

That file doesn't exist for me, so that must be something that is created 
dependent
on whether one checks the IE "View Source" Default option upon installation.
I guess I'll just have to uninstall and reinstall.  Though, Don, this would
be nice to be able to do with a click in the Settings > Preferences menu.

______________________________________________________________________
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: Sat, 24 Mar 2007 04:38:35 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Set N++ as
        'View   Source' Default in IE &
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=4225500
By: nobody

Use "" around the path: "C:\Program Files\Notepad++\notepad++.exe"

Best regards,
Karsten



______________________________________________________________________
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: Sat, 24 Mar 2007 04:38:40 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] locking the tab bar
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=4225501
By: nobody

Hi !

Its annoying that if i have multiple files open (the tabbar scrollable), then
press save all, then the tab-bar scroll to the last edited file, hiding the
previous tabs. Then i must scroll the tabbar always, to reach these files.

It would be nice, if not move eiher after save, or let it lockable.

bye,
Lidi


______________________________________________________________________
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: Sat, 24 Mar 2007 05:48:25 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] No one wants to
        provide help with a problem
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=4225565
By: nobody

Hello,

I posted the below message a few days ago seeking some help in launching NP++
but no one responded.  I conclude that if one has a problem in getting NP++
to launch correctly and can't figure out the solution by himself he shouldn't
be using NP++ in the first place.  So I deleted the installation from my 
computer
and went on to seek another replacement for MS's Notepad.  judging from the
subject matter of questions posted seeking help with problems, NP++ is probably
a crappy program anyhow and not worth the effort in using it.  It looks like
it needs to much hand holding in order to do anything useful with it.  It 
appears
to be a hackers delight.

Previoulsy posted message:

I just installed the latest version on Notepad++. It fails to launch when I
edit a file, say a *.txt file, and several error messages are displayed:
Load langs.xml failed! 
Scintilla error: can not load the dynamic library 
106901: Scintilla.init failed! 
 
I used the executable version of the download to install Notepad++ and assumed
that all the necessary components to run it were installed; apparently not.
What am I missing here in the install?
 
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=331754



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

Message: 10
Date: Sat, 24 Mar 2007 07:36:46 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] Site is really good
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=4225652
By: nobody

Hallo! 
Your site is really good, 
Keep it on, thanx!

______________________________________________________________________
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: Sat, 24 Mar 2007 08:17:13 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] Bug
        Report
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=4225682
By: nobody

If you create new document, type a few symbols and press Ctrl+S, a 
saveFile-dialog
will appear. If you press Cancel then your document will be marked as saved
and will not be marked as "changed" anymore. As a result Save menu nor Ctrl+S
not available anymote.

______________________________________________________________________
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: Sat, 24 Mar 2007 09:01:58 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: line numbers
        button?
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=4225720
By: nobody

Is there a line numbers button to turn on/off line numbers?

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



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

Message: 13
Date: Sat, 24 Mar 2007 14:00:36 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: No one wants to
        provide help with a probl
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=4225969
By: nobody

I didn't respond because I had no idea about resolving your problem; I've not
seen it before.  I'm new to Notepad++, having started with version 3.9 just
this year.

Please keep in mind that this is not paid-for software, and there is no support
except from people like you and me who use the program.  We are not paid to
help, so we might want to discourage low-PC-proficiency users from using 
Notepad++
to avoid being sucked into a tech-support black hole.  The very name Notepad++
seems to imply an editor for programmers.

Your problem sounds like solely an install issue.  You might check if your 
download
was corrupted by performing an md5 sum on it and comparing it with the expected:

http://easynews.dl.sourceforge.net/sourceforge/notepad-plus/npp.4.0.2.release.md
5

You can help the rest of us help you by providing us with some particulars about
your version of Notepad++, your complete install directory, your operating 
system
(some Notepad++ issues with Vista are pending resolution, I understand), your
user rights and your install rights on the PC (admin, power user, user), as
well as the choices you made when you installed the program.

I'd look at spaces in paths without proper quoting, %variables%, conflicts with
environment settings.  --Joel

______________________________________________________________________
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



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

-------------------------------------------------------------------------
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 10, Issue 54
*************************************************

Reply via email to