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: Feature Request: MD5
encoding! (SourceForge.net)
2. [notepad-plus - Help] Macro problem (SourceForge.net)
3. [notepad-plus - Help] RE: Macro problem (SourceForge.net)
4. [notepad-plus - Help] RE: Macro problem (SourceForge.net)
5. [notepad-plus - Help] RE: Newbie help for adding a shortcut
(SourceForge.net)
6. [notepad-plus - Open Discussion] New Language / Syntax
Highlighting (SourceForge.net)
7. [notepad-plus - Open Discussion] RE: New Language / Syntax
Highlighting (SourceForge.net)
8. [notepad-plus - Open Discussion] RE: Notepad++ v4.2 RC is
avalable (SourceForge.net)
9. [notepad-plus - Open Discussion] RE: Notepad++ v4.2 RC is
avalable (SourceForge.net)
10. [notepad-plus - Open Discussion] RE: Notepad++ v4.2 RC is
avalable (SourceForge.net)
----------------------------------------------------------------------
Message: 1
Date: Wed, 08 Aug 2007 07:04:24 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
Feature Request: MD5 encoding!
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=4453673
By: nobody
Use a command line MD5 tool that accepts text as a parameter
e.g.
C:\junk>md5 -h
MD5 -- Calculate MD5 signature of file. Call
with md5 [ options ] [file ...]
Options:
-csig Check against sig, set exit status 0 = OK
-dtext Compute signature of text argument
-l Use lower case letters for hexadecimal digits
-n Do not show file name after sum
-ofname Write output to fname (- = stdout)
-u Print this message
-v Print version information
by John Walker -- http://www.fourmilab.ch/
Version 2.0 (2003-04-15)
This program is in the public domain.
C:\junk>md5 -dmytext
947EF8C8DB156A568D5974D71F7638F4
C:\junk>
______________________________________________________________________
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: Wed, 08 Aug 2007 07:54:16 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] Macro 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=4453760
By: nobody
First of all, i think the notepad++ is great! :)
But I have a little problem I don't know how to solve. I am writing a simple
macro that will create an empty actionscript class just from a new file and
the name of the class and the cursor is at the end. Example ( | shows where
the cursor is, ##are comments (not part of file))
##beginning of file (new)
SomeClass|
##end of file
I want it to be changed like that:
##beginning of file (SomeClass.as)
package com.dev.generic {
public class SomeClass {
|##means 2 tabspaces and the cursor should be there
}
}
##end of file
Instead, I get:
##beginning of file (new)
package com.dev.generic {
public class SomeClass {
}}
##end of file, and I get an opened save dialog
OK, so since saving an unsaved document opens a windows choose file dialog and
i don't belive the macro has a wrapper to also record the actions there. Is
there another way to automatically set a name to a file through a macro?
Still, why is there a difference in text output.
I record the following
SomeClass| ##type ".as", press "shift+home", press "ctrl+x"
##now i have copied the name of the desired file
package com.dev.generic {
public class | ##i type everything until here, then press "ctrl+v" to paste
the name
##then press "backspace" 3 times to delete the ".as"
extension
package com.dev.generic {
public class SomeClass {
}
}|## type " {\n\n}\n}"
##then i press "LEFTARROW" and "BACKSPACE" to delete the last identation
##then i press "UP" two times to get to the empty line and "TAB" once and
"RIGHT"
##to get the cursor in the desired position - idented two times just below
"public"
word.
Sorry for the long post, but any advice is appreciated ( i really want to
understand
the macro capability to its fullest, because i think it's veery useful.)
Yours,
Zdravko
______________________________________________________________________
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: Wed, 08 Aug 2007 08:03:40 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Macro 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=4453775
By: nobody
Hi, it's me again, I found the problem.
So, suppose you type "\ta\n"
In the editor you'll get
##start of file
a
|
##end of file
There is an automatic identation, but if you saved the commands and try them
as macros you get
##start of file
a
|
##end of file
In macros there's no direct identation :(, i think it's a bug, i mean it should
do whatever it does in the editor ;)
But still, could you help me how i can do automatic saving from macros without
need of "save as" dialog since it's not "doable" via a macro?
Thanks,
Zdravko
______________________________________________________________________
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, 08 Aug 2007 08:06:14 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Macro 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=4453783
By: nobody
and of course the forum treats starting whitespaces as nothing, so i repost
the results of my second response using the html npsp; entity
##start of file
a
|
##end of file
There is an automatic identation, but if you saved the commands and try them
as macros you get
##start of file
a
|
##end of file
In macros there's no direct identation :(, i think it's a bug, i mean it should
do whatever it does in the editor ;)
But still, could you help me how i can do automatic saving from macros without
need of "save as" dialog since it's not "doable" via a macro?
Thanks,
Zdravko
______________________________________________________________________
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: Wed, 08 Aug 2007 09:00:12 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Newbie help for
adding a shortcut
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=4453862
By: gjrg_np
Well, I guess that would explain why I can't work out how to do it ;-)
Thanks for taking the time to respond, Joel.
Greg
______________________________________________________________________
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, 08 Aug 2007 10:10:14 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] New
Language / Syntax Highlighting
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=4453965
By: nobody
I wasn't sure how this works, but I was wanting to make a new 'language' to
use for Change Logs. Such as have the [Fixed] and such be in a different color.
______________________________________________________________________
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: Wed, 08 Aug 2007 10:10:47 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: New
Language / Syntax Highlighting
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=4453966
By: nobody
To re-phrase, is this doable and is there documentation to do this?
______________________________________________________________________
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, 08 Aug 2007 10:18:08 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
Notepad++ v4.2 RC is avalable
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=4453983
By: nobody
Thanks for the new 4.2RC! Looks great. However, I'm not sure if I found a
bug or not. In the Style Configuration menu under Preferences, I select the
"Current line background" for the "global settings". Here I can change the
background color of the current line, but I cannot change the foreground color.
It looks disabled or something. Also same for font style under this option.
I changed by highlight color, but when text is highlighted it's not readable
due to the foreground color and I can't see to change it.
Regards,
FGump
______________________________________________________________________
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, 08 Aug 2007 10:34:07 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
Notepad++ v4.2 RC is avalable
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=4453997
By: steakhacher
>> but directory is not filled with the current file file path
>Are you sure about that? I just tested it, it works fine for me.
Indeed it seems to be working fine. Sorry may be overtiredness or alcohol... lol
______________________________________________________________________
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: 10
Date: Wed, 08 Aug 2007 11:24:38 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
Notepad++ v4.2 RC is avalable
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=4454090
By: steakhacher
Hi
There is a little problem in find in files dialog box, indeed, if you type
enter,
it has not action on Find them all button while enter key is working fine in
find and replace tab.
It could be good if you could improve it.
Thanks a lot
______________________________________________________________________
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 15, Issue 19
*************************************************