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] RE: UTF-16       support in N++
      (SourceForge.net)
   2. [notepad-plus - Open Discussion] Feature  request on file size
      (SourceForge.net)
   3. [notepad-plus - Help] RE: Hanging Indents (SourceForge.net)
   4. [notepad-plus - Plugin Development] TextFX:       Reindent C++ code
      problem (SourceForge.net)
   5. [notepad-plus - Plugin Development] RE: TextFX:   Reindent C++
      code problem (SourceForge.net)
   6. [notepad-plus - Help] RE: Hanging Indents (SourceForge.net)
   7. [notepad-plus - Help] RE: Column Mode Select      replace all in
      selection (SourceForge.net)
   8. [notepad-plus - Help] RE: code folding for user   defined
      language (SourceForge.net)
   9. [notepad-plus - Help] RE: AutoUpdate 5.2 ->       5.3.1 crashes
      (SourceForge.net)
  10. [notepad-plus - Help] searching for newline (SourceForge.net)
  11. [notepad-plus - Open Discussion] RE: Feature      request on file
      size (SourceForge.net)


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

Message: 1
Date: Thu, 23 Apr 2009 16:16:16 +0000
From: "SourceForge.net" <[email protected]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        UTF-16  support in N++
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=7269146
By: piotr_dobrogost

mlippert255, thanks for your help.
I added LE BOM at the beginning and that solved the problem.

"It does seem from the help that selecting "Encode in UCS-2 LE" is supposed
to be how you do this, and it is definitely not working.

I assume the "Convert to..." options are supposed to convert from the selected
"Encode in..." to a new encoding, changing the bytes in memory and changing
the "Encode in..." selected to the converted to target?"

I'm not sure. I was looking for any help on this but couldn't find any. Does
someone know where is any information on Format menu of N++?

"BTW there is also a small error in the help's Encoding page,(...)"

Agree. You can submit this bug using Tracker -
https://sourceforge.net/tracker/?group_id=95717&atid=612382

______________________________________________________________________
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: Thu, 23 Apr 2009 16:40:45 +0000
From: "SourceForge.net" <[email protected]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] Feature
        request on file size
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=7269242
By: j872

Notepadd++ is such a great tool for programing scripts and editing other text
files.  My only wish is that it could handle much large text files (half a gig
to 1 gig?).  The features that this program has for search/replace/user defined
text highlighting, etc. are really useful when editing long, error prone data
files.

So, no limitations on file size, is that too much?  I hope not.

______________________________________________________________________
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, 23 Apr 2009 16:57:09 +0000
From: "SourceForge.net" <[email protected]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Hanging Indents
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=7269306
By: gr3gw

Hi Chris,

You wrote:

"I assume there is one such file in your %APPPDATA%\Noteped++ folder, and none
in the folder notepad++.exe is in. "

I have a shortcuts.xml file in both my AppData and my NP++ exe folder. Guess
which one I tried first. :-)

I followed you instruction again and it still didn't work but...

"If you used Notepad++ to edit shortcuts.xml, here is a gotcha: Notepad++ reads
shortcuts.xml only once when it opens. As a result, your changes, and the new
macro, will show up when you close and then restart N++."

In fact the gotcha is worse than you think. After a while I realised that NP++
was not updating the shorcut.xml file. Why? Because NP++ saves to the 
shortcut.xml
file as it closes. This means you can't use NP++ to edit the shortcut file!

By using a different editor, with a name similar to NP++, I made the edits and
when I next opened NP++, thre was your macro.

All working now, and even more learned about the workings of Notepad++.

Cheers Chris.


______________________________________________________________________
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: Thu, 23 Apr 2009 17:16:42 +0000
From: "SourceForge.net" <[email protected]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development]
        TextFX: Reindent C++ code 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=7269373
By: nobugging

I noticed a problem with the TextFX plugin. When you tell click "Reindent C++"
on the menu, it doesn't properly indent the switch statment. It considers the
"break;" line as a normal statement. What I mean is that it does this:

switch(a){
      case 1:
            a=2;
            break;

      case 2:
            a=1;
            break;
}

instead of this:

switch(a){
      case 1:
            a=2;
      break;

      case 2:
            a=1;
      break;
}

Those who write C/C++ code will understand what I mean.

______________________________________________________________________
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: Thu, 23 Apr 2009 17:22:26 +0000
From: "SourceForge.net" <[email protected]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
        TextFX: Reindent C++ code 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=7269397
By: nobugging

!!!!-- This is a re-write of my post above. --!!!!

I noticed a problem with the TextFX plugin. When you tell click "Reindent C++"
on the menu, it doesn't properly indent the switch statment. It considers the
"break;" line as a normal statement. The "-" represent indents (spaces)What
I mean is that it does this:
 
switch(a){ 
---- case 1: 
-------- a=2; 
-------- break; 
 
---- case 2: 
-------- a=1; 
-------- break; 
} 
 
instead of this: 
 
switch(a){ 
---- case 1: 
-------- a=2; 
---- break; 
 
---- case 2: 
-------- a=1; 
---- break; 
} 
 
Those who write C/C++ code will understand what I mean. 

______________________________________________________________________
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: Thu, 23 Apr 2009 17:42:10 +0000
From: "SourceForge.net" <[email protected]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Hanging Indents
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=7269460
By: cchris

Hmm.. Actualy I did use another text editor, if only because it displays better
in 800x600 resolution.

One thing you could do to use N++ only is:

1 copy shortcuts.xml to a different folder
2 edit that file
3 outside N++, and the latter being closed, clobber the old shortcuts.xml using
drag and drop.

CChris

______________________________________________________________________
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: Thu, 23 Apr 2009 17:44:31 +0000
From: "SourceForge.net" <[email protected]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Column Mode
        Select  replace all in 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=7269467
By: cchris

For me, In Selection is not greyed out even when I have a column selection.

Using the unicode v5.3.1.

CChris

______________________________________________________________________
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, 23 Apr 2009 19:10:50 +0000
From: "SourceForge.net" <[email protected]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: code folding
        for user        defined language
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=7269783
By: bvindh

hi Chris

i down loaded the notepad++ source code and found "LexAbaqus.cxx" in the
"..\npp.5.3.1.src\scintilla\src" folder. the LexAbaqus.cxx seems to have syntax
highlighting and the code folding defined. its written by Sergio Lucato and
had been in release 1.75 of scintilla(22 November 2007).

but abaqus doesnt show up in the language menu of notepad++ or scite. does this
mean that the capability to handle abaqus files exist but has to be "activated"?

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: 9
Date: Thu, 23 Apr 2009 19:34:25 +0000
From: "SourceForge.net" <[email protected]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: AutoUpdate 5.2
        ->      5.3.1 crashes
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=7269864
By: froggsde

Today the update succeeded!

thx

______________________________________________________________________
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: Thu, 23 Apr 2009 22:21:06 +0000
From: "SourceForge.net" <[email protected]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] searching for
        newline
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=7270496
By: wolfkin


====
{

&nbsp;&nbsp;&nbsp;&nbsp; Font-size
====

I want to remove the extra carriage return so it looks like this

====
{
&nbsp;&nbsp;&nbsp;&nbsp; Font-size
====

I tried to use the extended search mode which seemed to work on a similar 
problem
but searching yields no hits.

"{\n\n" = 0
"{" hits
"\n" = 0

______________________________________________________________________
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: Thu, 23 Apr 2009 22:46:22 +0000
From: "SourceForge.net" <[email protected]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Feature request on file size
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=7270584
By: snemarch

You should take a look at the mailing list archive, this topic has been brought
up quite a few times.

The answer is no, this isn't going to happen anytime soon, since the limit is
part of Scintilla, the editing control that NP++ uses :)

______________________________________________________________________
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



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

------------------------------------------------------------------------------
Crystal Reports &#45; New Free Runtime and 30 Day Trial
Check out the new simplified licensign option that enables unlimited
royalty&#45;free distribution of the report engine for externally facing 
server and web deployment.
http://p.sf.net/sfu/businessobjects

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

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


End of Notepad-plus-plus Digest, Vol 35, Issue 42
*************************************************

Reply via email to