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 - Plugin Development] RE: NppExec   Suggestion
      (integrating Tcl) (SourceForge.net)
   2. [notepad-plus - Plugin Development] RE: New       Explorer 1.5
      available!!! (SourceForge.net)
   3. [notepad-plus - Help] RE: Files don't always      show in the
      explorer tree? (SourceForge.net)
   4. [notepad-plus - Open Discussion] Column Editing   Feature in
      v4.2.x (SourceForge.net)
   5. [notepad-plus - Help] RE: Suggestions for auto    compl for user
      def l (SourceForge.net)
   6. [notepad-plus - Help] How to save as .TXT by      deult?
      (SourceForge.net)
   7. [notepad-plus - Open Discussion] Feature  Request: Open
      Containing Folder (SourceForge.net)
   8. [notepad-plus - Open Discussion] RE: Add  Compiler
      (SourceForge.net)
   9. [notepad-plus - Help] syntax highlight MIB file (SourceForge.net)


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

Message: 1
Date: Tue, 14 Aug 2007 22:03:37 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
        NppExec Suggestion (integrating Tcl)
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=4465784
By: rodzilla

Tcl exists as both a library (tcl84.dll) and an executable interpreter
(tclsh.exe).
It does not mess with the OS, is not gigantic (though if you want a *really*
light scripting language, Lua is probably the way to go), and is extremely good
at manipulating strings (much better than Lua).
Tcl is also the scripting language used in most Electronic Design Automation
software.

A good Tcl documentation (the Tcl language + the C API):
http://tmml.sourceforge.net/doc/tcl
Sources for Tcl: http://www.tcl.tk/software/tcltk/downloadnow84.html

Integrating it into Notepad++ would consist in (1) creating and handling a Tcl
interpreter and (2) binding useful Notepad++ functions into Tcl.

(1) should be pretty simple:

// To create an interpreter:
Tcl_Interp* theInterpreter = Tcl_CreateInterp();

// To execute a script:
if (Tcl_Eval(theInterpreter, theScript) == TCL_ERROR) {
  // Handle the error using 'const char *Tcl_GetStringResult(theInterpreter)'
}

(2) should be a bit more complicated because functions you will wrap must be
chosen carefully.
To actually wrap functions, you might want to use SWIG (http://www.swig.org/),
a wrapper generator that has support for quite a few scripting languages (just
in case you have similar requests :D).

Hope this helps,
Rod

______________________________________________________________________
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: 2
Date: Tue, 14 Aug 2007 23:55:12 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
        New     Explorer 1.5 available!!!
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=4465857
By: nobody

So do you mean you have still problems with the shell icons?

Best Regards
Jens

______________________________________________________________________
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: 3
Date: Tue, 14 Aug 2007 23:59:24 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Files don't
        always  show in the explorer tree?
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=4465862
By: nobody

I try to figure out the problem.

Best Regards
Jens

______________________________________________________________________
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: Wed, 15 Aug 2007 01:05:08 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] Column
        Editing Feature in v4.2.x
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=4465909
By: nobody

I had high expectations from the new column editing feature and was looking
forward to this release, knowing Notepad++ has great potential. Being familiar
to the UltraEdit implementation, I however was disappointed by the way it works.
I expected a real column MODE that you switch to with ALT-C. Instead, for 
inserting
text you now have to ALT-select a selection, hit ALT-C, type your text, hit
enter...
Usability issues:
1) No real "sticky" column MODE (need to use ALT over and over again)
2) No vertical selection line visible when selecting multiple lines, with 
selection
width of 0 chars. Very confusing to see what was selected.
3) Block deletion and overwriting is done straight from the main editor, while
insertion needs an extra dialog. Why not just insert text in the main editor,
while typing in a multiline selection ? If this is just because of the number
insertion, I'd keep the dialog just for that purpose.

Many thanks for this great editor !
David.

______________________________________________________________________
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: Wed, 15 Aug 2007 04:38:20 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Suggestions for
        auto    compl for user def l
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=4466113
By: redspecs

Could you solve problems with <>-words and $-words?
Notepad++ is my favorite editor.
Since short time I work in the development of uniface 7.2.
I would be pleased, if you could send to me your syntax file and the API file
to my email address.
Thank you

______________________________________________________________________
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: Wed, 15 Aug 2007 05:48:38 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] How to save as .TXT
        by      deult?
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=4466205
By: nobody

When I save my files (I guess in 90% they are pure text), I have to manualy
add extension (.txt). Is it possible to be done by Notepad++, like with regular
M$ Notepad?

Regards
ZoNi

______________________________________________________________________
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: Wed, 15 Aug 2007 06:37:01 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] Feature
        Request: Open Containing Folder
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=4466259
By: mblandfo

In VS2005, if you right click on an open file's tab, you can select "Open 
Containing
Folder" and it will open that folder in Windows Explorer. Notepad++ currently
has "Current Dir Path to Clipboard". I use this a lot, followed by win-e, alt-d,
ctrl-v, enter. It would be very helpful if it was just one click, as in VS2005.

______________________________________________________________________
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: Wed, 15 Aug 2007 06:47:46 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: Add
        Compiler
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=4466280
By: traut

Is there any chance to combine language and compiler options?

Is there any kind of if/else scripting which could be used here?

______________________________________________________________________
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: Wed, 15 Aug 2007 08:17:52 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] syntax highlight
        MIB file
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=4466422
By: nobody

Anyone have a style to make notepad++ syntax highlight snmp MIB files?

______________________________________________________________________
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: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/

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

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


End of Notepad-plus-plus Digest, Vol 15, Issue 37
*************************************************

Reply via email to