• Bug: Regular Expressions [^\v]* not working as expected

    3
    0 Votes
    3 Posts
    3k Views
    guy038G

    Hello Sebastian,

    First of all, sorry for my late reply :-(

    There a particularity of the BOOST Regex ligrary, about the regex syntax \v :

    The regex \v represents any vertical blank character, that is to say one character which belongs to the range [\n\x0B\f\r]

    The regex [\v] represents, ONLY, the vertical tabulation character, of Unicode code \x0B

    So, when you write [^\v], it matches any single character, which is different from the \x0b ( VT character )

    Thus, your regex [^\v]* represents any set, even empty, of characters, different from the Vertical Tabulation character, included any End Of Line character ( \r, \n or \r\n)

    In other words, if your current file does NOT contain any \x0b character, your regex [^\v]* matches, absolutely, all the characters of the file. Quite logical !

    Best Regards,

    guy038

    P.S. :

    The regex \V ( Uppercase v ) is equivalent to the range [^\n\x0B\f\r], that is to say any single character, different from a Vertical Tabulation, from a Form Feed character and from an EOL character.

    Again, if your file does NOT contain any \x0b and/or \x0c character(s), the regex \V+ matches successively, each whole line, without its line break !

  • I need a "Copy All Marked Lines" feature

    Locked
    2
    0 Votes
    2 Posts
    14k Views
    dailD

    “Marked” as in bookmarked? If so its already available. Search > Bookmark > Copy Bookmarked Lines

  • Old Versions of Notepad++ ?

    Locked
    2
  • Sometimes opens with lots of previously closed files

    8
    0 Votes
    8 Posts
    5k Views
    Claudia FrankC

    @Michael-Redbourn
    If this is the content of your session.xml, than something terrible happened as this should be the content of config.xml.
    Do you mind double checking?

    Cheers
    Claudia

  • Mathematica

    2
    0 Votes
    2 Posts
    4k Views
    Claudia FrankC

    Hello @Cyprian-Blunt,

    looks like it has been already created as UDL.
    http://docs.notepad-plus-plus.org/index.php?title=User_Defined_Language_Files
    Download the xml and import it using user defined language menu (under Language menu).

    Cheers
    Claudia

  • Javascript not working when launch in chrome

    2
    0 Votes
    2 Posts
    3k Views
    jjstiffJ

    this is not a notepad++ issue, it is a javascript/jquery question.

    The DOM element refrenced by $("carQuestion span") is not yet defined when the script is run so the click method is not applied to any DOM element.

    You must either wrap your script with $(document).ready(function(){ ... }) or move your script tag to just before </body>

    https://api.jquery.com/ready/

  • new version and still stagnation

    Locked
    4
    0 Votes
    4 Posts
    3k Views
    jjstiffJ

    John- Glad to hear you like Notepad++. I do too, for Windows. I agree with your requests as well. Since you are a beginning programmer, perhaps you may find it in your ability to gather the source codes as Dail has inferred and try creating the bug fixes on your own. This would be quite a feat and much appreciated. I’m sure you would be able to push your changes via a pull request when you are successful. Until then, please be patient and happy with what you do have.

    https://github.com/notepad-plus-plus/notepad-plus-plus

    Also, you will want to experience more editors as well so that you can rightly compare the features of each. I like notepad++ because it is light and quick. I don’t like atom because it takes forever to load and is pretty clunky. Sublime text seemed good until I realized they were asking for money… I am so used to gedit on linux, never paid for software…

    I suggest you also become very familiar with vi so that you can preform remote edits over the terminal via ssh.

    If you can go to linux and get off windows, try xemacs and gedit and there are thousands more. On windows, NotePad++ has become my goto text editor and if it is not available, I go to notepad. I hope you do begin to appreciate the effort and merits of this and other projects.

    I think Dail has a valid point that this is free software: please be patient… If you have the money but not the time or motivation: try upstart and pay to have the requests completed? :)

    Much luck in your development efforts: I too get very frustrated about little bugs and it always seems to be just that one little typo causing all the trouble…

  • 0 Votes
    4 Posts
    3k Views
    dailD

    The issue I referenced seems to only address the progress bar dialog so I’m assuming the issue you are having is not fixed.

  • lost icon FTP connection!

    4
    0 Votes
    4 Posts
    3k Views
    Claudia FrankC

    It is listed as NppFTP.

    Cheers
    Claudia

  • When will we see the next release?

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    dailD

    v6.9 is officially out and has been for a while.

  • Extracting or Removing Certain Lines

    3
    0 Votes
    3 Posts
    8k Views
    Brett WelajB

    I didn’t see that! That’s exactly what I needed! Thank you.

  • ? np++ is stuck on 14pt .

    5
    0 Votes
    5 Posts
    3k Views
    Jim DaileyJ

    In Settings->Style Configurator, In the Font Style section, do you have Enable global font size checked?

  • Entering accented characters easily with only keyboard

    3
    0 Votes
    3 Posts
    4k Views
    Eric SokolowskyE

    I found the answer to my question. I had to install the US International keyboard and convert my document to UTF-8, then I can use certain keypresses for the accented characters, notably ALTGR-o for the accented ó, etc.

  • [Feature requests] for new version ! Please consider them for real !!

    Locked
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • Bug: EOL Conversion and Undo

    Locked
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • To the Developers of NPP -- Kudos!

    Locked
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • How to alter a dead link in the website

    Locked
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • 0 Votes
    2 Posts
    3k Views
    Claudia FrankC

    Hello @Joe-Bigler

    in addition you could use the sysnative alias to edit the file.

    Cheers
    Claudia

  • Bug: The mess in file after edit in the Columns mode.

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    dailD

    I would guess this is due to having periodic backups enabled. Try disabling that option.

  • Feature Request: "Close All but Unsaved"

    Locked
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied