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 and utf-8
(SourceForge.net)
2. [notepad-plus - Help] RE: Usage on multiple monitors
(SourceForge.net)
3. [notepad-plus - Plugin Development] RE: Very little request!
(SourceForge.net)
4. [notepad-plus - Open Discussion] RE: Clickable links
(SourceForge.net)
5. [notepad-plus - Open Discussion] RE: Clickable links
(SourceForge.net)
6. [notepad-plus - Translation] RE: Italian Translation updated
(SourceForge.net)
7. [notepad-plus - Open Discussion] RE: Should I do this
feature? (SourceForge.net)
8. [notepad-plus - Translation] RE: English.xml v.4.6 changes
(SourceForge.net)
9. [notepad-plus - Open Discussion] Little installation problem
(SourceForge.net)
10. [notepad-plus - Plugin Development] RE: NppExec and utf-8
(SourceForge.net)
11. [notepad-plus - Plugin Development] RE: New: Explorer version
1.6 (SourceForge.net)
12. [notepad-plus - Open Discussion] RE: Feature request : extend
the folding capa (SourceForge.net)
----------------------------------------------------------------------
Message: 1
Date: Sat, 01 Dec 2007 16:39:20 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
NppExec and utf-8
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=4653913
By: ishamid2
Ok, thanks a lot; I look forward to it! BTW, here are a couple of popular utf-8
test files
http://www.w3.org/2001/06/utf-8-test/UTF-8-demo.html
http://www.unics.uni-hannover.de/nhtcapri/multilingual1.html
Some of this depends of course on whether the relavant font has the glyphs.
I also noticed that Scite claims to work under W98; I wonder if its
console-unicode
works on that platform as well....
Best wishes
Idris
______________________________________________________________________
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: Sat, 01 Dec 2007 17:33:37 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Usage on
multiple monitors
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=4653951
By: donho
Terrific!
Tested under Vista and it works on both situations.
It'll be in the next release.
Thank you for your nice patch Greg.
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
------------------------------
Message: 3
Date: Sat, 01 Dec 2007 17:48:33 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
Very little 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=4653965
By: nobody
Is it possible to add plugin for the following extensions:
.rfm
.myd
.myi
And will notepad ++ decode files?
Thanks
______________________________________________________________________
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: Sat, 01 Dec 2007 22:59:04 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
Clickable links
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=4654159
By: vds2212
I finally did what I have proposed I have modified the
in Notepad_Plus.cpp I have make the following changes:
const char *urlHttpRegExpr = "http://[a-z0-9_\\-\\+.:?&@=/%#]*";
become:
const char *urlHttpRegExpr = "\"([a-z\\.:]+[/\\\\].*)\"";
I have slightly modified:
<pre>
case SCN_HOTSPOTDOUBLECLICK :
{
_pEditView->execute(SCI_SETWORDCHARS, 0,
(LPARAM)"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_-+.:?&@=
/\\%#");
int pos = _pEditView->execute(SCI_GETCURRENTPOS);
int startPos =
static_cast<int>(_pEditView->execute(SCI_WORDSTARTPOSITION,
pos, false));
int endPos =
static_cast<int>(_pEditView->execute(SCI_WORDENDPOSITION, pos,
false));
_pEditView->execute(SCI_SETTARGETSTART, startPos);
_pEditView->execute(SCI_SETTARGETEND, endPos);
int posFound = _pEditView->execute(SCI_SEARCHINTARGET,
strlen(urlHttpRegExpr),
(LPARAM)urlHttpRegExpr);
if (posFound != -1)
{
startPos = int(_pEditView->execute(SCI_GETTARGETSTART));
endPos = int(_pEditView->execute(SCI_GETTARGETEND));
}
char currentWord[MAX_PATH*2];
_pEditView->getText(currentWord, startPos, endPos);
<b>
if (strlen(currentWord) <= 0)
break;
const char *fileName = _pEditView->getCurrentTitle();
//::GetFullPathName(fileName, MAX_PATH, longFileName, NULL);
char folderName[MAX_PATH];
strcpy(folderName, fileName);
for (int i = strlen(folderName); i > 0;) {
char c = folderName[--i];
if (c != '\\')
continue;
folderName[i] = '\0';
break;
}
if (currentWord[0] == '.') {
char fileName[MAX_PATH];
strcpy(fileName, folderName);
strcat(fileName, "\\");
int len = strlen(currentWord);
if (currentWord[len - 1] == '"')
currentWord[len - 1] = '\0';
for (int i = len; i > 0;) {
char c = currentWord[--i];
if (c == '/')
currentWord[i] = '\\';
}
strcat(fileName, currentWord);
doOpen(fileName);
}
else {
::ShellExecute(_hSelf, "open", currentWord, NULL,
folderName, SW_SHOW);
}
</b>
_isHotspotDblClicked = true;
_pEditView->execute(SCI_SETCHARSDEFAULT);
break;
}
</pre>
To open the file into notpad instead that into the default shell editor.
And since the regular expression check for quote for backward compatibility
I did change the function that highlight the link:
int posFound = _pEditView->execute(SCI_SEARCHINTARGET,
strlen(urlHttpRegExpr),
(LPARAM)urlHttpRegExpr);
while (posFound != -1)
{
int start = int(_pEditView->execute(SCI_GETTARGETSTART)) <b>+
1</b>;
int end = int(_pEditView->execute(SCI_GETTARGETEND)) <b>- 1</b>;
int foundTextLen = end - start;
int idStyle = _pEditView->execute(SCI_GETSTYLEAT, posFound);
if (end < posBegin2style - 1)
{
if (style_hotspot > 1)
style_hotspot--;
}
else
______________________________________________________________________
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: Sat, 01 Dec 2007 23:23:58 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
Clickable links
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=4654166
By: vds2212
Don,
Sorry for the previous post that seems more or less unreadable. I just write
it to tell you that I did some change in my version of Notepad++ and I'm happy
with it.
When I have a file opened in NotePad++ that reference an another one the new
feature let me jump from the first to the second in one double-click :-)
It is nice to jump to the .css file or the .js used in an html file.
It is nice for my configuration files that reference other configuration files.
It is exactly the same feature that UltraEdit and PsPad have. It is just better
because you just have to double click instead of using an context menu or a
keyboard shortcuts.
It could be improved for c++ since I don't underline
#include "brol.h"
or
#include <stdio.h>
and all the path are considered relative to the path of the file itself and
in c++ you can have special folder where the preprocessor will look for
includes.
But maybe this is too sophisticate for a text editor.
But for html and configuration I think it is a nice addition.
Please tell me what you think about my proposition.
I'll be very proud to contribute a bit to Notepad++
If you plan consider my patch don't hesitate to ask me any information you want
that can help you inserting my code into the main trunk.
Yours,
Vivian De Smedt.
______________________________________________________________________
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: 6
Date: Sun, 02 Dec 2007 01:23:20 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Translation] RE: Italian
Translation updated
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=4654239
By: ices_eyes
New update for the italian language file to version 4.6. Same address than
before
:)
NOTE: i'm not one of the official translator adverted on the site :)
______________________________________________________________________
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=558104
------------------------------
Message: 7
Date: Sun, 02 Dec 2007 03:36:02 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
Should I do this feature?
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=4654313
By: steakhacher
so what do you think to have 3 comments menu entries: comment/uncomment,
comment,
uncomment with 3 shortcut. With this solution everybody could use its favor
function.
______________________________________________________________________
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: Sun, 02 Dec 2007 03:50:09 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Translation] RE:
English.xml v.4.6 changes
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=4654325
By: ices_eyes
Item 6322 has been addes in 4.5 version, so if you don't have tha version of
the english.xml, that is not the one on the site, you don't see the item 6322,
but just the 6320 ;)
______________________________________________________________________
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=558104
------------------------------
Message: 9
Date: Sun, 02 Dec 2007 06:48:26 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] Little
installation 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=4654448
By: nobody
I updated to 4.6, and some errors occured... until I noticed that the previous
version still was running. So, maybe, a little check telling the user to close
it before updating should be a nice addition. Even better: closing the
app automaticly after a warning or so.
As opensource developer, I really like this tool a lot. Thanks for sharing it
with us.
______________________________________________________________________
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: Sun, 02 Dec 2007 08:51:08 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
NppExec and utf-8
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=4654567
By: dv__
SciTE may use Scintilla's window for the console output. The Scintilla control
handles UTF-8 internally. I did not use Scintilla control for the console -
I have used Rich Edit control (native Windows control) instead. Now I see that
it was not very clever, but currently there is A LOT OF code which directly
works with the Rich Edit control in the plugin, so it's too late to use
Scintilla
control instead.
______________________________________________________________________
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: Sun, 02 Dec 2007 09:02:04 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
New: Explorer version 1.6
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=4654578
By: donho
If anyone has any crash due to Explorer, please post here.
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: 12
Date: Sun, 02 Dec 2007 13:36:31 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
Feature request : extend the folding capa
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=4654852
By: nobody
May be my request was not clear enough ...
I had like, when editing shell scripts, to have the block-folding possibility,
in addition to braces on :
- if /fi
- case / esac
- for / done
- while /done
- select / done
- until / done
This could be extended by properties files associated to the programming
language,
permitting anyone to choose wether it uses or no this possibility.
Would it be very complicated to implement ?
Regards
Jo?l
______________________________________________________________________
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
------------------------------
-------------------------------------------------------------------------
SF.Net email is sponsored by: The Future of Linux Business White Paper
from Novell. From the desktop to the data center, Linux is going
mainstream. Let it simplify your IT future.
http://altfarm.mediaplex.com/ad/ck/8857-50307-18918-4
------------------------------
_______________________________________________
Notepad-plus-plus mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/notepad-plus-plus
End of Notepad-plus-plus Digest, Vol 19, Issue 5
************************************************