• Notepad++ have extra height pixel line

    1
    0 Votes
    1 Posts
    305 Views
    No one has replied
  • accidentally deleted document selector

    7
    1 Votes
    7 Posts
    580 Views
    Murray Sobol 0M

    @PeterJones

    Thanks, that was the step I was missing.

    Murray

  • Slow to reload in larger files

    4
    0 Votes
    4 Posts
    372 Views
    EkopalypseE

    @Kelly-Hoke

    that would indicate that the lexer, which was active, isn’t capable of
    lexing the document fast enough. Was this an udl or a standard lexer?

  • Bug: Search/Replace All does not replace all

    4
    0 Votes
    4 Posts
    713 Views
    guy038G

    Hello, @jay-imerman and All,

    And, if you run this S/R, using the Regular expression search mode, you must adopt this syntax :

    SEARCH "

    REPLACE \\"

    because the Escape \ is a special regex character and needs to be escaped, itself, with an other \ symbol, to be taken as a literal !

    Best Regards,

    guy038

  • a string to search containing “the new line"

    2
    0 Votes
    2 Posts
    632 Views
    Alan KilbornA

    @Tuan-Zuli

    It appears you are talking about using the Pythonscript plugin?

    Maybe you want something like this? (Hard to say definitively without further detail being provided):

    editor.replace('aaa\r\nbbb', 'AAA\r\nBBB')

    Of course the use of \r\n is for Windows files only. If your files are Linux you want to drop the \r and use only \n.

  • Count now counts from the cursor rather than whole doc

    4
    0 Votes
    4 Posts
    283 Views
    Alan KilbornA

    Supporting info:

    See the 7.8.5 change.log entry:

    Make Count command in Find dialog respect Backward-direction and Wrap-around options.

  • Scrolling with down and up arrow keys

    4
    0 Votes
    4 Posts
    4k Views
    Prahlad-Makwana4145P

    Hello, @Brigham-Narins

    Follow Information, To Scrolling with down and up arrow keys:

    Ctrl+Shift+↑/↓ is supposed to move lines in Notepad++. Shift+↑/↓ will select text. Shift enables text selection as cursor moves either with arrows or Home/End/Page Up/Page
    Down keys
    Ctrl+←/→ makes cursor move by words instead of characters Ctrl+Page Up/Page Down jumps to actual next page, not just next screen Ctrl+Home/End jumps to beginning/end of the document

    I hope above information will be useful for you.
    Thank you.

  • Seems to be a bug in the Find All functionality

    2
    1 Votes
    2 Posts
    293 Views
    Vitalii DovganV

    I’ve created the corresponding issue on GitHub:
    https://github.com/notepad-plus-plus/notepad-plus-plus/issues/8034
    It contains two test files attached, as well as two words to be searched for to reproduce the issue in the whole scope.

  • Post-It mode disable always on top

    1
    1 Votes
    1 Posts
    1k Views
    No one has replied
  • [Feature Request] MD5 in the context menu

    11
    0 Votes
    11 Posts
    2k Views
    jankozaJ

    @PeterJones, @Alan-Kilborn

    It works. Thanks a lot.

  • Opening a file in short form?

    2
    0 Votes
    2 Posts
    253 Views
    PeterJonesP

    @Mark-Hanshaw said in Opening a file in short form?:

    Hopefully I’m including enough information to explain my lostness

    Unfortunately, not even close. Sorry.

    Not everyone here knows what CSR2 is – based on your mention of “car files”, I am assuming the top google hit of a racing game is probably it. Given that the game itself isn’t necessarily common knowledge here, us knowing what might be different between the “version 1” and “version 2” car files is rather unlikely, and it’s really hard to give you help with so little information.

    The instructions you were given (“look for \s and replace all”) aren’t even complete. I am assuming they wanted you to replace all space character – in which case, you need to make sure you have the regular expression mode selected the Replace dialog – because \s can be the special regex sequence to match any whitespace (space, tab, newline, and some others). Also, you don’t tell us what they asked you to replace the \s with.

  • How to delete all characters after 1 character

    2
    0 Votes
    2 Posts
    585 Views
    Alan KilbornA

    @Sarah-Duong

    You probably also want to remove the space before the vertical bar as well?

    Try this:

    Find what box: (?-s) \|.+
    Replace with box: Make sure this box is EMPTY !
    Wrap around checkbox: ticked
    Search mode radiobutton: Regular expression
    Press the Replace All button

  • MD5 vs SHA-256 in the contextMenu

    4
    2 Votes
    4 Posts
    565 Views
    PeterJonesP

    That is, BTW, one of the reasons I decided to take an active role in the documentation development: whenever I find there’s something that I cannot remember how to do, I check to see if it’s in the docs; if it’s not there, I like being able to add it in so that 6 months down the road, when I’ve forgotten it again, I can look it up. :-)

  • Disable autodetect syntax by content

    14
    0 Votes
    14 Posts
    1k Views
    EkopalypseE

    :-D
    :-D

  • Notepad++ 7.5.4 (64-bit) slow working with large files (solved)

    2
    2 Votes
    2 Posts
    2k Views
    Alan KilbornA

    @jack4455667788 said in Notepad++ 7.5.4 (64-bit) slow working with large files (solved):

    this may have been fixed in later releases

    How does one “fix” this? Autocomplete is a feature, if it is turned on it will attempt to do its work as best it can. In some scenarios, it isn’t going to be optimal.

  • Figure this would be an easy add...

    2
    1 Votes
    2 Posts
    438 Views
    PeterJonesP

    Interesting. There might be enough people who would want that function for it to be worth implementing – though I cannot remember ever thinking to myself that I missed that ability, so it might not become a high priority for the developers. But the idea is reasonable enough that it’s probably worth reading the FAQ that will direct you to the right location for feature requests and bug fixes.

  • Detect external changes tweak

    3
    0 Votes
    3 Posts
    410 Views
    Alan KilbornA

    Sounds like a scary scenario to me.

  • How to: Search & Replace in .html file , force newLine .

    3
    0 Votes
    3 Posts
    254 Views
    vmars vernonV

    Thank you very much !

  • Syntax color config export ?

    6
    0 Votes
    6 Posts
    1k Views
    Elodie CEMOIE

    @Ekopalypse Thank you very much : I have saved my “DeepBlack.xml” file .
    I asked this question because the last time I upgraded from 7.8.1 to 7.8.2, all my color configuration had been lost !

    So I prefer to be cautious for the future upgrades…

    Thank you very much !

  • SQL keywords not highlighted

    5
    0 Votes
    5 Posts
    1k Views
    conky77C

    I created the issue 7988