Community
    • Login
    1. Home
    2. General Discussion
    Log in to post
    Load new posts
    • Recently Replied
    • Recently Created
    • Most Posts
    • Most Votes
    • Most Views
    • Lars HändlerL

      Encode UTF-8 without BOM option mission since V7

      Watching Ignoring Scheduled Pinned Locked Moved
      2
      0 Votes
      2 Posts
      2k Views
      Lars HändlerL

      I did a few tests with BOM files and it seems that now “Encode in UTF-8” does remove the BOM. This makes total sense but it turned the previous logic upside down.

    • Michael DiGregorioM

      Updating portable edition while keeping prior version's settings

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

      Not able to post...

      Watching Ignoring Scheduled Pinned Locked Moved
      6
      0 Votes
      6 Posts
      3k Views
      DaveyDD

      @Dail - thanks! I didn’t know that \b was a special character in python!
      Lesson learned - use raw strings… :)

      Thanks,
      David

      P.S. Regarding those posts - that’s really weird! I see 3 posts in the “Need Help” section - all have 0 views…

    • Steve ValliereS

      Form Feed Handling Bugs

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

      dump while adding a new plugin.

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

      “I added a 32 bit plugin to 64 bit.”

      That’s not going to work. The plugin must be recompiled by the author to be a 64-bit executable before it will work with 64 bit Notepad++.

    • James FordJ

      What happen to the Plugin Manager?

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

      The problem is the Plugin Manager itself is not 64bit. There are a few 64bit plugins currently available. @Sai-Prasanth Your best option is to just manually copy any DLLs into the plugins directory of Notepad++. Even with older versions of Notepad++ I’ve never had luck trying to use the menu to import plugins.

    • Armius RecognizanceA

      Is there a plugin for an English spell checker?

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

      Looks like x64 version of npp is new? So maybe no spell check plugin available for it yet? If I need spell checking should I use 32 bit npp instead?

      Sorry, I am new to npp. Not in tune with where development is at.

      Beautiful piece of work though!

    • Al ScotchA

      regex REPLACE Failure

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

      Use $0 instead of &.

    • Gabr-FG

      Can't scroll the tab bar with wheel if current doc has vertical scrollbar

      Watching Ignoring Scheduled Pinned Locked Moved tabs mouse
      1
      0 Votes
      1 Posts
      1k Views
      No one has replied
    • Andrew BeebeA

      Will we see a version for Mac someday soon?

      Watching Ignoring Scheduled Pinned Locked Moved
      3
      0 Votes
      3 Posts
      4k Views
      Stan WilliamsS

      I run Notepad++ on Linux with the help of “Wine” (originally an acronym for “Wine Is Not an Emulator”) it works great too! have used NP++ on Windows since it was new !
      It’s still my favorite editor of all time.

      They have downloads for Mac OS here: https://wiki.winehq.org/MacOSX

      Mac OS X - WineHQ binary packages for the development and staging branches for Mac OS X 10.8 and higher

    • Arve HolmbøA

      Not possible to download - browser is waiting for googlesyndicate for the next ad

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

      After Win 10 update, '&' doesn't display in C code

      Watching Ignoring Scheduled Pinned Locked Moved
      3
      0 Votes
      3 Posts
      2k Views
      Everett KaserE

      @dail Thanks! I’d Googled for the problem, but didn’t find the stuff on GitHub. That fixed it!

    • jcrmatosJ

      Suggestion: Add the option to show the differences between the loaded file and the saved file

      Watching Ignoring Scheduled Pinned Locked Moved
      12
      0 Votes
      12 Posts
      11k Views
      YaronY

      Hello Pavel,

      Thank you for your remarkable work.
      I’m sure that when you release Compare Plugin v2 many NPP users would be as appreciative and grateful as I am.

      Best regards.

    • Lin JefferL

      npp version above 6.8.7 run twice caused XP System hang

      Watching Ignoring Scheduled Pinned Locked Moved
      8
      0 Votes
      8 Posts
      5k Views
      Lin JefferL

      I have the issue is that VS new compiler planed abandon XPSP2, not my AMDCPU .
      I create a new XPSP3 VM in virtaulbox, then run NPP6.9.2 , it runs pretty well.

      and I notice that VS2010 not support XPsp2, and NPP source code project file , had an M$ famous “X” , like docx, xlsx …
      VcXproj.
      X"b

    • Ian AlexI

      Regex -- how would I do this ...

      Watching Ignoring Scheduled Pinned Locked Moved regex
      3
      0 Votes
      3 Posts
      2k Views
      Scott SumnerS

      @Ian-Alex ,

      I’m not sure how the find regex you specified worked for you; it did not work for me…I see some obvious problems with it. The big thing is that some of the symbols you are searching for (brackets and braces) have special meaning to the regex engine, and if you want to search for them literally, they have to be “escaped”, that is, preceded with a backslash.

      THIS MIGHT EXPLAIN IT: Perhaps when you posted here, you didn’t examine the preview window close enough; sometimes posting on this website gobbles up your intended characters–you have to use the escape/backslash technique here, too!

      Regardless, this simplified find and replace pair worked for me on your sample data:

      Find what: ^\[.+\]\R\{
      Replace with: #$0

      Some points to note:

      \R is a shorthand line-ending notation, and will match \r\n on Windows

      $0 in the replace is a shorthand notation for the entirety of what text matched in the find phase

    • Nithin Gopal DoddamaneN

      Splitting or Breaking one file into multiple smaller ones

      Watching Ignoring Scheduled Pinned Locked Moved
      2
      0 Votes
      2 Posts
      87k Views
      Jim DaileyJ

      @Nithin-Gopal-Doddamane

      Not really an editor task. If you know a scripting language like AWK, PERL, Python, etc. you should use it.

      If you want N lines in each small file you can:

      <Ctrl>+G then enter the number N+1
      <Ctrl>+<Shift>+<Home>
      <Ctrl>+X to cut the first N lines from the big file
      <Ctrl>+N to open a new file
      <Ctrl>+V to paste the cut lines into the new file
      Then save the new file.
      <Ctrl>+<Tab> to switch back to the “big” file.
      Repeat until done.

    • Les FergusonL

      Find-in-files result list doesn't allow copying file names to clipboard

      Watching Ignoring Scheduled Pinned Locked Moved
      5
      0 Votes
      5 Posts
      7k Views
      Scott SumnerS

      Found the link! :
      https://notepad-plus-plus.org/community/topic/11637/collapse-function-how-to-copy-just-the-collapsed-results-from-results-window/2

    • Joe Bruns75J

      Add Tail Feature

      Watching Ignoring Scheduled Pinned Locked Moved
      4
      0 Votes
      4 Posts
      3k Views
      Larry JohnsonL

      @dail said:

      It is in v6.9.2
      Cool, but how does it work… … ?

      BTW Great job on Notepas++ :)

    • Brad WhiteB

      REgex rules for NPP

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

      A post in the old Sourceforge forums for Notepad++ explains all, see https://sourceforge.net/p/notepad-plus/discussion/331754/thread/ca059a0a/

    • OleksandrO

      New version rewrites my contextMenu.xml

      Watching Ignoring Scheduled Pinned Locked Moved context menu
      3
      0 Votes
      3 Posts
      2k Views
      OleksandrO

      It’s inconvenient. (((

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