• Form Feed Handling Bugs

    Locked
    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • dump while adding a new plugin.

    Locked
    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++.

  • What happen to the Plugin Manager?

    Locked
    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.

  • Is there a plugin for an English spell checker?

    Locked
    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!

  • regex REPLACE Failure

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    MAPJe71M

    Use $0 instead of &.

  • 0 Votes
    1 Posts
    1k Views
    No one has replied
  • Will we see a version for Mac someday soon?

    Locked
    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

  • 0 Votes
    1 Posts
    1k Views
    No one has replied
  • After Win 10 update, '&' doesn't display in C code

    Locked
    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!

  • 0 Votes
    12 Posts
    10k 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.

  • npp version above 6.8.7 run twice caused XP System hang

    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

  • Regex -- how would I do this ...

    Locked
    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

  • Splitting or Breaking one file into multiple smaller ones

    Locked
    2
    0 Votes
    2 Posts
    81k 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.

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

    Locked
    5
  • Add Tail Feature

    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++ :)

  • REgex rules for NPP

    Locked
    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/

  • New version rewrites my contextMenu.xml

    Locked
    3
    0 Votes
    3 Posts
    2k Views
    OleksandrO

    It’s inconvenient. (((

  • Regain style coloring after saving a document

    Locked
    4
    0 Votes
    4 Posts
    3k Views
    Marou MarouM

    @Scott-Sumner In fact, I have done a search before, no result, hope that there is one solution, thank you for your reply =)

  • Is the forum slow?

    Locked
    5
    1 Votes
    5 Posts
    2k Views
    YaronY

    Hello Claudia,

    I should have answered

    I didn’t mean to imply that at all. :)
    I appreciate your kindness.

    Best of luck with everything.

  • Ctrl+S doesnt work

    3
    0 Votes
    3 Posts
    2k Views
    David BaileyD

    At a guess you have mapped something else to the same hotkey using the Shortcut mapper. This used to be invisible (except that one mapping masked the other) but with version 7 keys that are multiply mapped are highlighted.

    This would explain why changing the key to F10 makes it work.

    David