• Notepad++ installer asking for elevated priviledge

    8
    0 Votes
    8 Posts
    6k Views
    Jesper Lyngholm RasmussenJ
    Hi Claudia, We are doing some migration at the moment from W2k8 to W2k12 so we have domain controllers running both OS. I was also confused when I saw the GPO, that other applications do promt for UAC. I hope you find something :) Best regards Jesper
  • Built-In Snippets Library Manager

    Locked
    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • New update, language problem

    Locked
    3
    0 Votes
    3 Posts
    3k Views
    Ben SamuelsB
    Yes! Thank you very much. You are a genius!! :-)
  • App instance spawned by installer should not have elevated permissions?

    Locked
    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • bug report crashing

    Locked crash
    2
    0 Votes
    2 Posts
    2k Views
    Claudia FrankC
    Hello @Stephen-Chandler, could you provide the debug-info? (available under ? menu) Cheers Claudia
  • Testing regular expressions by RegexTester.py

    11
    0 Votes
    11 Posts
    11k Views
    Claudia FrankC
    Hi Guy, sorry for answering so late - I had a day off - mostly bicycling and enjoying the nice weather. I thought since upgrading scintilla this lib wasn’t working anymore!!?? Because of that I didn’t test it - I will give the original code a try and see what it is complaining about. Will comeback on this. Cheers Claudia
  • 0 Votes
    2 Posts
    3k Views
    Claudia FrankC
    Hello @Don-Bice, sorry but I don’t understand your question/wish - may I ask you to clarify it for me? Cheers Claudia
  • [feature request] in **Folder as workspace** New file/folder on CTX menu

    Locked
    1
    2 Votes
    1 Posts
    2k Views
    No one has replied
  • 0 Votes
    4 Posts
    5k Views
    Francesco MortaraF
    Hi Pavel, I’m going to test… Thanks a lot!
  • Feature Request : Tab Groups and Guidence

    Locked
    1
    1 Votes
    1 Posts
    3k Views
    No one has replied
  • What is your Tab size: ?

    2
    0 Votes
    2 Posts
    3k Views
    Крафтист ОфициальныйК
    I prefer 4, replacing by space.
  • F3 always repeats search downwards even if searching upwards

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    Claudia FrankC
    Hello @Tim-Pearce, my oldest npp (version 5.0 from 2008) has this already implemented. F3 downwards and SHIFT+F3 upwards. Maybe that was introduced with a release and reverted back because of issue or users complained about this behavior as they were used to the other was, I don’t know. Cheers Claudia
  • 0 Votes
    11 Posts
    15k Views
    Claudia FrankC
    @Almir-Abrarov, I meant changes which were (or not) done in npp between version 6.5 and 6.9. As I’m still confused about the current discussion, may I ask you to answer the following question/assumption? If you add the comment to the perl source file in npp 6.9 -> OK detected as windows-1251 in npp 6.5 ->NOT OK detected as ANSI Is this what we are talking about? Cheers Claudia
  • Installer is not launched elevated

    Locked elevated installer uac
    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • 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
    0 Votes
    2 Posts
    3k Views
    dailD
    https://notepad-plus-plus.org/download/all-versions.html
  • Sometimes opens with lots of previously closed files

    8
    0 Votes
    8 Posts
    6k 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

    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

    css javascript html
    2
    0 Votes
    2 Posts
    4k 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/