• Notepad++ to the context menu

    Locked
    8
    0 Votes
    8 Posts
    7k Views
    Claudia FrankC

    @Maison-da-Silva

    understood, thx.

    Windows 10 has changed something.

    Most likely, haven’t much time to test win10 as I was already migrating to Linux.

    Cheers
    Claudia

  • Feature Request: Sort by IP Address (CIDR Notation)

    30
    0 Votes
    30 Posts
    30k Views
    Claudia FrankC

    @guy038 - Thank you very much.

    Cheers
    Claudia

  • Closing NP++ does not really close the application anymore

    2
    0 Votes
    2 Posts
    2k Views
    Michael MiletteM

    I have the exact same issue on Windows 10x64. I opened an issue in the bug tracker. See:
    https://github.com/notepad-plus-plus/notepad-plus-plus/issues/2700

    Michael Milette

  • Feature idea - collapse multiple

    Locked
    3
    0 Votes
    3 Posts
    2k Views
    Rick RienscheR

    Well, would you look at that - I had no idea that existed. Thanks! :D

  • Linux version?

    Locked
    3
    0 Votes
    3 Posts
    2k Views
    Florent PagèsF

    you can run it on linux with wine : https://www.winehq.org/

    BUT wine provide too lib to compile native on linux for win32 programs.

  • Can clickable links contain line numbers?

    8
    0 Votes
    8 Posts
    4k Views
    David Miller229D

    Thank you! The last works perfect.

  • Incorrectly determines encoding when opening the file

    Locked
    2
    0 Votes
    2 Posts
    1k Views
    guy038G

    Hello, Антон Карманов,

    Not totally sure that is the definitive solution, but try to uncheck the Autodetect character encoding option, in Preferences > MISC.

    Best Regards,

    guy038

  • [Enhancement] NP++ toolbar customization native support

    2
    0 Votes
    2 Posts
    1k Views
    YaronY

    Hello Barney,

    AFAIK the Customize Toolbar plugin has not been discontinued.
    I use v4.1 and it works perfectly well.

    The code is not open-source.

    Best regards.

  • Two document display

    Locked
    2
    0 Votes
    2 Posts
    1k Views
    lawriehodgesL

    I have discovered what I think is an answer to my own request.
    View | Move/Clone Current Document | Move to Other View.
    Sorry to bother you all. I am still on the front end of the learning curve.

  • Select Text Region, Change Back Color? (possible)

    Locked
    4
    0 Votes
    4 Posts
    3k Views
    Claudia FrankC

    @David-Rivera

    what about npps 5 builtin styles?
    Select text, right-click->StyleToken and choose one from it.

    Cheers
    Claudia

  • Copy All Formats Truncating

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    Darren SchroederD

    I fixed this problem by changing the following code in NppExport that I found here https://github.com/chcg/NPP_ExportPlugin.

    TXTExporter::exportData()
    Before:
    int totalBytesNeeded = ed->csd->nrChars;
    After:
    int totalBytesNeeded = ed->csd->nrChars + 1;

    RTFExporter::exportData()
    Before:
    int totalBytesNeeded = 1; //zero terminator
    After:
    int totalBytesNeeded = 2; //zero terminator

    HTMLExporter exportData()
    Before:
    int totalBytesNeeded = 1; //zero terminator
    After:
    int totalBytesNeeded = 2; //zero terminator

    I hope this helps someone.

    Thanks,
    Darren

  • Notepad++ in the Windows Store

    3
    0 Votes
    3 Posts
    3k Views
    Parham3679srsrP

    Project Centennial is the codename for a bridge Microsoft have developed so developers can repackage their exe, msi and other desktop apps as “appx” packages similar to Windows 10 store apps. The binary installer file gets converted and it will be possible to distribute it in the Windows Store. It can still be available out of the store too as both appx and exe installers.
    I do not know about the terms and license agreement really but I guess it is possible to put the app there without restrictions. Just Microsoft checks the app to approve it is malware free and usable .

  • Ctrl (single character) invoking NP++

    Locked
    2
    0 Votes
    2 Posts
    1k Views
    Joe Bruns75J

    Ignore, restarting the machine took care of it.

  • Feature request: Add GB18030 encoding support

    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • Notepad++ Find all results

    Locked
    1
    1 Votes
    1 Posts
    1k Views
    No one has replied
  • Notepad ++ pinned items

    Locked
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • Return to same line when switching tabs.

    10
    1 Votes
    10 Posts
    13k Views
    young-developerY

    For quick tab switching I could recommend you my free open source plugin ‘NavigateTo’ - https://github.com/young-developer/nppNavigateTo/releases

  • Keyboard capitalization

    Locked
    1
    1 Votes
    1 Posts
    1k Views
    No one has replied
  • Not receiving focus

    Locked
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • File size too

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    gstaviG

    First thing Notepad++ (or any similar editor) is probably the wrong tool to glimpse at a huge file. Something like unix ‘less’ utility or an app that supports “view only” will be much better for that.

    How long does it take it to open the file when it succeeds?
    Do you need syntax highlighting?

    A 32 bit app can use/map only 2GB of memory (where other 2GB space is reserved to kernel) even if your computer has 16GB of RAM or more.
    Notepad++ loads all the file to memory. Then for every character allocates at least an additional byte for highlighting color and lots of other extra internal data. Can’t say why sometimes it works and sometimes it fails but the total allocation size is definitely close to the 2GB limit.

    Try the 64 bit version. Maybe it will be better. But consider a different tool.