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 - Open Discussion] Feature  Request: SMARTY
      Support (SourceForge.net)
   2. [notepad-plus - Help] RE: Crash on Javascript     file > 100K
      (SourceForge.net)
   3. [notepad-plus - Open Discussion] RE: monospaced   fonts not
      quite monospaced (SourceForge.net)
   4. [notepad-plus - Plugin Development] Notepad++ :   suggest
      features (SourceForge.net)
   5. [notepad-plus - Plugin Development] Getting       path of current
      doc. in Delphi2007 (SourceForge.net)
   6. [notepad-plus - Open Discussion] RE: Notepad++    5.1.4 crashes
      frequently (SourceForge.net)
   7. [notepad-plus - Open Discussion] RE: Notepad++    5.1.4 crashes
      frequently (SourceForge.net)
   8. [notepad-plus - Plugin Development] RE: Getting   path of
      current doc. in Delphi2007 (SourceForge.net)
   9. [notepad-plus - Plugin Development] RE:   Notepad++ : suggest
      features (SourceForge.net)
  10. [notepad-plus - Help] RE: Crash on Javascript     file > 100K
      (SourceForge.net)


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

Message: 1
Date: Mon, 19 Jan 2009 16:07:46 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] Feature
        Request: SMARTY Support
To: nore...@sourceforge.net
Message-ID: <6178645.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=6178645
By: zonebinder

I was looking to massage SMARTY Syntax highlighting from smarty.net
(http://smarty.net/contribs/syntax_highlighting/) in to np++, but cannot find
an interface to contribs directory to use.

Is there a method to add language support or is it possible you could add SMARTY
highlighting?

-Matt

______________________________________________________________________
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: Mon, 19 Jan 2009 16:11:53 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Crash on
        Javascript      file > 100K
To: nore...@sourceforge.net
Message-ID: <6178679.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=6178679
By: wulipe

I switched to the npp Unicode version and made sure all the plugins are the
latest version.  Problem solved.  I am guessing its probably the old versions
of plugins that caused 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: 3
Date: Mon, 19 Jan 2009 17:01:27 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        monospaced      fonts not quite monospaced
To: nore...@sourceforge.net
Message-ID: <6179147.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=6179147
By: hujhax

Sorry, twitpic seems to be busted right now[1] -- but your explanation makes
sense.

[1] http://www.atebits.com/forum/topic.php?id=181&replies=5

______________________________________________________________________
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, 19 Jan 2009 17:12:00 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development]
        Notepad++ :     suggest features
To: nore...@sourceforge.net
Message-ID: <6179211.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=6179211
By: shamuntoha

The editor is fantastic!!!!

Please add the notepad++ feature as built in or as option to be enable or 
disable
as following:

- Php,C,C++,Javascript,Css code library plugin for auto code complete, 
intellisence
for coding or allow us a prototype where we can follow a custom file to upgrade
our own code, definations, etc

- Mingw (gcc/g++) built in F9 or F5 to compile and make file







______________________________________________________________________
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: Mon, 19 Jan 2009 18:02:11 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development]
        Getting path of current doc. in Delphi2007
To: nore...@sourceforge.net
Message-ID: <6179598.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=6179598
By: mveselic

Hello all,

I'm writing a simple plugin that has to send filename and selected text to some
other application for processing. Some functions defined for nppplugin object
like: GetPluginsConfigDir, GetFileLine that return string, returns only first
letter of entire string. I've tried to write my own function like this:

var
zs: pChar;
s: String;
begin
  zs:=StrAlloc(MAX_PATH);
  FormMain:= TFormMain.Create(Self);
  with FormMain do begin
    if SendMessage(self.NppData.NppHandle, NPPM_GETFULLCURRENTPATH, 0, 
LPARAM(zs))
<>0 then
//    if SendMessage(self.NppData.ScintillaMainHandle, SCI_GETSELTEXT, 0, 
LPARAM(zs))
<>0 then
    begin
      SetString(s, zs, StrLen(zs));
      SetCaption(s);
      ShowModal;
      Free;
    end;
  end;
  StrDispose(zs);
end;
But result is the same. Only first letter.
Messages directed to ScintillaMainHandle works as expected.

Any help would be appreciated.
Best regards,
Maki.


______________________________________________________________________
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, 19 Jan 2009 18:19:39 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Notepad++       5.1.4 crashes frequently
To: nore...@sourceforge.net
Message-ID: <6179758.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=6179758
By: trpplayer79

I don't have that problem on my vista Business and XP pro systems.
Did you installed the new version over the old version?
Did you tried notepad++ without the plugins?

Greetz

______________________________________________________________________
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: Mon, 19 Jan 2009 21:03:46 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Notepad++       5.1.4 crashes frequently
To: nore...@sourceforge.net
Message-ID: <6182366.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=6182366
By: sivantal

My system is Windows XP Pro. I installed notepad++ 5.1.4 as it is from sf.net
(it comes with some plugins built in). I installed it on top of 5.1.3 (would
it be better to uninstall the old version first? if so - would it cause losing
all my preferences?)


______________________________________________________________________
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: Mon, 19 Jan 2009 21:09:12 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
        Getting path of current doc. in Delphi2007
To: nore...@sourceforge.net
Message-ID: <6182530.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=6182530
By: harrybharry

I suspect you are writing a plugin for the Unicode notepad++, if so, simple
Char will not suffice, you will need the equivalent of wchar (which more or
less is a short). Since Scintilla was/is/will always be single byte, it works
as expected.
If you are developing for the ANSI Notepad++ it will require some more 
investigation,
I don't have an answer ready at hand then :).

______________________________________________________________________
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: 9
Date: Mon, 19 Jan 2009 21:12:36 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
        Notepad++ : suggest features
To: nore...@sourceforge.net
Message-ID: <6182609.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=6182609
By: harrybharry

If with auto code complete you mean it translates some string into a generic
function, use the QuickText plugin. If oyu mean 'regular' autocomplete, you
can edit your own autocomplete files, see autocomplete in the N++ help. You
can generate function parameter hints as well, see the same section.

You can invoke MinGW using user run commands or by use of NppExec (which is
more powerfull), there is a MinGW tutorial in the wiki

______________________________________________________________________
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: 10
Date: Mon, 19 Jan 2009 22:58:14 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Crash on
        Javascript      file > 100K
To: nore...@sourceforge.net
Message-ID: <6184112.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=6184112
By: donho

Tested with my v5.1.4 Unicode version under vista and xp, without crash.

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



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

------------------------------------------------------------------------------
This SF.net email is sponsored by:
SourcForge Community
SourceForge wants to tell your story.
http://p.sf.net/sfu/sf-spreadtheword

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

_______________________________________________
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 32, Issue 38
*************************************************

Reply via email to