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 - Open Discussion] RE: Fixed        Document Tab +
      Dcoument Drop Down L (SourceForge.net)
   2. [notepad-plus - Open Discussion] RE: Fixed        Document Tab +
      Dcoument Drop Down L (SourceForge.net)
   3. [notepad-plus - Open Discussion] Can one fall     in love with a
      computer program? (SourceForge.net)
   4. [notepad-plus - Open Discussion] Cann't print     char on the
      screen ? (SourceForge.net)
   5. [notepad-plus - Open Discussion] RE: Can one      fall in love
      with a computer prog (SourceForge.net)
   6. [notepad-plus - Help] RE: alt f s no-longer       works...
      (SourceForge.net)
   7. [notepad-plus - Plugin Development] RE: insert    plugin, a web
      edition... (SourceForge.net)
   8. [notepad-plus - Open Discussion] Horizontal       scrollbar in
      4.8.1 (SourceForge.net)
   9. [notepad-plus - Help] disable mouse browsing      (forward/back)
      (SourceForge.net)
  10. [notepad-plus - Help] RE: alt f s no-longer       works...
      (SourceForge.net)
  11. [notepad-plus - Plugin Development] RE: open      folder and the
      close folder definiti (SourceForge.net)


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

Message: 1
Date: Fri, 07 Mar 2008 05:56:39 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Fixed   Document Tab + Dcoument Drop Down L
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=4822220
By: nobody

I also support the "Dcoument Drop Down List", but it should have a scroll bar
for long file list (just like the auto-completion list)

______________________________________________________________________
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: Fri, 07 Mar 2008 06:00:02 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Fixed   Document Tab + Dcoument Drop Down L
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=4822224
By: nobody

But they are very difference. The windows manager plugin takes many space to
display.

______________________________________________________________________
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: Fri, 07 Mar 2008 06:09:49 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] Can one
        fall    in love with a computer program?
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=4822242
By: nobody

...Because I think I have!  I just wanted to thank the developers of notepad++
for their hard work towards making the most awesome text editor I've ever used
(yes, even better than ultraedit)!  I love this program so much that I added
an OPEN With N++ to my context menus.  Once again, thanks for all of your work
and STILL keeping it free.  You are greatly appreciated (except by some IT 
people
at school who will eventually find that windows notepad on some PCs had been
"upgraded")

Michael

______________________________________________________________________
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, 07 Mar 2008 06:29:23 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] Cann't
        print   char on the screen ?
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=4822274
By: comeback

I wrote a small program . But it didn't work well. The bios interrupt seemed
working but no char was printed
on the screen . The cursor moved but there was no char on the black screen.I
have not found the reason , please .
Here is the code (short but all):

      BOOTSEG     equ   0x07c0
      SYSSEG      equ   0x1000
      SYSLEN      equ   17
beg:
      jmp   BOOTSEG:go
go:
      mov   ax , cs
      mov   ds , ax
      mov   es , ax
      mov   ss , ax
      mov   sp , 0x400

load_system:
      mov   ax , SYSSEG
      mov   es , ax         
      mov   ax , 0x0200+SYSLEN
      mov   cx , 0x0002   
      mov   dx , 0x0000   
      mov   bx , 0x0000
      int   0x13
      jnc   ok_load
      mov   ah , 0
      int   0x13
      jmp   load_system     

ok_load:
      cli
      mov   ax , BOOTSEG
      mov   ds , ax
      jmp   SYSSEG:0
      times 510-($-$$) db 0
      dw    0xaa55

      mov   ax , cs
      mov   ds , ax
      mov   es , ax
      mov   ax , begtrack
      mov   ss , ax
      mov   sp , track
      sti
      mov   ax , 0x1301
      mov   bx , 0x0004
      mov   cx , 15
      mov   dx , 0x0000
      mov   bp , showSomething
      int   0x10
      jmp   $+2
re:   jmp   re

begtrack:
      times 128   db    0
track:
      times 200   dd    0

showSomething:
      db    'In the kernel'
      db    0x0d,0x0a


______________________________________________________________________
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, 07 Mar 2008 06:33:46 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: Can
        one     fall in love with a computer prog
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=4822288
By: comeback

oh , good choose . have a nice day . 

______________________________________________________________________
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, 07 Mar 2008 06:36:47 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: alt f s
        no-longer       works...
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=4822302
By: nobody

Yes, it does jump to save and if you hit s again it goes to the next item that
starts with s... and so on.

Jim

______________________________________________________________________
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: Fri, 07 Mar 2008 06:46:00 -0800
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=4822330
By: parcley

i know that the quick text plugin writes and reads from an ini file but it puts
it's information in a dialoge box and not a menu.

Maybe just specify that there is a max of 15 (or whatever) number of template
slots available. anything over 15 in the .ini is ignored?





______________________________________________________________________
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: 8
Date: Fri, 07 Mar 2008 06:50:22 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion]
        Horizontal      scrollbar in 4.8.1
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=4822339
By: nobody

In 4.8.1, the Horizontal scrollbar will not keep its current position for the
opened file, that is when two files, say A & B, are opened, move file A's 
Horizontal
scrollbar to middle, go to file B, then go back to file A. Now file A's 
Horizontal
scroll bar moved to the most left. But in 4.7.5, it will remember the position.

Is there any reason why removed this feature?

______________________________________________________________________
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: Fri, 07 Mar 2008 07:21:01 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] disable mouse
        browsing        (forward/back)
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=4822397
By: nobody

is there a way to disable mouse browsing (forward/back )?


______________________________________________________________________
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: Fri, 07 Mar 2008 07:25:20 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: alt f s
        no-longer       works...
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=4822407
By: nobody

Just press enter when you have arrived at the desired 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=331754



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

Message: 11
Date: Fri, 07 Mar 2008 07:58:41 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
        open    folder and the close folder definiti
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=4822470
By: nobody

I have nearly the same issue - in my user-defined language (PCL)I would like
to fold on :
start         end
"FUNCTION"  "END FUNCTION"
"WHILE"     "END WHILE"
"SWITCH"    "END SWITCH"
"IF"        "END IF"
"FOR"       "END FOR"

Is it possible to escape the space character?




______________________________________________________________________
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 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/

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

_______________________________________________
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 22, Issue 37
*************************************************

Reply via email to