Send Notepad-plus-plus mailing list submissions to
        notepad-plus-plus@lists.sourceforge.net

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
        notepad-plus-plus-requ...@lists.sourceforge.net

You can reach the person managing the list at
        notepad-plus-plus-ow...@lists.sourceforge.net

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: OUCH!!
      NPPM_GETCURRENTSCINTILLA (SourceForge.net)
   2. Can I use wildcards in "Folderopen keyword" and   "Folderclose
      keyword"? (Axel Heyne)
   3. [notepad-plus - Open Discussion] RE: Replace      BUG may be only
      on Cyrillics (SourceForge.net)
   4. [notepad-plus - Plugin Development] RE: OUCH!!
      NPPM_GETCURRENTSCINTILLA (SourceForge.net)
   5. [notepad-plus - Help] XML Plugins will not        install in new
      NP++ (SourceForge.net)
   6. [notepad-plus - Plugin Development] RE: OUCH!!
      NPPM_GETCURRENTSCINTILLA (SourceForge.net)
   7. [notepad-plus - Open Discussion] RE: Notepad++    v5.2 released
      (SourceForge.net)
   8. [notepad-plus - Plugin Development] Feature       Request: Macros
      in Dockable Window (SourceForge.net)
   9. [notepad-plus - Open Discussion] RE: Open File    - Security
      Warning (SourceForge.net)
  10. [notepad-plus - Open Discussion] Request: Making sessions
      easier to load. (SourceForge.net)


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

Message: 1
Date: Mon, 16 Mar 2009 16:29:45 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
        OUCH!!  NPPM_GETCURRENTSCINTILLA
To: nore...@sourceforge.net
Message-ID: <6826037.482...@sourceforge.net>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=6826037
By: aathell

That's the thing though, it doesn't match!  It may be within bounds of MAIN_VIEW
and SUB_VIEW but the returned view is not the view one would expect to have
returned.

If the current Scintilla is MAIN_VIEW 0 and a plugin is using that as a current
view handle, and then the current Scintilla is switched to the invisible view
and a new call is made to GETCURRENTSCINTILLA the returned value is SUB_VIEW,
which is incorrect.  I'd expect to still see MAIN_VIEW returned, wouldn't 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=482781



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

Message: 2
Date: Tue, 17 Mar 2009 11:12:22 +0100
From: Axel Heyne <ahe...@oleco.net>
Subject: [Notepad-plus-plus] Can I use wildcards in "Folderopen
        keyword" and    "Folderclose keyword"?
To: notepad-plus-plus@lists.sourceforge.net
Message-ID: <49bf7786.9060...@oleco.net>
Content-Type: text/plain; charset=ISO-8859-15; format=flowed

Hi.

I'm trying to define my own syntax and have some problems with the 
definition of the folding keywords.
My text-files look like this for example:

1234Start:xxx
    test foo
2345Stop:yyy

So my keywords for folding are "Start:" and "Stop:".
As you can see, there are no whitespaces around those keywords.

So I need to know, how I could configure this.
Is there a possibility to use wildcards in "Folderopen keyword" and 
"Folderclose keyword"?

Regards,
Atze



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

Message: 3
Date: Mon, 16 Mar 2009 16:48:14 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Replace BUG may be only on Cyrillics
To: nore...@sourceforge.net
Message-ID: <6826271.331...@sourceforge.net>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=6826271
By: donho

Tested with v5.2 Unicode version.

Copy the following text into a new document (UFT-8 w/o BOM)
??? ????, ??? ??????
??? ????, ??? ??????
??? ????, ??? ??????
??? ????, ??? ?????? 
??? ????, ??? ?????? 

then replace all ????? by ?????? - works perfectly for me.

Is your document in ANSI format?

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



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

Message: 4
Date: Mon, 16 Mar 2009 17:19:15 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
        OUCH!!  NPPM_GETCURRENTSCINTILLA
To: nore...@sourceforge.net
Message-ID: <6826720.482...@sourceforge.net>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=6826720
By: donho

Indeed, _invisibleEditView could be pointed by _pEditView.

It is going to be changed to :
//----------------------------------------//
case NPPM_GETCURRENTSCINTILLA :
{
        if (_pEditView == &_mainEditView)
                *((int *)lParam) = MAIN_VIEW;
        else if (_pEditView == &_subEditView)
                *((int *)lParam) = SUB_VIEW;
        else
                *((int *)lParam) = -1;
        return TRUE;
}
//----------------------------------------//

currentEdit indicates the current Scintilla view : 0 is the main Scintilla view
1 is the second Scintilla view, else -1 (not main view nor sub view).

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: 5
Date: Mon, 16 Mar 2009 18:22:44 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Help] XML Plugins will
        not     install in new NP++
To: nore...@sourceforge.net
Message-ID: <6827552.331...@sourceforge.net>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=6827552
By: budcurtis

I upgraded to Notepad++ 5.2 and all the plugins I had were removed from the
plugin folder.  This included the  SearchInFiles and XMLTools plugins that I
use very frequently.  I tried downloading the most recent (not the alpha in
XML tools) plugins and putting them in the plugin folder.  The new Notepad 
declares
them incompatible.

I read on another post in this forum to put the plugins in  the Notepad++ 
install
folder.  I put them there, but I didn't find any of the features (XML check
syntax) loaded in the next startup of Notepad++.

What am I missing or are these features no longer available in Notepad++.  I
hope not!

______________________________________________________________________
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: Mon, 16 Mar 2009 18:27:12 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
        OUCH!!  NPPM_GETCURRENTSCINTILLA
To: nore...@sourceforge.net
Message-ID: <6827607.482...@sourceforge.net>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=6827607
By: aathell

Excellent, thank you.

That should make updating the current focused view and alternate view easier
and more accurate...
Now the following should always return the correct handle:

HWND hMainView() { return NppData._scintillaMainHandle; }
HWND hSecondView { return NppData._scintillaSecondHandle; }
HWND getHViewByInt(int view) { return ( view == MAIN_VIEW ) ? ( hMainView()
) : ( hSecondView() ); }
HWND hCurrView()
{
  static HWND hPrevCurrView;

  int tmpView = ::SendMessage( hNpp(), NPPM_GETCURRENTSCINTILLA, 0, 0);
  if ( tmpView != -1 ) {
    hPrevCurrView = ( getHViewByInt( tmpView ) );
  }
  return hPrevCurrView;
}
HWND hAltView() { return ( hCurrView() == hMainView() ) ? ( hMainView() ) :
( hSecondView() );


______________________________________________________________________
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, 16 Mar 2009 19:09:26 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Notepad++       v5.2 released
To: nore...@sourceforge.net
Message-ID: <6828134.331...@sourceforge.net>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=6828134
By: prozaker

the update silently option doesn't get saved if I uncheck it in the install
version. here's a link to the report.

https://sourceforge.net/tracker/index.php?func=detail&aid=2688995&group_id=95717
&atid=612382



______________________________________________________________________
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: Mon, 16 Mar 2009 19:25:02 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development]
        Feature Request: Macros in Dockable Window
To: nore...@sourceforge.net
Message-ID: <6828314.482...@sourceforge.net>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=6828314
By: umsteiger

Hi,

when using many Macros, it could be helpful if they could be seen in a separate
dockable window. Inside these window, it should be possible to organize the
macros in folders. Here an example:

~~~~~~~~~~~~~~
[block tags]
   p
   div
[inline tags]
   b
   i
   span
[forms]
   form
   td
~~~~~~~~~~~~~

In this case, each macro should create an HTML-tag around the selection. Maybe
it would be helpful, to see different macros for different languages.

cu
Martin

______________________________________________________________________
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, 16 Mar 2009 20:37:31 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: Open
        File    - Security Warning
To: nore...@sourceforge.net
Message-ID: <6829199.331...@sourceforge.net>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=6829199
By: tanman1217

This has nothing to do with Notepad++ - you'll get the same result if you type
that path into the Windows Run dialog (Start, Run).

On my home network, I fixed this by fixing the Local Intranet settings. To do
this, open Control Panel, Internet Properties. Click the Security tab, click
"Local intranet" then click Sites. Turn off "Automatically detect intranet 
networks"
and turn on all three of the "Include..." settings, then click OK, then
OK again.

You should no longer get security warnings when you access file on UNC paths.

HTH,
TanMan

______________________________________________________________________
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: Mon, 16 Mar 2009 21:35:41 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] Request:
        Making sessions easier to load.
To: nore...@sourceforge.net
Message-ID: <6829813.331...@sourceforge.net>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=6829813
By: ookseer

Sessions are great since it seems like I'm always working on more than one (or
five) project at once.

But the current interface makes it a bit of a pain to load sessions.  Currently
there's a lot of file/folder navigation to find the files, and since they dont'
have a file type to filter against they get lost when in a folder with a bunch
of other files.  I'd love to see one of the following:

a) Session files added to the Recent Files list, so at least they'd be quick
to access. (If you're lucky.)

-or-

b) Sessions have their own separate "recent sessions" submenu.

-or-

c) A file association with sessions so I can double-click a session file and
have it load.

-or-

d) Make dropping a session file on N++ open the session, not the XML.

Any one of these (especially b or c) would save me long minutes a day navigating
out deep folder structures to find the session.  Most of the time it's faster
to just drag and drop the files I want N++.

Thanks for listening!

______________________________________________________________________
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



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

------------------------------------------------------------------------------
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com

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

_______________________________________________
Notepad-plus-plus mailing list
Notepad-plus-plus@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/notepad-plus-plus


End of Notepad-plus-plus Digest, Vol 34, Issue 38
*************************************************

Reply via email to