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] RE: Erroneous execution of macro in
Notepad++ (SourceForge.net)
2. [notepad-plus - Help] RE: Erroneous execution of macro in
Notepad++ (SourceForge.net)
3. [notepad-plus - Help] RE: Erroneous execution of macro in
Notepad++ (SourceForge.net)
4. [notepad-plus - Open Discussion] RE: Macro to insert
characters after each line (SourceForge.net)
5. [notepad-plus - Open Discussion] Starting Col at 0
(SourceForge.net)
6. [notepad-plus - Open Discussion] RE: launching in Safari and
Opera also? (SourceForge.net)
7. [notepad-plus - Help] How to re-show preview search results?
(SourceForge.net)
8. [notepad-plus - Help] How to define a "working file set" and
open i (SourceForge.net)
9. [notepad-plus - Open Discussion] RE: Starting Col at 0
(SourceForge.net)
10. [notepad-plus - Open Discussion] RE: launching in Safari and
Opera also? (SourceForge.net)
11. [notepad-plus - Open Discussion] Coverting multiple files to
ANSI (SourceForge.net)
----------------------------------------------------------------------
Message: 1
Date: Fri, 28 Aug 2009 03:49:20 +0000
From: "SourceForge.net" <[email protected]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Erroneous
execution of macro in 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=7591455
By: ycc-swe
I don't know where the appdata is in this system. I searched the harddisks from
the top for shortcuts.xml.
There is an option during installation "Do not use %appdata%". I chose this
and now the macros I make store in the np++ "program files" folder.
This is the chunk of text I wish to process with the example macro (macro named
ycc_test_00):
ab cd ef
gh ij kl
I wish to put the cursor at "a" and move around with the arrows exchanging the
first letter of every pair to capitals. I only use arrowkeys, deletekey and
corresponding upper case letter key.
The result of the macro should be like this:
Ab Cd Ef
Gh Ij Kl
During recording of the macro everything is OK, but during execution the
following
garbled result is obtained:
Ab Cd EfGghIijKkl
The macro is recorded like this:
<Macro name="ycc_test_000" Ctrl="no" Alt="no" Shift="no" Key="0">
<Action type="0" message="2180" wParam="0" lParam="0" sParam="" />
<Action type="1" message="2170" wParam="0" lParam="0" sParam="A" />
<Action type="0" message="2306" wParam="0" lParam="0" sParam="" />
<Action type="0" message="2306" wParam="0" lParam="0" sParam="" />
<Action type="0" message="2180" wParam="0" lParam="0" sParam="" />
<Action type="1" message="2170" wParam="0" lParam="0" sParam="C" />
<Action type="0" message="2306" wParam="0" lParam="0" sParam="" />
<Action type="0" message="2306" wParam="0" lParam="0" sParam="" />
<Action type="0" message="2180" wParam="0" lParam="0" sParam="" />
<Action type="1" message="2170" wParam="0" lParam="0" sParam="E" />
<Action type="0" message="2300" wParam="0" lParam="0" sParam="" />
<Action type="0" message="2304" wParam="0" lParam="0" sParam="" />
<Action type="0" message="2180" wParam="0" lParam="0" sParam="" />
<Action type="1" message="2170" wParam="0" lParam="0" sParam="K" />
<Action type="0" message="2304" wParam="0" lParam="0" sParam="" />
<Action type="0" message="2304" wParam="0" lParam="0" sParam="" />
<Action type="0" message="2304" wParam="0" lParam="0" sParam="" />
<Action type="0" message="2304" wParam="0" lParam="0" sParam="" />
<Action type="0" message="2180" wParam="0" lParam="0" sParam="" />
<Action type="1" message="2170" wParam="0" lParam="0" sParam="I" />
<Action type="0" message="2304" wParam="0" lParam="0" sParam="" />
<Action type="0" message="2304" wParam="0" lParam="0" sParam="" />
<Action type="0" message="2304" wParam="0" lParam="0" sParam="" />
<Action type="0" message="2304" wParam="0" lParam="0" sParam="" />
<Action type="0" message="2180" wParam="0" lParam="0" sParam="" />
<Action type="1" message="2170" wParam="0" lParam="0" sParam="G" />
</Macro>
I interpret the "message" parameter like this:
2180 delete-key
2306 R-arrow
2300 D-arrow
2304 L-arrow
As I see it the macro is correctly recorded (exactly like I went through it
during recording) and the garbling must occur later, during the execution.
______________________________________________________________________
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, 28 Aug 2009 03:54:40 +0000
From: "SourceForge.net" <[email protected]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Erroneous
execution of macro in 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=7591466
By: ycc-swe
It seems the macro-engine loses track of its position (one step left) when I
step down one line? It starts erasing the blanks instead of the first letters
of the pairs.
(If I delete with backspace instead I get the same result))
______________________________________________________________________
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, 28 Aug 2009 04:00:06 +0000
From: "SourceForge.net" <[email protected]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Erroneous
execution of macro in 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=7591470
By: ycc-swe
I made some further experiments. Could this problem have to do with HOW NEW
LINE IS REPRESENTED. I have seen similar things happening my own programs. New
line is represented differently in f.ex. Linux and Windows. If new line
is represented by either one or two characters will make a difference for where
the cursor is positioned.
______________________________________________________________________
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: Fri, 28 Aug 2009 05:20:53 +0000
From: "SourceForge.net" <[email protected]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
Macro to insert characters after each line
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=7591537
By: achappel
Great! I've added this to the macro. You've been a real help!
______________________________________________________________________
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, 28 Aug 2009 09:56:16 +0000
From: "SourceForge.net" <[email protected]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] Starting
Col at 0
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=7592205
By: pow1983
Hi,
Is it possible to start the column (Col) at 0 instead of 1?
Cheers,
______________________________________________________________________
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, 28 Aug 2009 10:34:54 +0000
From: "SourceForge.net" <[email protected]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
launching in Safari and Opera also?
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=7592340
By: rchl
opera "$(FULL_CURRENT_PATH)"
safari "$(FULL_CURRENT_PATH)"
chrome "$(FULL_CURRENT_PATH)"
Full paths to browsers shouldn't be needed as Windows has a lookup table that
is created on installation of these programs
______________________________________________________________________
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, 28 Aug 2009 11:33:53 +0000
From: "SourceForge.net" <[email protected]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] How to re-show
preview search results?
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=7592520
By: thoazu
Assume I performed some search tasks. The results were shown in the lower half
of the editor. Then I close this "search" pane (accidentially).
How can I tell NP++ to re-show/re-open this pane (with the previous search
results)
?
Thomas
______________________________________________________________________
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: Fri, 28 Aug 2009 11:45:36 +0000
From: "SourceForge.net" <[email protected]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] How to define a
"working file set" and open i
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=7592555
By: thoazu
Assume I opened a couple of important files which I need in certain situations.
This say 23 files are not from one single directory but spread over the whole
directory tree.
I want to define them as a kind of "working set" and call this e.g. "mySet123".
Later (meanwhile I closed some of these files and re-open others) I want to
revert back to exactly this working set.
Ok, I could start manually to navigate through the whole directory tree and
open them individually step-by-step but this would be very, very unconvenient
and user unfriendly.
Instead I would appreciate to have a menu "open a working set"
which I can click and which let me open exactly these previously defined files
and automatically close the others.
Is this possible with NP++?
Maybe as a new function in the next release?
Thomas
______________________________________________________________________
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, 28 Aug 2009 13:56:51 +0000
From: "SourceForge.net" <[email protected]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
Starting Col at 0
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=7592953
By: im2crazy4u
Any reason?
______________________________________________________________________
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: Fri, 28 Aug 2009 15:52:17 +0000
From: "SourceForge.net" <[email protected]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
launching in Safari and Opera also?
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=7593395
By: cchris
Ok, my vote to include these in the set of user commands.
Anyway, anyone can copu those lines and create cmmands directly in
shortcuts.xml,
mimicking those already present. Be sure to back up befoore proceeding, and
to read http://sourceforge.net/apps/mediawiki/notepad-plus/index.php?title=Confi
guration_Files for tips on editing configuration files.
CChris
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=331753
------------------------------
Message: 11
Date: Fri, 28 Aug 2009 15:55:45 +0000
From: "SourceForge.net" <[email protected]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion]
Coverting multiple files to ANSI
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=7593407
By: jpkoczan
I'm new to Notepad++, but I saw that have a way to convert the encoding of a
file (Format --> Convert to ANSI).
I have a bunch of html files (over 3000) encoded in UTF-8, and need to convert
them to ANSI. I was hoping there was a way to run the "Convert to ANSI"
function
on a bunch of files at once rather than opening each file and manually selecting
the option from the menu.
Any suggestions would be great, TIA!
______________________________________________________________________
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
------------------------------
------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day
trial. Simplify your report design, integration and deployment - and focus on
what you do best, core application coding. Discover what's new with
Crystal Reports now. http://p.sf.net/sfu/bobj-july
------------------------------
_______________________________________________
Notepad-plus-plus mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/notepad-plus-plus
End of Notepad-plus-plus Digest, Vol 39, Issue 53
*************************************************