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 - Open Discussion] RE: A    line-break tabbed
      files system (SourceForge.net)
   2. [notepad-plus - Open Discussion] RE: A    line-break tabbed
      files system (SourceForge.net)
   3. [notepad-plus - Help] How could I execute an      ASP within the
      notepad (SourceForge.net)
   4. [notepad-plus - Help] Answered: merge / append    / column paste
      (SourceForge.net)
   5. [notepad-plus - Open Discussion] Crazy Lawyer     Talk
      (SourceForge.net)
   6. [notepad-plus - Help] What's new in npp.4.3.bin (SourceForge.net)
   7. [notepad-plus - Open Discussion] bug: close tab   not following
      doc switcher MRU (SourceForge.net)
   8. [notepad-plus - Open Discussion] Stuttered Page   Up/Down
      (SourceForge.net)
   9. [notepad-plus - Help] styler.xml in 4.3 (SourceForge.net)
  10. [notepad-plus - Plugin Development] i can't       load library...
      (SourceForge.net)
  11. [notepad-plus - Open Discussion] RE: Notepad++    v4.3 is
      released (SourceForge.net)


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

Message: 1
Date: Mon, 24 Sep 2007 10:13:50 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: A
        line-break tabbed files system
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=4534506
By: nobody

thanks for the tip, its a good one!

but, i keep my opinion that the line-break tabs is more efficiente than this
tip. later, i will modify the source to do this for me, and recompile the
program.

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: 2
Date: Mon, 24 Sep 2007 10:20:02 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: A
        line-break tabbed files system
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=4534514
By: nobody

I would also appreciate if there's multi-line tab in Notepad++, even though
there's ctrl+tab and tab list (alt+w,w) to show a list of tab. most time with
a multi-line tab you could simply click whichever tab you need WITHOUT any key
stroke, right? I'm really get tired of clicking the "<" and ">" on the uppper
right cornor when I'm working on many files.

anyways, I still love notepad++, my fave!


______________________________________________________________________
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: 3
Date: Mon, 24 Sep 2007 10:21:47 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] How could I execute
        an      ASP within the 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=4534517
By: nobody

Hi! I am really new in this I and I have downloaded one sample of ASP that when
is executed make a XML document.

How could I execute this ASP? Must I create an HTML page which starts with it?
Could I execute and test within the notepad?

Thanking for in advance

______________________________________________________________________
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: Mon, 24 Sep 2007 11:19:41 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] Answered: merge /
        append  / column paste
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=4534598
By: thc

I searched the forum quite a bit, using the terms in my subject line. Hopefully
the next person to search will find the answer more easily. I finally found
the answer in another question when I searched for the term "vertical". I found
it in this message:
"Inserting an Alt-selected block of text"
https://sourceforge.net/forum/message.php?msg_id=3329826

where an anonymous user wants to know how to AVOID doing what I was trying to
do. He wrote:
> If I insert an Alt-selected (vertical) block of text into a document, npp
will not be
> coerced into inserting the appropriate number of newlines, so that the 
> inserted
text may end
> up sitting at the start of existing lines, which is where you wouldn't 
> necessarily
want it.

I had this question:

-----
How can I merge two text files, appending the contents of one to the ends of
corresponding lines in the other?

I ended up doing it at a Cygwin prompt, but in the future I'd like to be able
to do it as easily in Notepad++. The description of the unix "paste" command
at http://articles.techrepublic.com.com/5100-6345-5031653.html is what I'm 
looking
for. Here's how they describe it:

$ cat File1
Jack Wallen
Jessica Wallen
Johnny Wallen
Jeri Wallen

$ cat File2
123-45-6789
234-56-7890
345-67-8901
456-78-9012

$ paste file1 file2 > file3
$ cat File3
Jack Wallen  123-45-6789  
Jessica Wallen  234-56-7890  
Johnny Wallen  345-67-8901  
Jeri Wallen  456-78-9012
-----

The answer, then, is to open both files in N++, alt-select one, and paste it
in the column desired in the other. The only difficulty is that when you 
alt-select
and the lines end on different columns, the last line you select is the width
of your selection. So, if you alt-select this block:
Average = 89ms
Average = 143ms
Average = 110ms
Average = 54ms
then the middle lines will have the 's' cut off. The solution is to temporarily
pad the last line with spaces.

______________________________________________________________________
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: Mon, 24 Sep 2007 13:40:54 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] Crazy
        Lawyer  Talk
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=4535242
By: nathanbeach

I recently had to submit a list of all tools I use at my job along with their
licensing information.  I was just told by company lawyers not to use Notepad++
in the development process because it uses the GPLv3 license.  Evidently our
lawyers "won't accept anything that is GPLv3".  Good luck with that one.

We aren't redistributing Notepad++.  I'm simply using it to edit our CSS and
HTML parts because it's far better than any text-editor plugin for Eclipse.
So, this really makes no sense.  Why they would track what text editor I use
while working is beyond me.  God, I hate lawyers...

NateBot2000



______________________________________________________________________
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: Mon, 24 Sep 2007 13:41:26 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] What's new in
        npp.4.3.bin
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=4535243
By: nobody

I see npp.4.3.bin in the download area.  Any idea what's new ? 

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



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

Message: 7
Date: Mon, 24 Sep 2007 13:58:41 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] bug:
        close tab       not following doc switcher MRU
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=4535272
By: boinka

Not a critical bug, just letting you know... 
 
Close tab always goes to the next higher tab in tab-bar order (or last tab if
closing highest), instead of following tab MRU behavior when "document switcher
MRU behavior" is checked.

______________________________________________________________________
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, 24 Sep 2007 14:00:24 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion]
        Stuttered Page  Up/Down
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=4535276
By: boinka

Hi Don, 
 
Could I humbly suggest the user-selectable option to map the Page Up/Down keys
to SCI_STUTTEREDPAGEUP/DOWN instead of SCI_PAGEUP/DOWN? I personally greatly
prefer the stuttered behavior to the always-whole-page behavior.
 
Thanks for a truly awesome 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=331753



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

Message: 9
Date: Mon, 24 Sep 2007 14:38:37 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] styler.xml in 4.3
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=4535345
By: nobody

I installed NP++ 4.3 over 4.2.2 and replaced the new version styler.xml with
my old customized styler.xml. However, I still only see the new default styler
settings when I start NP++. I even removed the styler.xml from the C:\Program
Files\Notepad++ directory to see if the NP++ creates one on the fly. Some how,
my old file is not recognized by the NP++ 4.3. How can I make my old styler.xml
file work in the newer version? I would hate to re-customize the new version
all over. Any help is appreciated.

______________________________________________________________________
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: 10
Date: Mon, 24 Sep 2007 16:04:43 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] i
        can't   load library...
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=4535671
By: polprats

Hi all,

i was trying to start a new plugin development but seems that i'm doing 
something
wrong.

In the make file i modify :
I modify this line "OBJS = NppInsertPlugin.o StaticDialog.o GoToLineDlg.o" and
the targets of course. (i'm not sure if i should do it).
I modify the compiler (CC to CPP), because it was not not working, something
like

"
StaticDialog.o:StaticDialog.cpp:(.text+0x2da): undefined reference
to `__cxa_all
ocate_exception' 
"

This is the makefile :
--------------------------------------------------------------------------------
-
.SUFFIXES: .cpp
CPP = g++
CC = gcc

#UserDefineDialog_res.o 
OBJS = NppInsertPlugin.o StaticDialog.o GoToLineDlg.o

#
# the paths
TARGETDIR = ./


DLL = $(TARGETDIR)/NppInsertPlugin.dll

CFLAGS = -DBUILD_DLL

LDFLAGS = -export-dynamic,-Wl,
#LDFLAGS = -Wl,--out-implib,libtstdll.a
#LDFLAGS = -mwindows -lcomctl32 -lshlwapi -llibshell32

ALL: $(DLL)

$(DLL): $(OBJS)
        $(CPP) -shared -o $@ $(LDFLAGS) NppInsertPlugin.o StaticDialog.o 
GoToLineDlg.o
-lshlwapi

 
NppInsertPlugin.o : PluginInterface.h Scintilla.h NppInsertPlugin.cpp 
        $(CPP) -c $(CFLAGS) NppInsertPlugin.cpp  -o $@

StaticDialog.o :        PluginInterface.h Scintilla.h StaticDialog.cpp 
        $(CPP) -c $(CFLAGS) StaticDialog.cpp  -o $@

GoToLineDlg.o : PluginInterface.h Scintilla.h GoToLineDlg.cpp 
        $(CPP) -c $(CFLAGS) GoToLineDlg.cpp  -o $@
--------------------------------------------------------------------------------
-


And when i execute make seems everything right...
--------------------------------------------------------------------------------
-
C:\workspace\project\src>mingw32-make
g++ -c -DBUILD_DLL NppInsertPlugin.cpp  -o NppInsertPlugin.o
g++ -c -DBUILD_DLL StaticDialog.cpp  -o StaticDialog.o
g++ -c -DBUILD_DLL GoToLineDlg.cpp  -o GoToLineDlg.o
g++ -shared -o NppInsertPlugin.dll -export-dynamic,-Wl, NppInsertPlugin.o
Static
Dialog.o GoToLineDlg.o -lshlwapi
--------------------------------------------------------------------------------
-


But when i put the dll in notepad plugins folder it says: 
--------------------------------------------------------------------------------
-
Load library is failed

This plugin is not compatible with current version of Notepad++.
Remove this plugin from plugins directory if you don't want to see this message
on the next launch time.
--------------------------------------------------------------------------------
-

I decide update the files Scintilla.h,PluginInterface.h,Notepad_plus_msgs.h
because i read something about... but the problem is not changing.

Information about minGW.
--------------------------------------------------------------------------------
-
C:\workspace\project\src>minGW32-make -v
GNU Make 3.81
Copyright (C) 2006  Free Software Foundation, Inc.
This is free software; see the source for copying conditions.
There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE.

This program built for i386-pc-mingw32
--------------------------------------------------------------------------------
-


Can someone help me?

Thanks for advance.



______________________________________________________________________
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: 11
Date: Mon, 24 Sep 2007 17:03:59 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Notepad++       v4.3 is released
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=4535726
By: nobody

>>> If your text in edit view is not applied by the the font you set in global
style, then it's a bug.

Don, I did try to change the font thru the STRING style for C/C++, but to no
avail. Could you please fix this problem in the next release?

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



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

-------------------------------------------------------------------------
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 65
*************************************************

Reply via email to