• Trying to add a C compiler to the "run" options

    Locked
    6
    0 Votes
    6 Posts
    5k Views
    Scott SumnerS

    @guy038

    Of course, one could take less of a “brute force” method than I initially did…and check the source code to arrive at the same 259 character limit:

    RunDlg.cpp: INT_PTR CALLBACK RunDlg::run_dlgProc(UINT message, WPARAM wParam, LPARAM lParam) { switch (message) { //...snip... case WM_COMMAND : { switch (wParam) { //...snip... case IDOK : { TCHAR cmd[MAX_PATH]; ::GetDlgItemText(_hSelf, IDC_COMBO_RUN_PATH, cmd, MAX_PATH); WinDef.h: #define MAX_PATH 260

    The GetDlgItemText function docs discuss the one-byte null terminator for C-style strings (thus 259+1=260) and the truncation that occurs when the limit is exceeded, so all is explained. :-D

  • No widerange Unicode characters to see

    Locked
    2
    0 Votes
    2 Posts
    1k Views
    Sybell LirwacoS

    solved. please delete my post.

    Error
    You are only allowed to edit posts for 180 second(s) after posting

  • color settings bug? - brace missing Current Line background colour

    Locked
    1
    0 Votes
    1 Posts
    792 Views
    No one has replied
  • Language Definition Question

    Locked
    3
    0 Votes
    3 Posts
    1k Views
    No one has replied
  • Clipboard History

    Locked
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • Autocorrect?

    Locked
    6
    0 Votes
    6 Posts
    6k Views
    not2bryteN

    Thanks!! I’ll give it a go when I get a chance. :-)

  • notepad ++ freezes when scrolling big txt file

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    guy038G

    Hello, @Baka-csaba and All,

    Could you check if you, presently, use the Word Wrap feature ( menu View > Word Wrap ) ? I often noticed that this reduces, drastically, easy navigation, throughout important files, even if their contents do not exceed the present window editor length !

    I just did a test, with a 25Mb file, containing 458,000 lines, about. For instance, when trying to get the end of this file, with the Ctrl + End shortcut, it took ~6s, on my old Win XP machine, with the Word Wrap option set. When this option is unset, the same operation is instantaneous :-))

    And, idem, with the Page Up / Page Down keys. So, I would advise you to always uncheck this feature, when navigating in big size files :-))

    Best Regards,

    guy038

  • handlebarsjs pluggin for notepad++

    Locked
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • Is there a way to change the default path for backups?

    Locked
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • 0 Votes
    3 Posts
    1k Views
    Scott SumnerS

    Of course there is nothing stopping you from donating: https://notepad-plus-plus.org/donate/
    :-)

  • Notepad++ 7.5.1 forgetting previously opened files and unsaved tabs

    5
    0 Votes
    5 Posts
    3k Views
    Pak RatP

    hey alberto/Claudia:
    Just had a similar issue, where NP++ would NOT keep closed a file I had closed before, nor would it keep the settings I wanted
    and kept reopening past files I had closed. Looked in NP folder for session.xml & just changed the name ( added 1 to end of name before extension ) and seemed to re-create it, with the settings I wanted NP++ to have.

  • plug in 32 bit notepad

    Locked
    2
    0 Votes
    2 Posts
    1k Views
    Meta ChuhM

    @MD-T-H-Tamim

    which plugin do you want to install ?
    which version of np++ 32 bit do you currently have ?
    how did you try to install your desired plugin ?

  • 0 Votes
    2 Posts
    2k Views
    Meta ChuhM

    @Bruno-Guillemette

    plugin manager is an external project

    this issue is known and will probably occur if the checksum of the desired plugin dll at the current plugin manager download location differs from the checksum that is currently in the plugin manager’s list

    maybe it helps, if you file another issue report about this at the plugin manager’s project site
    https://github.com/bruderstein/nppPluginManager/issues

  • How to make all data in one line

    Locked
    3
    0 Votes
    3 Posts
    240k Views
    djmcgD

    Hello guy038
    The first option`s works perfectly.
    Thank You.

  • Paste into column stopped working

    4
    0 Votes
    4 Posts
    2k Views
    alanrewA

    @Meta-Chuh

    Thanks very much for your help - I’d completely forgotten about the need to use the ALT key while copying the ‘1 and 2’ column.

    Thank goodness this isn’t a bug: I rely on np++ for my job (which is why I donate :-)).

    Kind Regards,

    Alan

  • Looking for complete change logs.

    Locked
    2
    0 Votes
    2 Posts
    1k Views
    Claudia FrankC

    @Al-Howarth

    via github and the history of a file.

    Cheers
    Claudia

  • Why R syntax cannot be highlighted?

    Locked
    3
    0 Votes
    3 Posts
    2k Views
    wsadlxxW

    Aha!
    Thank you very much!

  • Cursor in the middle of letters/character

    Locked
    3
    0 Votes
    3 Posts
    2k Views
    John HillJ

    Thanks for the response! So I have a 4k screen and the scaling isn’t great so I changed it to “override High DPI scaling.” And this caused the issue. Very weird.

  • Mac encoding

    14
    0 Votes
    14 Posts
    18k Views
    J. JonesJ

    I did find an Encoding option for it, but it’s buried where you wouldn’t expect!

    Encoding > Character Sets > Cyrillic > Macintosh

    Presto, all the Õ symbols become symbols the way they were typed on the Mac!

  • Text over the table? How do I fix that?

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    cipher-1024C

    This is an html question, not a Notepad++ question. This should be asked in an html forum, not here. Now, do you promise to only ask NPP questions here? OK, great.

    Caption tags go immediately after the table tag, not in the head. I don’t think that broke anything, but pop it up a line anyway.

    I’ve found floats to be irritating and unpredictable so that’s not the first place I go for layout.

    body {background-color: skyblue;} table.infobox { border-style: solid; border-width: 1px; border-spacing: 3px; margin-bottom: 6.16667px; margin-top: 6.16667px; margin-left: 12.3167px; margin-right: 0px; padding: 2.46667px; display:inline-block; } td {text-align: center} p {width:200px; display:inline-block; vertical-align: top; }

    There may be better ways to do this, but I think it does what you asked for.

    Robin should pull his pants up a tiny bit.