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

    2
    4 Votes
    2 Posts
    304 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
    398 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
    369 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
    465 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
    181 Views
    No one has replied
  • 0 Votes
    2 Posts
    219 Views
    PeterJonesP

    @Jędrek-Zwierko ,

    Your question is what we call a cookie-baking question: just because you type your HTML with Notepad++ doesn’t mean that a Notepad++ is the appropriate place to ask your HTML question. (See our FAQ: https://community.notepad-plus-plus.org/topic/15958/faq-desk-you-ve-asked-your-question-in-the-wrong-place . The easy way to tell if your question belongs here is if you would expect the same answer whether you use Notepad++ or notepad.exe or SomeRandomEditor to edit your code: if the answer would be the same, then this isn’t the right forum.)

    However, your HTML problem is pretty easy to spot: <h1 najlepsze filmy is not valid HTML: you probably meant something like <h1>najlepsze filmy </h1>. Since there is no closing >, the <h1> tag is never finished, so your browser has nothing to render.

    Further, though it’s unrelated to your problem, the way to close the body element is </body>, not the <body/> that you use.

    If you have further HTML questions, please find an HTML-focused forum.

  • how to append stuff to the end of each line ?

    3
    0 Votes
    3 Posts
    2k Views
    vmars vernonV

    Thanks ;
    I’ve never used regx
    Works great .

  • Hex Line Numbers

    2
    0 Votes
    2 Posts
    355 Views
    Michael VincentM

    @Gregory-Blum

    Turn off the hex line numbers plugin?
    Notepad++ doesn’t do hex line numbers natively.

    Cheers.

  • Keyboard shortcut

    3
    0 Votes
    3 Posts
    216 Views
    Alan KilbornA

    @PeterJones said in Keyboard shortcut:

    I believe there was one version a few versions back that had a bug with the keyboard shortcuts in that dialog, but it has been fixed for a while now.

    I wouldn’t really call it a “bug”.
    It was more of the Save dialog being changed to add Yes to All and No to All features.
    The keycombos to control it were just a little bit late to the party, so that they’d be automatically there by default.
    An end user could always have added them in at any time by editing the language translation xml files.

  • Formatting a large json file

    2
    0 Votes
    2 Posts
    611 Views
    EkopalypseE

    @Giancarlo-Taliente

    which plugin is this, seems I can’t find it in PluginAdmin.
    I see a JSTool is this the one you are referring to?
    Btw. which npp version are you running? Please copy the debug-info from the last menu item , the ? menu.

  • Feature request: some tab improvements

    3
    1 Votes
    3 Posts
    302 Views
    MarcosM

    Thank you, @Ekopalypse ! :)
    I opened a github Issue, as recommended:

    issue#8642

  • Feature request: Background Update

    2
    0 Votes
    2 Posts
    507 Views
  • 0 Votes
    2 Posts
    153 Views
    andrecool-68A

    Google doesn’t work on your computer?
    https://www.w3schools.com/tags/tag_img.asp

  • HOW BOSS Key feature?

    4
    0 Votes
    4 Posts
    248 Views
    阿杨Ayang

    thx all

    @PeterJones windowskey+Number , Very Nice ~~~

  • html can i style the title?

    3
    0 Votes
    3 Posts
    404 Views
    andrecool-68A

    This tag reverses the title in the browser tab, and you do not need to apply styles to it)))
    https://www.w3schools.com/tags/tag_title.asp

  • Zoom feedback

    2
    0 Votes
    2 Posts
    421 Views
    EkopalypseE

    @DevForFun

    A pythonscript solution could look like this

    from Npp import notepad, editor, editor1, editor2, NOTIFICATION, SCINTILLANOTIFICATION, STATUSBARSECTION def check_zoom_level(): if notepad.isSingleView(): zoom_level = 'zoom level: {}'.format(editor.getZoom()) else: zoom_level = 'zoom level view0:{} view1:{}'.format(editor1.getZoom(), editor2.getZoom()) notepad.setStatusBar(STATUSBARSECTION.DOCTYPE, zoom_level) def on_zoom(args): check_zoom_level() def on_buffer_activated(args): check_zoom_level() def main(): notepad.callback(on_buffer_activated, [NOTIFICATION.BUFFERACTIVATED]) editor.callbackSync(on_zoom, [SCINTILLANOTIFICATION.ZOOM]) on_buffer_activated(None) main()
  • come si copia una macro da un pc ad un altro?

    6
    0 Votes
    6 Posts
    934 Views
    PeterJonesP

    @massimo-la-terra ,

    hai ragione me lo ha riscritto in inglese e non capivo grazie
    = you’re right he rewrote it in english and i didn’t understand thanks

    Sorry, I am not sure what you are trying to say there.
    Scusa, non so cosa stai cercando di dire.

    I will use deepl.com to translate my last post to Italian for you.

    Avete copiato nel posto giusto per la nuova installazione? Vi siete ricordati di non avere Notepad+++ in funzione mentre facevate la copia? Avete guardato nel menu Macro? Se guardi %AppData%\Notepad++\shortcuts.xml sulla nuova macchina, contiene le macro.

    Ci stai facendo fare un sacco di congetture. Cose come mostrarci le ?-menu Debug Info di entrambe le macchine, e dirci i percorsi dei file sorgente e di destinazione ci aiuterebbe - così come rispondere alle mie domande di cui sopra.

    Tradotto con www.DeepL.com/Translator (versione gratuita)

    Until you can give us the information I requested in my last post, I cannot provide any more help.
    Fino a quando non potrete fornirci le informazioni che ho richiesto nel mio ultimo post, non posso fornirvi altro aiuto.

  • How to replace only in rows with a special text?

    3
    1 Votes
    3 Posts
    212 Views
    ErwinSchmidt17E

    @Ekopalypse said in How to replace only in rows with a special text?:

    5000x5000(?=.*?projectID: 1234)

    Thank you. That worked.

  • Error Code2 ShellExecute-ERROR

    6
    0 Votes
    6 Posts
    5k Views
    EkopalypseE

    @Ahmed-Mujtaba said in Error Code2 ShellExecute-ERROR:

    I get This error every Time.

    You haven’t said whether you tested what @Meta-Chuh posted earlier
    or if it is related to what the OP asked for? Can you post your debug-info from ? menu?