• Error in page display

    4
    0 Votes
    4 Posts
    284 Views
    Neil SchipperN

    @PeterJones said in Error in page display:

    the pilcrow symbol ¶ on the toolbar

    That word is new to me, thanks. It also has quite a cute synonym, paraph:

    The pilcrow, ¶, is a typographical character that marks the start of a paragraph. It is also called the paragraph mark (or sign or symbol), paraph, or blind P.

    So I learned two new words today. It remains to be seen if I’ll still know them in 3 days…

  • Macro not recording/performing Find and Replace task.

    4
    0 Votes
    4 Posts
    389 Views
    Neil SchipperN

    @Aaron-Bishdou Treat the tuning of a Find & Replace operation as a separate and preliminary task before thinking about macros. It is rare to have to examine npp’s representation of F&R ops in shortcuts.xml at all.

    The transformation you are hoping for does not seem complex. If you want help, show explicitly the expressions you are trying in the Find and the Replace fields along perhaps with optional settings in the F&R dialog.

    Also, think about whether your sample text captures all the anticipated variation (field names & lengths) in your log files.

  • NppFTP No folder display

    3
    0 Votes
    3 Posts
    343 Views
    Greg HerzbergG

    @PeterJones
    TY. I’ll have to familiarize myself with Putty’s built-in tool. Failing that, I’ll try the Plugin’s forum.

    Hmm, the Openssh-sftp-server had vanished from the afflicted router. That’s odd. Reinstalling that package fixed the folder display issue.

  • How to disable red line into last version of notepad++

    3
    -1 Votes
    3 Posts
    774 Views
    Massimo PiscopoM

    @PeterJones solved, thank you REALLY much <3

  • 0 Votes
    4 Posts
    8k Views
    Neculai I. FantanaruN

    The same problem here:

    770e8938-1548-46fa-80ef-bdbdfb00cbd2-image.png

  • Jump to first line

    3
    0 Votes
    3 Posts
    265 Views
    Shar HakimzadehS

    @Michael-Vincent Thanks! It worked!

  • Selecting and tagging with custom tags

    2
    0 Votes
    2 Posts
    2k Views
    PeterJonesP

    @Brennan-OBrien ,

    Well, the easiest way is to install the HTML Tag Plugin, which has buttons which do just that.

    But if you’re really thinking about the generic procedure, rather than the <a>...</a> wrapping specifically, you could record a macro:

    Select Text Macro > Start Recording Cut (Ctrl+X or menu equivalent) type <a> paste (Ctrl+V or menu equivalent) type </a> Macro > Stop Recording Macro > Save Current Recorded Macro optionally assign a keyboard shortcut that you will remember.

    From then on, using that macro (from the Macro menu or from the keyboard shortcut) will place the selected text between <a>...</a>. Since the macro is saved in shortcuts.xml, it will still be available the next time your run Notepad++.

    (Please note that this macro does clobber your current clipboard contents; if this bothers you, using the HTML Tag plugin will be better)

    Online UserManual: Macro Overview: https://npp-user-manual.org/docs/macros/ Online UserManual: shortcuts.xml macro syntax: https://npp-user-manual.org/docs/config-files/#macros
  • Notepad++ is getting slower

    4
    0 Votes
    4 Posts
    639 Views
    PeterJonesP

    @inu20 said in Notepad++ is getting slower:

    After one of instance been closed, a new Notepad++ process created and running in the background, and as the screenshot at the original post, the list might increases over than 10 processes in a day and can only be killed one by one by manually or by restart the PC.

    I cannot replicate that, even when I switched to “always start in new instance” checked to try to replicate your experience. When I start a new instance (whether it’s by using Windows Explorer to open a file in Notepad++, or whether I move or copy the active tab in one Notepad++ instance into a new instance), a new notepad++.exe shows up in my task manager. But as soon as I exit that instance (File > Exit, or clicking on the window close-X in the upper right), the task is closed and my task manager shows one fewer notepad++.exe in the list.

    I see that your original screenshot showed a lot of plugins. You might try seeing if running without plugins (use the -noPlugin option when you launch Notepad++) fixes the problem. If it does, you can narrow it down to see which plugin is causing the problem. You also might try upgrading to v8.4.6.

  • Remove certain section from a lot of links

    4
    0 Votes
    4 Posts
    460 Views
    gerdb42G

    @Amigo-Barrio as Ekopalypse already stated you need to look for some kind of pattern to identify what has to be removed. In your case you have a fixed URL followed by some arbitrary digits followed by the name of a .jpg image. You may achieve the replacement using a Regular Expression (regex for short). The following will pick the entire URL, extract the fixed part and the .jpg name and re-join them omitting the digits:

    Search for: (https://dev.umb-schiffsmodelle.com/wp-content/uploads/2022/10/)\d+/(.+.jpg)
    Replace with: $1$2

    To fine-tune the regex you may want to have a look at this FAQ.

  • Highlight keyword followed by space

    3
    0 Votes
    3 Posts
    351 Views
    G

    @PeterJones

    Thanks

  • notepad was reloaded by night and opened but closed all opened tabs

    3
    0 Votes
    3 Posts
    428 Views
    Sergio VikS

    @PeterJones Hi, thank you very much i added Autosave plugin and all works good. But i remember i already added this plugin earlier, but i do not know how this plugin was removed.

  • A regex question

    2
    0 Votes
    2 Posts
    172 Views
    guy038G

    Hello, @jijo,

    Easy with regexes !

    So, open the Replace dialog ( Ctrl + H )

    SEARCH (data#1191 )\(dodo\).+

    REPLACE \1dodo

    Tick the Wrap aound option

    Select the Regular expression search mode

    Click once on the Replace All button

    Voila !

    Best Regards

    guy038

  • Debugging macros

    2
    0 Votes
    2 Posts
    283 Views
    Alan KilbornA

    @sunvis0r

    When you find your macros becoming large and unwieldy, it may be time to move to scripting. Notepad++ has some excellent scripting plugins, in Python and Lua. But…scripting isn’t for everyone.

  • Removing white strip from autocomplete window.

    3
    0 Votes
    3 Posts
    1k Views
    Главный РедакторГ

    @PeterJones ,
    I’m using Notepad++ 8.4.6. on Windows 10 Pro 22H2.

  • Display Change History setting affects Printing

    2
    0 Votes
    2 Posts
    464 Views
    PeterJonesP

    @Kevin-Golde said in Display Change History setting affects Printing:

    Has anyone else had this problem?

    Our Change History FAQ describes that problem, and links to the existing bug report for the problem.

  • How can I make Notepad++ generate the config.xml ?

    3
    0 Votes
    3 Posts
    1k Views
    Roy WisemanR

    @PeterJones Thanks Peter, I can work with that - I think I’ll use the portable zip version then (strange that I didn’t notice this before, thanks!).

  • Notepad++ • Line number, starting from line 1 - not 0

    2
    0 Votes
    2 Posts
    210 Views
    Alan KilbornA

    @Wawuschel

    What’s your plugin list look like?
    Paste Debug Info here.

  • Plugins Admin is missing in minimalistic package (SOLVED)

    7
    0 Votes
    7 Posts
    739 Views
    epikgitE

    @Alan-Kilborn why should I flame your posting in my thread???

    Well listen, you were right.
    Thank you for your contribution and have a good day my friend.

  • Translate only part of an xml text from one language to another?

    6
    0 Votes
    6 Posts
    2k Views
    Tonio Mr.BamboloT

    Hello @guy038

    Thanks to your scheme to follow after 3 attempts (but only because I did not understand some terms well) I was able to reassemble the localization file.
    Now the menu is in Italian, even if some terms are translated (cupola instead Cappello :)) but in any case everything is finally working.
    The only regret is that I have received a great deal of breath on this comunity
    known through research and use of the program, But I will never be able to reciprocate the help received towards anyone, as I hardly know the first basic commands :(

    Anyway, thank you very much again

    sincere greetings

    Tonio

  • 2 Votes
    5 Posts
    8k Views
    daMatzDaMatzD

    @PeterJones

    This is awesome and exactly what I was looking for, thanks for taking the time and explaining everything!
    Just recorded the macro and will use it in the feature!