• 0 Votes
    27 Posts
    2k Views
    EkopalypseE

    @PeterJones

    Pj4+IE1FTlVDT01NQU5ELnZhbHVlc1s0MzA0OF0NCk5wcC5NRU5VQ09NTUFORC5TRUFSQ0hfU0VUQU5ERklORE5FWFQ
  • code folding total elementos linhas niveis 1 2 3 4

    36
    0 Votes
    36 Posts
    2k Views
    Francisco BomfimF

    bom dia!
    saúde!

    muito, muito obrigado!
    funcionou perfeitamente!

    aceite um forte abraço.

    francisco.bomfim@gmail.com
    Brazil.RJ.Rio de Janeiro
    PY1ANA (radioamateur)

  • Stand with Hong Kong

    1
    2 Votes
    1 Posts
    121 Views
    No one has replied
  • Have you ever been to China?Have you ever been to HK?

    2
    -2 Votes
    2 Posts
    181 Views
    aaronsysuA

    Stupid author, uninstall notepad++

  • notepad doesnt display image

    5
    0 Votes
    5 Posts
    10k Views
    Makwana PrahladM

    Hello,@Ricardo-Garcia
    Please try this code,To notepad doesnt display image

    <!DOCTYPE html> <html> <head> </head> <body> <section> <img src="img/vietnam.jpg" alt="vietnam"> </section> </body> </html>

    I hope this code will be useful for you.
    Thank you.

  • Clickable links

    1
    0 Votes
    1 Posts
    169 Views
    No one has replied
  • Copy and Paste text from Notepad++ to email....

    2
    0 Votes
    2 Posts
    411 Views
    PeterJonesP

    @E-M ,

    You need to type the newlines. “Word wrap” in Notepad++ is just a display setting, there aren’t actually any newline characters unless you type them

  • 2 Votes
    19 Posts
    2k Views
    tyler durdenT

    @Alan-Kilborn
    You’re absolutely right. I didn’t mean it like “you must notify me”, it was more like “hey looking forward to seeing any updates” that’s why I added the “lol” at the end. I apologize if I didn’t come across well. Also, thank you the suggestion, I’ll definitely keep an eye on his GitHub page! :D

  • Replace non-breaking space UTF-8 (C2 A0)

    10
    0 Votes
    10 Posts
    22k Views
    PeterJonesP

    @Bart-Heinsius ,

    Glad it’s working for you now.

    In case you are curious, 0xC2 0xA0 is the two byte sequence in UTF-8 that represents the single character at U+00A0.

    https://en.wikipedia.org/wiki/UTF-8 http://www.fileformat.info/info/unicode/char/00a0/index.htm

    As @Alan-Kilborn said, the search-and-replace feature works with the actual character codepoints, hence uses \x{A0} or \x{00A0} to match that character, whereas the Hex Editor works with the individual bytes, so shows you both the byte 0xC2 and the byte 0xA0.

    Like the hex editor, The MIME Tools plugin uses the raw bytes, rather than the characters. You can easily see this in my example, which using MIME Tools > URL Encode shows non%C2%A0breaking%C2%A0space, so you can see %C2 and %A0 are used to encode the bytes 0xC2 0xA0 which are used to encode the character at U+00A0.

  • Is it possible to sort the document switcher?

    3
    0 Votes
    3 Posts
    645 Views
    mkupperM

    @Amenel-Voglozin said in Is it possible to sort the document switcher?:

    I’m not sure what you mean by the document switcher. However, if you go to the Window / Windows menu item it pulls up a list of the open files. The list has four columns, Name, Path, Type, and Size. You can click on a column header to sort the list by that column, Click the header again to reverse the sort. Then click the [Sort Tabs] button and it’ll shuffle the tabs around based on the sort order you chose.

    I’m using Notepad++ v7.8.9 (32-bit) but suspect this feature is available in older versions of npp too.

  • Add a multiple clickable magnet links in document

    3
    0 Votes
    3 Posts
    456 Views
    lon from appletonL

    @PeterJones

    I’m closing this as just a bad question due to my misunderstanding of live links. I’ll just block copy the
    whole source as text and leave it to others to copy and paste where they need it to their browser.

    Thanks for answering.

    Lon

  • Incorporating Prettier and/or js-beautify

    1
    0 Votes
    1 Posts
    783 Views
    No one has replied
  • File association from menu as admin not working (np++ v7.8.9)

    4
    0 Votes
    4 Posts
    342 Views
    ?

    Problem fixed!!
    I just searched for the string editplus in my Windows registry and deleted every key and value that matched that string. Now I can associate and remove file extension association from NP++ menu!

  • Find All in Current Document not displaying complete lines

    2
    1 Votes
    2 Posts
    437 Views
    Alan KilbornA

    Is there a way to have it display the full line (in my case, 4,000 characters)

    I don’t believe so, not currently.

    There is an open issue regarding it, but so far it doesn’t appear to have had any action/traction: CLICK HERE
    You might want to go there and state your opinion; adds weight for developers to make a change.

    If I double-click on a line in the Find results window at position 2,500, the cursor jumps to the main window but at the location of the characters that were found, not iat the position I was in the Find results window.

    Yes, double-clicking anywhere in the line jumps to the match point.

  • Continues to be in top 3 IDE: Stack Overflow survey!

    2
    4 Votes
    2 Posts
    302 Views
    EkopalypseE

    @SinghRajenM
    First of all, thank you very much for all the help and fixes you have provided to the Npp Community so far.
    To survive against a billion dollar company like Microsoft is not easy and
    even more difficult for a “small” free open source project like Npp.

  • what is last version of np++ where matching parenthesis was working?

    9
    0 Votes
    9 Posts
    395 Views
    gstaviG

    To make things clear the problem is NOT with brace highlighting, it is with Batch lexical analysis.
    Brace highlighting only works for the same lexical type of the language.
    Put the following into a C file and check which brace is highlighted. Then change the language to normal text and check how it changes.

    /*(*/ ( "(" /*)*/ ) ")"

    If you observe the lexical types of Batch in Style Configurator you will see two relevant types: Command and Default.
    Based on coloring (without higlighting) you can see that most of the braces are Command except for the one after the ELSE that is Default so it is not matched with Command braces.

    So what you want is the Batch lexer to be fixed so a brace after else becomes Command (or all others become Default).

  • Saving and restoring recorded macros.

    2
    0 Votes
    2 Posts
    364 Views
    PeterJonesP

    @Олег-Надыч ,

    As described in the official documents at https://npp-user-manual.org/docs/config-files/ , Macros are stored in shortcuts.xml. That file is saved in the same folder as all the other Notepad++ configuration files (including your preferences, file history, etc).

    In a normal installation, they go in %AppData%\Notepad++\ In a normal installation with Settings > Preferences > Cloud enabled, they go in the DropBox/OneDrive/etc folder listed in that setting In a portable copy, they go in the same folder as notepad++.exe

    So, if you copied one or more of those folders onto the new computer, then that’s how.

  • Notepad++ Parser Question

    3
    0 Votes
    3 Posts
    455 Views
    Jason McDanielJ

    @PeterJones Thanks so much for the details! 👍

  • How to replace text at a special place in special rows?

    22
    0 Votes
    22 Posts
    1k Views
    Alan KilbornA

    @Makwana-Prahlad

    How is that relevant?
    You provided a solution for 2 things that were not even asked for.

  • Powershell 5 parser

    1
    1 Votes
    1 Posts
    179 Views
    No one has replied