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 - Help] RE: how do I use a  counter with regex?
      (SourceForge.net)
   2. [notepad-plus - Help] Using "NUM +" and NUM -"    in Scintilla
      cmds .. (SourceForge.net)
   3. [notepad-plus - Help] RE: Search Results to New   File
      (SourceForge.net)
   4. [notepad-plus - Help] RE: regex counter   increment line number
      sequence (SourceForge.net)
   5. [notepad-plus - Help] RE: Using "NUM +" and NUM   -" in
      Scintilla cmds .. (SourceForge.net)
   6. [notepad-plus - Help] Regular Expressions -       Repetition
      (SourceForge.net)
   7. [notepad-plus - Open Discussion] ctrl-alt arrow   fast search
      (SourceForge.net)
   8. [notepad-plus - Open Discussion] RE: ctrl-alt     arrow fast
      search (SourceForge.net)
   9. [notepad-plus - Open Discussion] RE: 5.2 Update   killed my XML
      Tools plugin (SourceForge.net)
  10. [notepad-plus - Open Discussion] RE:      FTP_synchronize ::
      Pathname too long ? (SourceForge.net)


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

Message: 1
Date: Tue, 17 Mar 2009 11:30:54 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: how do I use a
        counter with regex?
To: nore...@sourceforge.net
Message-ID: <6837657.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=6837657
By: cchris

For this sort of programmatic text manipulation, I keep an old DOS editor, 
Bingo,
which I use a couple time a year, I'd say. It features not only regexes, but
a script language called Chess - it looks like a sybset of ANSI C with an 
interface
to the editor's internals - which you can use to script actions on text held
by the editor. Perhaps some day the NppJavaPlugin by F. Fesevur will allow the
same level of flexibility using a conventional language, but it is still far
from that.

A plugin to implement Chess would be very handy, but I'm much more familiar
with Pascal or Eiffel than with C++, so I'm wary of writing it myself.

CChris

______________________________________________________________________
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: Tue, 17 Mar 2009 11:44:58 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Help] Using "NUM +" and
        NUM -"  in Scintilla cmds ..
To: nore...@sourceforge.net
Message-ID: <6837833.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=6837833
By: bobselby

I want to setup a basic "brief" keyboard mapping using the
"settings->ShortcutMapper->ScintillaCommands" menu.

"brief" uses the Numeric Pad "+" and "-" to copy and cut respectively.

However when I change SCI_CUT to "num -" and SCI_COPY to "num +" it doesnt seem
to work quite correctly.

What I see is that when I highlight a word and tap "num +" it copies the wod
to the clipboard OK but replaces the word on the screen with "+" ... not what
I intended at all.

Is there a way around this (other than using non- printable keys such as "ALT
NUM +" - which defeats the object) ???

TIA
Bob

BTW it would be nice if there were a search facility in the forum - perhaps
there is, but I cannot find 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: 3
Date: Tue, 17 Mar 2009 11:50:51 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Search Results
        to New  File
To: nore...@sourceforge.net
Message-ID: <6837893.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=6837893
By: cchris

Copy the whole contents of the view results window to clipboard, using the 
Select
all and Copy entries on the context menu for that window. Then paste that to
a new file, and you are set. I didn't try making a macro out of this, but it
should work.

CChris

______________________________________________________________________
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: Tue, 17 Mar 2009 12:08:09 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: regex counter
        increment line number sequence
To: nore...@sourceforge.net
Message-ID: <6838065.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=6838065
By: gr3gw

Wolf,

Given Fool4U's experimentation with my first general solution, I would refine
it as follows:

Use TextFX to add lines numbers to the whole file.
Save this as LineNumberCopy.
Use Find & Replace (Ctrl/H) to delete lines without a semicolon (;)
  Search For: ^.*;.*$
  Replace With: <nothing>
Save this file as SemicolonLines.
Open LineNumberCopy again. This time delete lines with a semicolon (;)
  Search For: ^[^;]+$
  Replace With: <nothing>
Save this file as NonSemicolonLines.
(I hope you will agree that if SemicolonLines is merged with NonSemicolonLines
and line are sorted, you should have your original file because the line numbers
mark each line's position in the file.)
Open the SemicolonLines file.
Use TextFX to add line numbers again. (I hope this works.)
Now use the technique I gave before to move the line number at the left to a
position just after the semicolon. I'm sure you can make the necessary
adjustments.
(You should now have a file of the semicolon lines with their first line numbers
showing at the start of the line.)
Now you merge this file with the NonSemicolon file (Copy and Paste?) and use
the TextFX Sort command to reorder the lines to their original order. (Click
the Sort Ascending command to get Sort Ascending.)
If this looks right, remove the line numbers with the appropriate TextFX line
removal command.

If you work through this, you really do have too much spare time on your hands.
:-)

Don't apologise for your English, it was very clear. I should apologise for
my lack of German(?).

Auf Wiedersehen!

______________________________________________________________________
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: Tue, 17 Mar 2009 13:21:39 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Using "NUM +"
        and NUM -" in Scintilla cmds ..
To: nore...@sourceforge.net
Message-ID: <6838919.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=6838919
By: gr3gw

I'm afraid I don't know Scintilla very well at all.

I assume you are specifying the changes through Settings> Shortcut Mapper> 
Scintilla
Commands tab.

Do you have a utility for remapping keyboard keys? One that I know of allows
you to generate Ctrl/C when Alt/Num+ is depressed in a specific program, but
it's commercial.

Apart from this, maybe someone familiar with Scintilla can help.

RE: Search facility in forums. YES there is one but don't feel embarrassed 
because
it is well hidden. On the forum page, go to the  Forum menu in the orange area
at the top of the page and click. On the dropdown menu you'll find a Search
command. It's not brilliant but it will do the job. If you don't get the hits
you want immediately, change the key words and whether or not you want all or
any (logical and, logical or).

______________________________________________________________________
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: Tue, 17 Mar 2009 15:20:38 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Help] Regular Expressions
        -       Repetition
To: nore...@sourceforge.net
Message-ID: <6840281.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=6840281
By: ketan324

I can't get the regular expression characters: {} to work in notepad++. These
are used to define repetition, for example:

Sa{3,5}m - this means look for "S" followed by aaa, aaaa or aaaaa and then "m".

Also [0-9A-Za-z]{6} look for any case combination of numbers and letters 
strictly
6 characters in length.
Please help, this is a very important argument for me to use. Thanks
--Ketan

______________________________________________________________________
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: 7
Date: Tue, 17 Mar 2009 16:50:12 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] ctrl-alt
        arrow   fast search
To: nore...@sourceforge.net
Message-ID: <6841230.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=6841230
By: siranm

what happened with ctrl-alt arrow fast search ? i updated and now it doesn't
appear to work anymore

______________________________________________________________________
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: Tue, 17 Mar 2009 16:57:34 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        ctrl-alt        arrow fast search
To: nore...@sourceforge.net
Message-ID: <6841319.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=6841319
By: siranm

to solve the problem, use shortcut mapper "Find Volatile", and set the keys
you want


this was already answered in a previous post... sorry for re-posting a solved
issue !


great editor, my favorite !!

______________________________________________________________________
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: Tue, 17 Mar 2009 19:16:37 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: 5.2
        Update  killed my XML Tools plugin
To: nore...@sourceforge.net
Message-ID: <6842781.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=6842781
By: gordonkeehn

What version of the plugin did you use, and where did you get it?  I've tried
2.3.1_r697_Unicode (with external .dlls) and 2.3.1_r639 (ascii) without any
success.

______________________________________________________________________
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: Tue, 17 Mar 2009 20:12:09 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        FTP_synchronize :: Pathname too long ?
To: nore...@sourceforge.net
Message-ID: <6843412.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=6843412
By: dottedline

I have this issue too. Everything worked a charm for a week until I renamed
all files (to a longer name) to reflect the "real" project name.

The local path became too long and I get the same error message Eric got.

______________________________________________________________________
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 40
*************************************************

Reply via email to