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. (no subject) (Edwin Artunduaga)
   2. [notepad-plus - Plugin Development] Explorer      1.5.1 with lots
      of changes/fixes (SourceForge.net)
   3. [notepad-plus - Plugin Development] RE:   SecurePad plugin
      (SourceForge.net)
   4. [notepad-plus - Open Discussion] RE: Run...       arguments for
      java in Windows (SourceForge.net)
   5. [notepad-plus - Plugin Development] RE: Awk       plugin (written
      in C#) (SourceForge.net)
   6. [notepad-plus - Help] A successfully working      process!
      (SourceForge.net)
   7. [notepad-plus - Help] RE: Fortran Syntax errror! (SourceForge.net)
   8. [notepad-plus - Plugin Development] RE: New       Plugin available:
      FTP_synchronize (SourceForge.net)
   9. [notepad-plus - Plugin Development] RE:   Standard way of
      adding a menu? (SourceForge.net)
  10. [notepad-plus - Plugin Development] RE:   SecurePad plugin
      (SourceForge.net)
  11. [notepad-plus - Open Discussion] RE: Run...       arguments for
      java in Windows (SourceForge.net)
  12. [notepad-plus - Open Discussion] Feature  Request: "Smart"
      Auto-Complete (SourceForge.net)


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

Message: 1
Date: Mon, 3 Sep 2007 17:11:53 -0500
From: "Edwin Artunduaga" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] (no subject)
To: [email protected]
Message-ID:
        <[EMAIL PROTECTED]>
Content-Type: text/plain; charset="iso-8859-1"


-------------- next part --------------
An HTML attachment was scrubbed...

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

Message: 2
Date: Mon, 03 Sep 2007 01:52:32 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development]
        Explorer        1.5.1 with lots of changes/fixes
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=4497988
By: jenslorenz


Hello Notepad++ user,

I published the new version of Explorer 1.5.1 with a lot of fixes and new
features.
See change-log for details:

--------------------------------------------------------------------------------
----
07/09/03  v1.5.1 :
--------------------------------------------------------------------------------
----
Fix: Crashed on update of plugin from v1.3 - v1.4 to this one (Favorites.dat)
Fix: Owner drawn file list now execute within the NM_CUSTOMDRAW notification
Fix: Tree in Favorites uses also NM_CUSTOMDRAW notification
Fix: When closing a file now the underline will be removed in any case
Fix: Root paths were not shown in drop down history
Fix: Updates only on reactivating of Notepad++
Fix: On using standard icons of explorer the device shell icons were wrong
Fix: Blue hand was shown on file selection in Favorites dialog
Fix: Caption in Explorer is correctly set when Folders in Favorites dialog were
opened
New: Links *.lnk now opened correctly
New: Extend functionality in context menu with "DOS Prompt..."
New: Exclude Filter with e.g. *[^*.cpp]
New: Underline of open files in Favorites [Files]
New: Automatic fill out of name on "Add to 'Favorites'..."
Change: Overlay images are now updated in separate tasks
Change: On right click a folder now following menu items are shown
- Full File path(s) to document 
- File Name(s) to document

Download here:
https://sourceforge.net/project/showfiles.php?group_id=189927&package_id=223667&;
release_id=536795

Have fun!
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: Mon, 03 Sep 2007 04:33:22 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
        SecurePad plugin
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=4498154
By: donho

Quite funny your plugin, and it might be useful for some context.

May I publish your plugin in Npp-Plugins :
https://sourceforge.net/projects/npp-plugins/

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



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

Message: 4
Date: Mon, 03 Sep 2007 10:41:40 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Run...  arguments for java in Windows
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=4498599
By: ytbau

Thank you for iguessnot posting. 

Just to let you know that I had successfully configure by javac(F8) and java(F9)
to port my Crimson Editor v3.70 setting to Notepad++ v4.2.2.

Below is my reply oneweb.

As we know that to compile Hello.java file, we type the following command in
the windows command prompt:

javac Hello.java

Then, Hello.class java bytecode file will be generated by the java compiler.
To run this Hello.class file, we type the following command:

java Hello

Therefore, what the "java %~n2" command actually means is that we java/run the
baseName of second argument in C:\java.cmd "$(CURRENT_DIRECTORY)" 
"$(FILE_NAME)".
The "$(FILE_NAME)" or Hello.java is the second argument but the basename(%~n2)
of the second argument is "Hello".

Hope this help.

Reference:
1. http://www.student.oulu.fi/~vtatila/batch_tutorial.html

Samples to test:

// Hello.java
public class Hello {

        public static void main( String args[] ) {
        
                System.out.printf("IBM Annual Code Match 2008%n");
        
        }
        
}

//c:\javac.cmd
// :: means comment in MSDOS Batch Programming
// @ means batch display suppression operator eg @<command>
:: My Javac
@echo off 
@cd %1 
javac %2 
echo compile completed. 
@pause 

//c:\java.cmd
@echo off 
@cd %1 
java %~n2 
@pause

// create these Run... commands within notepad++ 
// (save them and map them to keys - I use F8(javac) and F9(java), 
// respectively because of my previous Crimson Editor setting
C:\javac.cmd "$(CURRENT_DIRECTORY)" "$(FILE_NAME)" 
C:\java.cmd "$(CURRENT_DIRECTORY)" "$(FILE_NAME)" 

// just in case you want to edit your run setting, you may configure it from
// C:\Documents and Settings\ytbau\Application Data\Notepad++\shortcuts.xml


______________________________________________________________________
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: Mon, 03 Sep 2007 12:23:22 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
        Awk     plugin (written in C#)
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=4498726
By: artiche

I updated the files to fix two bugs that were :
 - a problem with saving end of lines of the scripts
 - the plugin was freezing when it had to write too much lines in the standard
output

 
http://artiche.info/npp/NppAwkPlugin_bin.zip 
http://artiche.info/npp/NppAwkPlugin_src.zip 
 
to install, see above.
if the plugin was already intalled, just replace the C# dll (NppAwkPluginCS.dll)
and re-add it to the GAC :

first remove it from the GAC :
gacutil /u C:\Program Files\Notepad++\DotnetPlugins\NppAwkPluginCS.dll

then add it again :
gacutil /i C:\Program Files\Notepad++\DotnetPlugins\NppAwkPluginCS.dll

______________________________________________________________________
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, 03 Sep 2007 12:32:33 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] A successfully
        working process!
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=4498736
By: nobody

Thanks again. I think you are mistaken about mentioning the SciLexer.dll
before.
After copying the newly made version to the NP++ directory, I finally got rid
of the inability to move blank lines down by using CTRL+SHIFT+DOWN.


______________________________________________________________________
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: Mon, 03 Sep 2007 13:39:58 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Fortran Syntax
        errror!
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=4498787
By: nobody

Oh, don't worry. It's not dying.
In the old days only the mathematicians and engineers used fortran, for their
purposes.
In nowadays every "script kiddie" uses some kind of programming language, but
the apsolute number
of mathematicians and engineers remain the same, and therefore the relative
number of programmers
using fortran looks small. It's still the only option for what it is made for.
In my company there
are 14 fortran programmers (CFD related) and 1 C and 1 VB programmer.

Cheers !

______________________________________________________________________
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: Mon, 03 Sep 2007 15:22:42 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
        New     Plugin available: FTP_synchronize
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=4498878
By: harrybharry

A new test-release for the plugin, v. 0.9.0.0 (although idk if the version 
numbering
is applicable)
http://www.mediafire.com/?5zwgjtfyyfr
More stable (I hope), 
loads of bugs fixed, 
profile support, 
more options, 
GUI cleanup,
autosave,
as good as all requests added.

I feel its pretty usable atm

About that cache: if you download a file to it, its just a file on you computer,
the only time something happens is if you download it again (or upload to the
server). It resides in notepad++/plugins/FTP_synchronize (depending on DLL name)

I really have to put it on SourceForge some time ;)

-Harry

______________________________________________________________________
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, 03 Sep 2007 15:25:21 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
        Standard way of adding a menu?
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=4498885
By: harrybharry

I think you can use HMENU GetMenu(HWND nppData._nppHandle) to retrieve the menu,
then change it to your likings

______________________________________________________________________
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, 03 Sep 2007 16:48:22 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
        SecurePad plugin
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=4498949
By: nobody

i'm using the lastest version of N++ 4.2.2 and the only version of SecurePad
and i get a message that 
"Load Library is (sic) failed.  This plugin is not compatible with the current
version of N++..."

I wonder if the supplied binary is ok, because i see all plugins are above 100kb
and SecurePad is only 9kb ??


______________________________________________________________________
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: 11
Date: Mon, 03 Sep 2007 18:02:42 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Run...  arguments for java in Windows
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=4499005
By: nobody

Thanks very much! Just what I needed at the time...

______________________________________________________________________
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: Mon, 03 Sep 2007 19:33:15 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] Feature
        Request: "Smart" Auto-Complete
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=4499069
By: nobody

Notepad++ is awesome. But it's missing a feature that great text editors should
have.
It would be wonderful if a "smart" auto-complete feature was implemented. We
need an auto-complete that remembers what you've typed in previously while 
working
with the file, and then automatically giving suggestions on what you might be
trying to type, as you type. (People that have used ultra-edit will know what
I'm talking about)
For example, if you've typed the work "foobar" previously, then next time you
are typing f-o-o-... and the a small suggestion box with "foobar" will appear
beneath where you are typing. Hitting enter or whatever designated key should
then automatically complete the word.
With this feature notepad++ will become hands down the best text editor ever.

______________________________________________________________________
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



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

-------------------------------------------------------------------------
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 16, Issue 5
************************************************

Reply via email to