Community
    • Login
    1. Home
    2. General Discussion
    Log in to post
    Load new posts
    • Recently Replied
    • Recently Created
    • Most Posts
    • Most Votes
    • Most Views
    • Fisher ChenF

      Really hope to see a linux version notepad++.

      Watching Ignoring Scheduled Pinned Locked Moved
      4
      0 Votes
      4 Posts
      4k Views
      pnedevP

      Hello @Fisher-Chen ,

      What is your Wine prefix - 32 bit or 64 bit?
      What version of Windows is your Wine configured to emulate?

      Try Wine in XP mode with 32bit prefix.

      BR,
      Pavel

    • V S RawatV

      How to use an altogether different drive/ folder for all npp settings?

      Watching Ignoring Scheduled Pinned Locked Moved
      1
      0 Votes
      1 Posts
      1k Views
      No one has replied
    • Jesper Lyngholm RasmussenJ

      Notepad++ installer asking for elevated priviledge

      Watching Ignoring Scheduled Pinned Locked Moved
      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

    • David SteinD

      Built-In Snippets Library Manager

      Watching Ignoring Scheduled Pinned Locked Moved
      1
      0 Votes
      1 Posts
      1k Views
      No one has replied
    • Ben SamuelsB

      New update, language problem

      Watching Ignoring Scheduled Pinned Locked Moved
      3
      0 Votes
      3 Posts
      3k Views
      Ben SamuelsB

      Yes! Thank you very much. You are a genius!! :-)

    • Stuart YarrowS

      App instance spawned by installer should not have elevated permissions?

      Watching Ignoring Scheduled Pinned Locked Moved
      1
      0 Votes
      1 Posts
      1k Views
      No one has replied
    • Stephen ChandlerS

      bug report crashing

      Watching Ignoring Scheduled Pinned Locked Moved crash
      2
      0 Votes
      2 Posts
      2k Views
      Claudia FrankC

      Hello @Stephen-Chandler,

      could you provide the debug-info? (available under ? menu)

      Cheers
      Claudia

    • Claudia FrankC

      Testing regular expressions by RegexTester.py

      Watching Ignoring Scheduled Pinned Locked Moved
      11
      0 Votes
      11 Posts
      10k 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

    • Don BiceD

      Any Good Suggestions For Using NPP in place of Sublime For html5/js/threejs Development?

      Watching Ignoring Scheduled Pinned Locked Moved
      2
      0 Votes
      2 Posts
      2k 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

    • Wolf WarW

      [feature request] in **Folder as workspace** New file/folder on CTX menu

      Watching Ignoring Scheduled Pinned Locked Moved
      1
      2 Votes
      1 Posts
      2k Views
      No one has replied
    • Francesco MortaraF

      Position of search window, if I have multiple monitors

      Watching Ignoring Scheduled Pinned Locked Moved search window find result
      4
      0 Votes
      4 Posts
      4k Views
      Francesco MortaraF

      Hi Pavel,
      I’m going to test…
      Thanks a lot!

    • Charvak PatelC

      Feature Request : Tab Groups and Guidence

      Watching Ignoring Scheduled Pinned Locked Moved
      1
      1 Votes
      1 Posts
      2k Views
      No one has replied
    • jjstiffJ

      What is your Tab size: ?

      Watching Ignoring Scheduled Pinned Locked Moved
      2
      0 Votes
      2 Posts
      2k Views
      Крафтист ОфициальныйК

      I prefer 4, replacing by space.

    • Tim PearceT

      F3 always repeats search downwards even if searching upwards

      Watching Ignoring Scheduled Pinned Locked Moved
      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

    • almirus256A

      incorrect text encoding auto-detection (windows 1251 russian)

      Watching Ignoring Scheduled Pinned Locked Moved text russian encoding
      11
      0 Votes
      11 Posts
      13k 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

    • Bas van RooijB

      Installer is not launched elevated

      Watching Ignoring Scheduled Pinned Locked Moved elevated installer uac
      1
      0 Votes
      1 Posts
      1k Views
      No one has replied
    • Sebastian ProskeS

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

      Watching Ignoring Scheduled Pinned Locked Moved
      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 !

    • David van LeerdamD

      I need a "Copy All Marked Lines" feature

      Watching Ignoring Scheduled Pinned Locked Moved
      2
      0 Votes
      2 Posts
      14k Views
      dailD

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

    • Gerry DombroskiG

      Old Versions of Notepad++ ?

      Watching Ignoring Scheduled Pinned Locked Moved
      2
      0 Votes
      2 Posts
      2k Views
      dailD

      https://notepad-plus-plus.org/download/all-versions.html

    • Michael RedbournM

      Sometimes opens with lots of previously closed files

      Watching Ignoring Scheduled Pinned Locked Moved
      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

    The Community of users of the Notepad++ text editor.
    Powered by NodeBB | Contributors