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
        [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: insert    plugin, a web
      edition... (SourceForge.net)
   2. [notepad-plus - Help] RE: Problems closing        Notepad++
      (SourceForge.net)
   3. [notepad-plus - Plugin Development] RE: Have      NppExec combo
      listbox in toolbar (SourceForge.net)
   4. Word wrap boesn't work (Tsim)
   5. [notepad-plus - Open Discussion] RE: A few        minor 4.9.2 bugs
      (SourceForge.net)
   6. [notepad-plus - Plugin Development] RE: insert    plugin, a web
      edition... (SourceForge.net)
   7. [notepad-plus - Help] RE: Stop completing my      brackets!
      (SourceForge.net)
   8. [notepad-plus - Open Discussion] basic question   - line length
      (SourceForge.net)
   9. [notepad-plus - Open Discussion] RE: basic        question - line
      length (SourceForge.net)
  10. [notepad-plus - Open Discussion] RE: basic        question - line
      length (SourceForge.net)
  11. [notepad-plus - Open Discussion] RE: basic        question - line
      length (SourceForge.net)


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

Message: 1
Date: Fri, 06 Jun 2008 14:02:52 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
        insert  plugin, a web edition...
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=5012976
By: alexiljin

I'm glad that there are more people enjoying the fruits of my humble
contribution.

The problem with the Shortcut Mapper is related to the one discussed here:
http://sourceforge.net/forum/message.php?msg_id=4840426 . I can only provide
a sort of workaround by naming the dummy menu items "WebEdit Slot XX", where
XX is the number of the slot for disambiguation.

As to the wishlist, I'm sorry, but my WinApi skills are too inferior to 
undertake
such a GUI enterprise. I have an idea for an even better, more general 
functionality.
The idea is not mine, actually, I borrowed it from the Oberon Operating System,
from the module EditKeys. It's a module that utilizes a tiny macro language.
Now, that would be really useful! (As to the WebEdit plugin, I don't find it
very useful in my programming tasks, I use QuickText instead.)

A sample workflow would be the following ("<HotKey>" stands for pressing a 
hotkey,
e.g. Ctrl+Enter):
1. Type anywhere in a document
  Name:proc<HotKey>
2. It gets automatically expanded into:
  PROCEDURE Name ();
  BEGIN
     |
  END Name;
"|" marks the new caret position. Note the "Name" identifier is inserted twice.
All the new lines are properly indented. The macro name is "proc", it is typed
last in the sequence. All the macro parameters are separated by a colon. Macros
are defined in the ini-file, editable by the user.

Your example could be typed as:
"Selected text...":"Destination URL":target:Link<HotKey>

The only difficulty could be with the "Selected text..." - if it does contain
quotes, those should be escaped (doubled: ""), but that simple argument 
preparation
could be performed with another hotkey. Hmm... It could really work very well
if the behaviour of those two hotkeys were properly thought through. You could
even chain commands, performing a wrap after wrap after wrap.

1. Select some text:
  test " text
2. Press a hotkey, e.g. Ctrl+\ to prepare the selected text to be a macro 
command
argument:
  "test "" text":|
("|" marks caret position, last colon added automatically, quotes inside the
parameter are escaped, selection is removed)
3. Type the command name, e.g. "st" for the "strong" tag:
  "test "" text":st|
4. Press the macro expansion hotkey, e.g. Ctrl+Enter:
  <strong>test " text</strong>
5. After the expansion the text inside the tag is selected, ready for another
Ctrl+\ and the next macro command, and so on.

The text would be selected on step 5 only if it was previously selected and
prepared by Ctrl+\ on step 2, otherwise there would be no selection and the
caret would be placed wherever the macro says it should be placed.

What do you guys think? Pretty awesome?

______________________________________________________________________
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: Fri, 06 Jun 2008 17:04:36 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Problems
        closing 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=5013267
By: haibara

You can try the following troubleshooting methods, but I'll make no guarantee
they'll solve the problem.  :)

1) Disable the plugins, and see if the problem persists.  The easiest way to
do this is to go to the Notepad++ directory (usually in Program Files, unless
you chose to install it somewhere else) and rename the Plugins directory.  If
the problem is still there, you can undo the change (rename it back to
"Plugins").

If the problem doesn't occur when the Plugins directory is disabled, it's likely
that a plugin is causing it.  You can attempt to narrow it down to a specific
plugin by first making sure Notepad++ is closed, then renaming all the 
extensions
of the .dll files to an extension like .bak.  Rename *one* of the plugin 
extensions
back to .dll, then open Notepad++.  Does the problem reappear?  Repeat the 
process
for each .dll (enabling only one plugin at a time).

2) If all else fails (but before you try reverting to an earlier version), and
you don't mind losing/resetting your settings... try completely uninstalling
Notepad++.  Delete everything in its Program Files and Application Data folders
(I can't remember if Application Data has a different name under Vista, but
it's harder to get to.  :/  Under both XP and Vista, you can get to the relevant
folders by using Start > Run and entering "%appdata%" (without the quotes)in
the Run box.)
Once you've done that (you may or may not want to reboot as well, just to be
safe), reinstall the current version of Notepad++ and see if the problem still
occurs.



______________________________________________________________________
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, 06 Jun 2008 19:42:09 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
        Have    NppExec combo listbox in toolbar
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=5013424
By: xusoo

DV, please give user both then! 
1)Scripts can be selected and mapped for keys with menu items.
2)Combo box can be selected on toolbar.

XS

______________________________________________________________________
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, 7 Jun 2008 16:42:51 -0700
From: Tsim <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] Word wrap boesn't work
To: notepad-plus-plus@lists.sourceforge.net
Message-ID:
        <[EMAIL PROTECTED]>
Content-Type: text/plain; charset="iso-8859-1"

I'm a new user of Notepad++ v4.9.2 and am enjoying exploring its features
however I cannot get word wrap to function. Whether the wrap option is on or
off, the function doesn't work and text won't wrap. Could someone please
explain to me how to make this function work? Thanks.
-------------- next part --------------
An HTML attachment was scrubbed...

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

Message: 5
Date: Sat, 07 Jun 2008 01:27:10 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: A
        few     minor 4.9.2 bugs
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=5013830
By: j_m_g

Hi Don, 
Removed all DLLs, from \plugins, and added back one at a time. 

Offending one that causes launch-gpf, is HexEditor.dll 

- all others seem able to co-exist and launch OK in Win2000.

hth.


______________________________________________________________________
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: Sat, 07 Jun 2008 03:39:18 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
        insert  plugin, a web edition...
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=5013989
By: alexiljin

WebEdit 1.1 is released.

Changes:
- The dummy menu entries are renamed from "not used" to "WebEdit Slot XX",
where
  XX is the number of the slot. This helps greatly to find the items in the
Shortcut
  Mapper and differentiate between them.
- The double slash is now recognized as an escape sequence in the ini-file.
- Added version information resource to the DLL.

Download links (41Kb):
http://rapidshare.de/files/39644549/WebEdit1.1.zip.html
http://disk.tom.ru/rr17gea

______________________________________________________________________
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: Sat, 07 Jun 2008 03:44:55 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Stop completing
        my      brackets!
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=5013996
By: harrybharry

You probably have this feature enabled in TextFX. Look into the menu, there
is some option to enable and disable it.

______________________________________________________________________
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: Sat, 07 Jun 2008 12:01:59 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] basic
        question        - line length
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=5014650
By: jobejobe

How do I change the line length of text to 65 digits?

I see in TextFX Edit >> ReWrap text to (Clipboard or 72) width. 

Is this the easiest way to change line length?

And then how do I change it from 72 to 65? 

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



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

Message: 9
Date: Sat, 07 Jun 2008 12:17:18 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        basic   question - line length
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=5014663
By: fool4uanyway

(Type and) copy the number 65 to the clipboard (CTRL+C).
Then (undo the typing and) select the Rewrap option.


______________________________________________________________________
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: Sat, 07 Jun 2008 12:32:04 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        basic   question - line length
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=5014686
By: jobejobe

Thanks  - works well.


______________________________________________________________________
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, 07 Jun 2008 12:38:55 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        basic   question - line length
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=5014697
By: fool4uanyway

By the way, you also have to select the text lines you want to wrap before 
choosing
the menu option.

Searching for "+line +length" resulted in finding this previous thread:

"Help: split a string into givan length" (Help forum)
http://sourceforge.net/forum/forum.php?thread_id=2009129&forum_id=331754

1. Wrapping text will add a space character after the #th character of each
new line, if the #th character or the #+1th character isn't a space character.
# is the line number length you want.

Example with # = 10
Before:
9charword_10charword_11charsword_etc...
After:
9charword_
10charword_
11charswor_
d_etc..._

_ represents a space character

Notice that a space character will also be added to the last line, if it 
wouldn't
have been added already.

2. Unwrap Text

This option will copy text to be one-liners again, but this _won't_ remove the
previously added space characters. Best thing to do when the outcome is not
what had in mind, is press CTRL+Z (Undo).


______________________________________________________________________
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



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

-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php

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

_______________________________________________
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 25, Issue 9
************************************************

Reply via email to