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: File extension eg. .txt
(SourceForge.net)
2. [notepad-plus - Open Discussion] Remove options (save, save
as) (SourceForge.net)
3. [notepad-plus - Help] RE: How compare plugin works
(SourceForge.net)
4. [notepad-plus - Help] Vista issues for 4.3? (SourceForge.net)
5. [notepad-plus - Plugin Development] RE: New Plugin available:
FTP_synchronize (SourceForge.net)
6. [notepad-plus - Plugin Development] RE: New plugin:
CCompletion (SourceForge.net)
7. [notepad-plus - Help] HOWTO change tabulation space
(SourceForge.net)
8. [notepad-plus - Help] RE: HOWTO change tabulation space
(SourceForge.net)
9. [notepad-plus - Plugin Development] RE: New Plugin available:
FTP_synchronize (SourceForge.net)
10. [notepad-plus - Open Discussion] RE: FEATURE REQUEST
(SourceForge.net)
11. [notepad-plus - Open Discussion] RE: Notepad++ v4.3 - crash
problem ??? (SourceForge.net)
12. [notepad-plus - Open Discussion] RE: FEATURE REQUEST
(SourceForge.net)
----------------------------------------------------------------------
Message: 1
Date: Mon, 01 Oct 2007 06:05:52 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: File
extension eg. .txt
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=4545807
By: harrybharry
Because GetSaveFileName (Win32 api) doesnt really specify any way to do this.
According to the specifications, you can give a default extension (that gets
appended when the user gives no extension) and a list of extensions the user
can choose from, but nothing to retrieve what extension the user has chosen.
This means that either the default gets appended (no solution here, you dont
want to append .txt to a file that has to be .cpp) or nothing because the user
doesnt type anything and selects something from the list.
But, I jsut googled around on the matter and it seems that if you were to supply
a dummy extension, GetSaveFileName actually DOES append the selected extension
of no extension is given (if an extension is given, nothing is done), so the
solution (here it comes Don) would probably be
<snippet FileDialog.cpp>
char * FileDialog::doSaveDlg()
{
_ofn.lpstrDefExt = ""; // Dummy default here
...
fn = ::GetSaveFileName(&_ofn)?_fileName:NULL;
...
_ofn.lpstrDefExt = NULL; // No default extension
}
</snippet FileDialog.cpp>
I tried and it seems to work.
______________________________________________________________________
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, 01 Oct 2007 08:40:54 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] Remove
options (save, save as)
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=4546037
By: arrow_runner
I'd like to use Notepad++ in a sort of kiosk mode and would like to remove the
save & save as & print buttons from the toolbar and menu bar. Removing both
bars altogether would be just as well. I have not found a way to do this.
Is there a way to do this without recompiling the program myself?
Thank you, and thanks to all the contributors for such an awesome tool!
______________________________________________________________________
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: Mon, 01 Oct 2007 08:42:30 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: How compare
plugin works
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=4546040
By: spamfreefinally
i'm no programmer but it doesn't seem to be working well for me either.
i get "files match" message but it still beats me too.
i tried "clone to another view" but all changes occur simultaneously (not sure
why that would be useful). i then tried to save cloned instance with new name
and compare to old and still "files match" then deleted 2 lines from clone (with
new name) and got "files match", saved clone, compare, "files match", added
text to clone and saved, compared "files match".
seems i'll be using the default install since no plugin i tried today has worked
(and i don't have the know-how to make them work)(BTW for those who may be
wondering
the spell-check was the only other plugin i tried but it is wayyyy over my head
and after 30 minutes reading and trying it still did not work). i was hoping
compare would be better but need more help in verrrry simplistic terms.Thanks
to anyone that may want to field 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=331754
------------------------------
Message: 4
Date: Mon, 01 Oct 2007 09:28:31 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] Vista issues for
4.3?
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=4546112
By: antbryan
Hi,
I can't cleanly quit Notepad++ 4.3 on Vista (home basic, 32 bit, quad core,
2G RAM). Previous versions worked fine.
Also, every time I start up I get a "Load langs.xml failed" and config.xml &
stylers.xml errors too.
______________________________________________________________________
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: Mon, 01 Oct 2007 08:59:02 -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=4546062
By: m-a-r-k
Can any one else access http://npp-plugins.cvs.sourceforge.net? In IE and FF
I get server taking too long to respond.
Mark B
______________________________________________________________________
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, 01 Oct 2007 09:34:10 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
New plugin: CCompletion
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=4546119
By: nobody
I found two errors.
1. Fixed ending sequence to include a tabulator while parsing. I'm still not
sure if Ctags can include this as well into identifier signature, but it works
for now ;)
2. Ctags included at least one line where a long identifier signature filled
several lines. I modified my parser so it survives multiple calls for one
identifier.
I uploaded the new version of the plugin:
http://freeweb.siol.net/rmihor/NppCCompletionPlugin101.zip
Regards,
Bostjan
______________________________________________________________________
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: 7
Date: Mon, 01 Oct 2007 09:48:59 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] HOWTO change
tabulation space
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=4546136
By: nobody
hi
nice software... hope this won't get as heavy as ultraedit has become... I
stopped
using it for the 2 seconds I have to wait util it loads !
hence,
How can I change change the tabulation space, 4 spaces by default, to 8 ????
thanks
scavenger
______________________________________________________________________
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, 01 Oct 2007 09:55:34 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: HOWTO change
tabulation space
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=4546144
By: nobody
OK stop I found !!
hell this wasn't easy... the number is blue colored like an hyperlink, hard
to see when you search for a black one or a label...
yeah
^^
______________________________________________________________________
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: Mon, 01 Oct 2007 11:02:28 -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=4546237
By: harrybharry
Hmm, well since last uplaod I am unable to reach it aswell, seems we need some
SourceForge staff here, other CVS'es work just fine
______________________________________________________________________
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, 01 Oct 2007 11:17:01 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
FEATURE REQUEST
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=4546259
By: nobody
It should be nice if "Run" command captures output to console window.
"Terminate"
command can be useful too.
______________________________________________________________________
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: 11
Date: Mon, 01 Oct 2007 11:28:13 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
Notepad++ v4.3 - crash 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=4546277
By: lunatic4
This is kind of a crappy bug report since I can't really pinpoint this crash.
Seems to be random. Usually happens when I click on a different tab right after
N++ regains focus. The error is "R6025 - Pure function call". I'm running XP
Pro and the files in question are on a network drive. Half of them are set
to Read Only in N++. Sorry that I don't have more time to test and pinpoint
the problem.
______________________________________________________________________
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, 01 Oct 2007 14:20:55 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
FEATURE REQUEST
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=4546520
By: salocin13
coucou Nobody
> It should be nice if "Run" command captures output to console window.
this is done through the NppExec plugin. The output of the executed programs
are shown in the console window of Npp. Try it you'll love it. For the one
making
compilation with gcc, if you double click on warnings or errors in the console
window, it will jump to the file and to the line.
Nico
______________________________________________________________________
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: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
------------------------------
_______________________________________________
Notepad-plus-plus mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/notepad-plus-plus
End of Notepad-plus-plus Digest, Vol 17, Issue 5
************************************************