• Switching files in multi-instance mode does not keep the cursor position

    Locked
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • New person needs help

    Locked
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • Notepad++ core: Function list not working properly

    4
    0 Votes
    4 Posts
    3k Views
    Ion MarqvardsenI

    Thanks Jim, TagsView is cool. It does not have the problems with name restrictions.

    but it has some “features” in C, that is the only file type I have tested:

    If you have an interrupt function like
    void ISR_function_name(void) __interrupt(INTERRUPT_NUMBER)
    {
    }
    it is listed as “__interrupt”

    It gets confusing if you have more than one interrupt function.

    Also you have to hit the update button each time you have add or changed the name of a function.

    But overall a great improvement.

    Thanks,

  • Help with semi-complicated regex / Notepad++ regex issue

    9
    1 Votes
    9 Posts
    29k Views
    guy038G

    Hi DaveyD and All,

    Ah, Yes ! I can apply the Dail’s \K syntax to my previous regex. So, finally, here are my two solutions :

    Find what : (?<!\|)\t(.+)(\R[|\t-]+) which works with, either, the Replace All or the Replace button

    OR

    Find what : [^|]\t\K(.+)(\R[|\t-]+), which ONLY works with the Replace All button

    For these two search regexes, the replacement regex is :

    Replace with : $2$1$2

    I don’t think that we can shorten them, anymore !

    Notes :

    When your search regex contains a \K form, the step by step replacement never works !! That’s the normal behaviour !

    There are two cases, where the \K feature is mandatory and can NOT be replaced with lookbehinds :

    When the regex, inside the lookbehind, could match non-fixed length strings, as, for instance, the regex (?<=\d+)abc

    When the regex, inside the lookbehind contains alternatives, of different length, as, for instance, the regex (?<=(12|345|6789))abc

    So, in order to get valid regular expressions, you must change them, respectively, into the two, below, which include, both, the \K syntax :

    \d+\Kabc

    (12|345|6789)\Kabc

    On the contrary, for instance, the two regexes (?<=\d{3})abc and ((?<=(00|99))abc are quite valid ones. Indeed, inside the lookbehind, the former refers to a three-digits number, only and, in the later, each alternative refers to a same two-digits number :-)

    You may test these 4 regexes against this short example text, below :

    00abc 12abc 345abc 6789abc 99abc

    Cheers,

    guy038

  • Plugin problems: can't enable/disable plugins

    4
    0 Votes
    4 Posts
    9k Views
    Jon JJ

    And I think I found a bug with the Customize Toolbar plugin. When that plugin is enabled, I start having the same error again, with the checkboxes disappearing from the other plugin settings (like in my first post above). But when I disable the plugin, then the checkboxes start working again.

  • When save a new HTML it doesent link to internet

    Locked
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • Notepad++ 6.9.2 dont start after Upgrade to WIN 10

    Locked
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • letters instead of numbers

    Locked
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • Remapping hotkey for incremental search

    Locked
    4
  • Background-image doesn't work

    Locked
    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • which design ist that?

    Locked
    4
    0 Votes
    4 Posts
    27k Views
    maxistinktM

    thanks !!!

  • Freezing while i cut/paste

    Locked
    2
    0 Votes
    2 Posts
    13k Views
    Stefano VenneriS

    Found the problem…
    It was the Clipboard History … just disabled!

  • Strange font in tabs

    Locked
    1
    0 Votes
    1 Posts
    6k Views
    No one has replied
  • R Syntax highlighting for dark themes

    4
    0 Votes
    4 Posts
    34k Views
    dailD

    You are able to add this in on your own. Take a look at this section of the default theme. If you copy and paste this into another theme (for example Monokai.xml) which does not have a LexerType for R yet, you will then be able to highlight R with that style. However this will still have the color/style of whatever the default theme is using which won’t match Monokai. So you can either edit the pasted XML manually to get appropriate colors, or once you paste that into the xml file and start Notepad++ you will be able to edit the style for R using the Style Configurator.

  • Find extended characters

    2
    0 Votes
    2 Posts
    22k Views
  • Save All icon not updating properly

    Locked
    1
    0 Votes
    1 Posts
    6k Views
    No one has replied
  • HTML tag plugin

    Locked
    1
    0 Votes
    1 Posts
    6k Views
    No one has replied
  • 2 navbars using html and CSS

    Locked
    1
    0 Votes
    1 Posts
    9k Views
    No one has replied
  • Cannot edit profile cache maps

    Locked
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • Source Code Pro font not appearing in font lists

    5
    0 Votes
    5 Posts
    6k Views
    Chema Ramos RemesalC

    Thanks for the detailed information guy038!