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 - Help] Documentation (SourceForge.net)
   2. [notepad-plus - Help] RE: macros using replace    dialog
      (SourceForge.net)
   3. [notepad-plus - Open Discussion] RE:      shortcuts.xml
      (SourceForge.net)
   4. [notepad-plus - Open Discussion] RE: how to use   compare
      plugin (SourceForge.net)
   5. [notepad-plus - Open Discussion] RE: Dream        behaviour for
      comment/uncomment (SourceForge.net)
   6. [notepad-plus - Open Discussion] RE:      shortcuts.xml
      (SourceForge.net)
   7. [notepad-plus - Open Discussion] Search Next (SourceForge.net)
   8. [notepad-plus - Help] RE: Build 4.2 &     NppInsertPlugin VC++
      2008 Exp (SourceForge.net)
   9. [notepad-plus - Plugin Development] Rewrap        issues
      (SourceForge.net)
  10. [notepad-plus - Open Discussion] RE: Search Next (SourceForge.net)
  11. [notepad-plus - Help] RE: 关于Notepad++的执行效率
      (SourceForge.net)
  12. [notepad-plus - Plugin Development] RE: New       Plugin available:
      FTP_synchronize (SourceForge.net)


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

Message: 1
Date: Fri, 21 Sep 2007 10:23:17 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] Documentation
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=4530936
By: nobody

I upgraded to 4.2 and now, SHIFT-ALT select functionality is fouled up.  Pasting
a selected and cut section of text replates all unprintable characters.  It
replaces every character with "[EXT]".

Where is there any documentation for this editor?


______________________________________________________________________
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: 2
Date: Fri, 21 Sep 2007 11:40:00 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: macros using
        replace dialog
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=4531022
By: bullock

At present, the macro feature records only (a) keystrokes/commands to the edit
window, and (b) some, but not all, commands from the main menu.  It does not
record input to any other windows, such as the search/replace windows.  
Sometimes
you can work around this by prepopulating your search/replace windows, then
record the <F3> keystroke in the macro.

Regards.
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: 3
Date: Fri, 21 Sep 2007 11:40:02 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        shortcuts.xml
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=4531023
By: nobody

It's not in registry. Have a look at the right place. See:

C:\Dokumente und Einstellungen\XXX\Anwendungsdaten\Notepad++\


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



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

Message: 4
Date: Fri, 21 Sep 2007 11:44:26 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: how
        to use  compare 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=4531028
By: helling

Chris,
As explained a few posts back in the post titled Compare Plugin, you need use
View > Go to another view.

First open the two files you want to compare then use "View > Go to another
view" to open both in side by side panes, then use the compare plugin.
Hope this helps,
Bob Helling


______________________________________________________________________
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: Fri, 21 Sep 2007 12:19:52 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Dream   behaviour for comment/uncomment
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=4531073
By: alphalyrae

I use the autohotkey software : http://www.autohotkey.com/
It allows you to launch special script on hotkey.
It has many features, but the script need to run permanently as a process.

The script file is a .ahk file that can be compiled as a little .exe that work
anywhere (on windows).
Here is a sample of my autohotkey script :
---------------------------------------------------------------------
#CommentFlag // ; activate commenting with // instead of ;

ctrlAltHome := "{End}{Home}{Home}{Home}" // go to line start after tabulations
(it's a variable)

//ctrl : insert a line before, with /*
   ^q::
      Send ^d%ctrlAltHome%+{End}0{Backspace}{SC135}* // ^d is the hotkey for
"duplicate line"
   return
//ctrl shift : insert a line before, with */
   ^+q::
      Send {End}{Enter}*{SC135}
   return
//alt : comment the line with //
   !q::Send %ctrlAltHome%{SC135}{SC135}{Space}
//alt shift : uncomment line with //
   !+q::Send %ctrlAltHome%^{delete}
//ctrl alt : duplicate and comment line
   ^!q::Send ^d%ctrlAltHome%{SC135}{SC135}{Space}{Down}{Home}
---------------------------------------------------------------------

^ means ctrl
+ means shift
! means alt
SC135 means /

The comment symbols are for C++ users.
This hotkeys works also for visual studio and even firefox ! (except those that
uses ^d)

you can also make this sort of things :
---------------------------------------------------------------------
^+c:: // ctrl shift c
   IfWinActive Firefox
   {   Send {F6}^c{Tab} // copy the adress
   }
return
---------------------------------------------------------------------
(even those separating lines are writing with autohotkey : alt e)

I've many many hotkeys like those.
I use autohotkeys to emulate my personalized dvorak keyboard too.
Infos on dvorak : http://en.wikipedia.org/wiki/Dvorak_Simplified_Keyboard
Comic explaining the story of qwerty and dvorak
: http://dvzine.org/zine/01-toc.html


______________________________________________________________________
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: Fri, 21 Sep 2007 13:16:39 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        shortcuts.xml
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=4531256
By: piano131141

Why did I not search there, I think I had a blackout.
Now can I translate with notepad++ shortcuts.xml there total in german.
Excellent.

Jens, thank You very much. 
Piano131141

______________________________________________________________________
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: Fri, 21 Sep 2007 13:38:33 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] Search
        Next
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=4531295
By: nobody

I would like to suggest a shortcut ( F3 ) to search the next word that are 
selected,
at 4.2.2 version this shortcut only works if you first make a normal search
for that word. Could be a way to set this option.

tnx for this great soft

Oliver 

______________________________________________________________________
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: Fri, 21 Sep 2007 14:51:55 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Build 4.2 &
        NppInsertPlugin VC++ 2008 Exp
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=4531361
By: nobody

I am very interested in your project. I am thinking of learning C++. I have
pondered whether I should actually spend the time. I have some questions. Is
VC++ 2008 Express (New) free? Have you used it before to do any coding? Is it
adequate for changing Notepad++. Where do you get it? You seemed to have given
anyone that wants to learn C++ a good blue print for the setup of the 
environment
and sources to get information and ideas from if they need them. Good Job! Do
you know of any good books, white papers, and tutorials on the subject. 
Tutorials
would be good to get started on a project. Also, let me know who all your 
contacts
are for this project. In case I need some help or direction.

Sincerely,
Bob

______________________________________________________________________
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: Fri, 21 Sep 2007 17:20:04 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development]
        Rewrap  issues
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=4531572
By: ishamid2

Hi, 

I. I would like to request a shortcut for Rewrap (TextFX Edit). This has been
a request of my own for some time now. Using Split Lines and Join Lines will
mimic word wrap to some degree but not as well. For example, sometimes Split
Lines will break a continuous sequence of characters if they are not all, eg,
letters. This causes lots more typos.

In general there is no configurator to give shortcuts to plugins, but Rewrap
is important enough to have its own. I would also like to be able to add it
to the context menu when I right-click, so it needs to be added to 
<language>.xml
as well.

With this feature I could type a paragraph (actually a joined line), double
click to select the entire paragraph, right-click and select Rewrap.

II. As to rewrap itself, it would be great if it would respect indentation.
So if I have a paragraph or line (including a long joined line) indented 5 
spaces,
rewrap would rewrap the paragraph/line to 5 spaces.

WinEDT has the best wrapping-formatting of any text editor I've seen. It allows
you to select/rewrap

a. individual paragraphs
b. entire document

with repect for indentation.  

III. I'm not sure how much scintilla's limitations are an issue here but a 
related
feature that would be really useful is automatic wrapping. So if I select a
right margin of 72 colums the line will automatically split and rewrap to the
next line, respecting indentation. This third issue is not really a plugin 
issue,
but it's related to the above so...

I) is probably the easiest one to implement, and if we only get that I'll be
quite happy :-) In any case I could readily use more rewrap tools in npp! Thanks
for reading.

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: 10
Date: Sat, 22 Sep 2007 03:34:18 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Search Next
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=4531875
By: nobody

Please try to use CTRL+F3/CTRL*SHIFT+F3

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



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

Message: 11
Date: Sat, 22 Sep 2007 05:43:37 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [notepad-plus - Help] RE: 关于Notepad++的执行效率
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=4531949
By: nobody

many pepole can not read chinese language. I think you should use English
language.
??!

i always use NP++ because she is an open source software, free, many fans, with
good developer, and espeacially, free! i use it even in my office.

Editplus is commercial!

______________________________________________________________________
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: 12
Date: Sat, 22 Sep 2007 06:04:34 -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=4531964
By: nobody

> I suppose with crash you mean crash on exit in all cases? 
Yes.
0.9.1.2 was crashing more often yesterday. I had a crash out-of-the-blue (no
crashes for maybe 20-30 uses before) then (and I've seen this before) it crashed
every time after that for the rest of the evening. It's almost as though 
something
gets corrupted in memory/on disk (an ini file?) and it crashes until it is 
cleared
somehow.

Today is OK so far. At least it is much more intermittent now and not every
time.
Did you follow up Don's comments on 2007-09-18 16:20?

all the best

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



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

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

Reply via email to