• 0 Votes
    2 Posts
    217 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
    353 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
    215 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
    604 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
    299 Views
    MarcosM

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

    issue#8642

  • Feature request: Background Update

    2
    0 Votes
    2 Posts
    460 Views
  • 0 Votes
    2 Posts
    152 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
    240 Views
    阿杨Ayang

    thx all

    @PeterJones windowskey+Number , Very Nice ~~~

  • html can i style the title?

    3
    0 Votes
    3 Posts
    400 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
    420 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
    930 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
    211 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?

  • file extensions

    3
    0 Votes
    3 Posts
    8k Views
    Michael VincentM

    @Harry-Nelson

    Worth noting N++ behavior is now just like all other Windows applications. It’ll add the extension of recognized file types but otherwise you need to do as @PeterJones suggests. I much prefer it this way … predictable and like other Windows applications.

    Cheers.

  • Distance between grids

    14
    0 Votes
    14 Posts
    937 Views
    FranciscoF

    @PeterJones FIND = (?-is)^.+~\h*(?=\d+km) I hope I got it right in the reply, Peter just this command resolves to, thank you very much. GL

  • Thank you

    1
    0 Votes
    1 Posts
    119 Views
    No one has replied
  • Jagged text, align column

    7
    0 Votes
    7 Posts
    2k Views
    guy038G

    Hi @daniel-lysk, @michael-vincent, @ekopalyse and All,

    An other useful little trick :

    Let’s imagine that our previous table has the size file values left justified, as below :

    ACP5191 *PGM CBLLE 5120000 RELEASEID: ITI 19.045.004 06/12/15 14:12 ADS0130 *PGM CBLLE 3137536 VERSION 9.0.1 02/20/17 14:00 ADS0910 *PGM CBLLE 18124800 VERSION 10.1.5 02/11/20 00:38 GUY0000 *PGM CBLLE 123456789 RELEASEID: ITI 3.020.074 08/15/17 10:30

    Now, in order to get the same values right justified, move the caret right before the left-justified numbers and note its column number C, in the status bar. Then, use the number C-1 in the regex S/R, below :

    SEARCH ^.{42}\K(\d+)(\x20+)(?=\x20)

    REPLACE \2\1

    Click on the Replace All button

    And… voila ! Even, if you have 1,000,000 records, it would have been the same !

    ACP5191 *PGM CBLLE 5120000 RELEASEID: ITI 19.045.004 06/12/15 14:12 ADS0130 *PGM CBLLE 3137536 VERSION 9.0.1 02/20/17 14:00 ADS0910 *PGM CBLLE 18124800 VERSION 10.1.5 02/11/20 00:38 GUY0000 *PGM CBLLE 123456789 RELEASEID: ITI 3.020.074 08/15/17 10:30

    Note that the regex S/R, below, does the opposite. It left-justifies the size files. So you get, again, the original file !

    SEARCH ^.{42}\K(\x20+)(\d+)(?=\x20)

    REPLACE \2\1

    Cheers,

    guy038

  • Working with multiple tabs is difficult in NP++

    12
    1 Votes
    12 Posts
    2k Views
    R JR

    Here’s a new feature request ticket
    https://github.com/notepad-plus-plus/notepad-plus-plus/issues/8568

    It turns out this has been requested several times before dating back to 2016. Interestingly, @donho (I think he’s one of the devs?) stated in an old ticket https://github.com/notepad-plus-plus/notepad-plus-plus/pull/2243 that this was already implemented, and the ticket was closed. I don’t know if this was supposed to be implemented back then and got removed for some reason (or he made a mistake?), but there have been more tickets since then requesting the same thing.

  • Notepad++ on Linux?

    21
    1 Votes
    21 Posts
    28k Views
    dailD

    @Guus-Ellenkamp

    Notepad++ is developed using the Win32 api and is solely dependent on it. A native Linux version would require a nearly complete rewrite of the application…and you’d have to be crazy to want to do that.