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: add "<" and ">" to      bracket
      autocompletion (SourceForge.net)
   2. [notepad-plus - Open Discussion] Reset focus to   text
      (SourceForge.net)
   3. [notepad-plus - Open Discussion] RE: Reset        focus to text
      (SourceForge.net)
   4. [notepad-plus - Help] CommentLine always at pos1 (SourceForge.net)
   5. [notepad-plus - Open Discussion] Autoformat my    C-Code -> make
      it nice looking (SourceForge.net)
   6. [notepad-plus - Help] RE: Function List and CSS (SourceForge.net)
   7. [notepad-plus - Open Discussion] Forgotten        Keyword - Ada
      (SourceForge.net)
   8. [notepad-plus - Help] Small bug with tabs (SourceForge.net)
   9. [notepad-plus - Open Discussion] Regular  expression question
      (SourceForge.net)
  10. [notepad-plus - Open Discussion] RE: Regular      expression
      question (SourceForge.net)
  11. [notepad-plus - Open Discussion] RE: Regular      expression
      question (SourceForge.net)
  12. [notepad-plus - Open Discussion] RE: Wishlist     for 4.1
      (SourceForge.net)
  13. [notepad-plus - Plugin Development] RE: Column    mode
      (SourceForge.net)


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

Message: 1
Date: Thu, 22 Feb 2007 16:05:50 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: add "<" and ">"
        to      bracket autocompletion
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=4173572
By: severach

I had considered that but I couldn't find any language or text style where it
would be useful. In languages and text ( [ and { vary little in meaning. HTML
and XML are two in the few places where < and > mean other than less than or
greater than. Even there I decided that auto closing the < wouldn't be worth
the problems it created in the other languages.


______________________________________________________________________
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: Thu, 22 Feb 2007 23:50:05 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] Reset
        focus to        text
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=4174144
By: nobody

This is a bit irritating, but when "alt-tabbing" out of n++ and then back again,
the cursor focus for text editing and input (from keyboard) is lost. This is
just a tad annoying, and it may be enough for some not to use n++ on a regular
basis.

//kirtap

______________________________________________________________________
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, 23 Feb 2007 00:47:41 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Reset   focus to text
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=4174215
By: nobody

Download the 4.01 version.

______________________________________________________________________
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, 23 Feb 2007 01:19:18 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] CommentLine always
        at pos1
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=4174258
By: nobody

Hi,

how can I put the comment line sign always at the start of every line?

Thanks for any 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=331754



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

Message: 5
Date: Fri, 23 Feb 2007 01:42:37 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion]
        Autoformat my   C-Code -> make it nice looking
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=4174288
By: nobody

Hello together,

I?ve wrote some C-Code. Now I want to have the code autoformated. How can I
do this???

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

#include <stdio.h>
#include <stdlib.h>

int main(int argc, char *argv[])
{
  //1.
FILE* input=fopen("input.bin","rb");
//2.
short data[ARRAY_LEN];
int in_count=fread(data,sizeof(short),ARRAY_LEN,input)
//3.
for(int i=0;i<in_count;++i) data[i]/=2;
//4.
FILE* output=fopen("output.bin","wb");
fwrite(data,sizeof(short),in_count,output);

//Aufr?umen:
fclose(input);fclose(output);

  system("PAUSE");
  return 0;
}

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

______________________________________________________________________
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, 23 Feb 2007 02:34:47 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Function List
        and CSS
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=4174343
By: nobody

At the moment not. Because you couldn't self define the parsing rules of 
standard
programming languages. This could be done in a later version. At the moment
you could only do following:

- Create you own User Defined Language, lets say: MyCSS
  Do this here: "View->User Defined Dialog..."
- Press "Create New..." and fill out the fields if you want.
- Now go to: "Plugins->Function List->User Rules..."
- Select our created language "MyCSS" in combo box
- Press "Edit Rule"
- Fill out following:
  Function Begin:        "\* ="
  Function List Name:    "[a-zA-Z0-9]*"
  Function End:          " \*/"

You could use insteed of the spaces following regular expression:
[ \t]*

Best Regards
Jens


______________________________________________________________________
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, 23 Feb 2007 02:33:12 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion]
        Forgotten       Keyword - Ada
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=4174341
By: nobody

Syntax-Highlighting: Language Ada
I have seen that the Keyword "not" won't be identified as keyword! It seems
to be plain text.
regards, Harald

______________________________________________________________________
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: Fri, 23 Feb 2007 02:37:17 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] Small bug with tabs
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=4174349
By: nobody

Hello,

I have done some tests with Notepad++ 4.0.2 and I have found a small bug with
Tabs.
Open Notepad++ and create about 100 new files (keep your finger on Ctrl+N)
Now, close them all.
As you can, there is a bug of display when you the tabs disapear (see
screenshot)
http://img218.imageshack.us/img218/2825/tabsbugcz5.png

Also, there is a small problem with numbering of tabs.
When you open Notepad++, there is a new file named New1.
Press Ctrl+N to create a new file. The new file is named New3 (instead of New2)
http://img91.imageshack.us/img91/8268/parameterbugqy8.png

I hope you could fix that in the next release.

Thanks and have a nice day.

Lolo.

______________________________________________________________________
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, 23 Feb 2007 02:38:54 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] Regular
        expression question
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=4174354
By: nobody

Hello,

Otherwise, does Notepad++ 4.0.2 support the following syntax for regular 
expression:
test(.){5} in order to find the word test followed by exactly 5 characters.

Thanks and have a nice day.

Lolo.

______________________________________________________________________
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, 23 Feb 2007 02:40:31 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Regular expression question
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=4174356
By: jenslorenz

No, but this will do your requested example:
test.....

Best Regards
Jens

______________________________________________________________________
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, 23 Feb 2007 02:52:38 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Regular expression question
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=4174374
By: nobody

Hello,

Thanks for your answer.
You are absolutely right. It works.
But in my case, I need to find the following string:
^(.){41}TEST(.){48}TEST(.){22}TEST

You can easily understand why it would be nice if Notepad++ could fully support
regular expression syntax ;-)

Do you know if it is planned for a next release?

______________________________________________________________________
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: 12
Date: Fri, 23 Feb 2007 05:23:16 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Wishlist        for 4.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=4174553
By: nobody

I agree, the poor column mode support is why I still use Crimson as my 
day-to-day
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: 13
Date: Fri, 23 Feb 2007 05:26:06 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
        Column  mode
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=4174558
By: nobody

Yes, but column mode in notepad++ sucks. It's bad. If you ever tried it, you
know what I mean.

______________________________________________________________________
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



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

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV

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

_______________________________________________
Notepad-plus-plus mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/notepad-plus-plus


End of Notepad-plus-plus Digest, Vol 9, Issue 63
************************************************

Reply via email to