• userDefineLangs for .txt

    5
    0 Votes
    5 Posts
    519 Views
    PeterJonesP

    @kozakmak said in userDefineLangs for .txt:

    BUT! features of different themes are not taken into account, for example, dark and light

    Out of curiosity, do you really change themes or light/dark that often? Everyone I know just picks their favorite theme and just leaves it like that for normal usage. If you have a use case (other than the few minutes, hours, or days required to say, “no, I like theme/mode X better than theme/mode Y”) where you frequently change themes or light/dark, I’d love to hear it… because I’ve occasionally seen people complain about things not following theme/mode changes, but whenever I’ve asked for a use case where changing is necessary, I’ve never seen a reason that makes sense to me: maybe you will be the first. (And if I know of use cases where it’s important, either I can figure out workarounds in such situations, or if it makes sense, I could start lobbying the developers to expose new API that will give information about the theme – the Dark-vs-Light mode is now in the API, thankfully)

    If you aren’t changing themes or light/dark modes, then just put in the colors that work well with your theme. If you are changing themes often, then as Ekopalypse says, there isn’t a way for the plugin to know what theme you are using for now, so you’ll unfortunately have to live with that mild annoyance of editing and saving the EnhanceAnyLexer config whenever you do change theme. (If you are changing themes enough that it goes beyond mild annoyance, maybe you should consider which is a higher priority to you: changing themes, or the custom “normal text” highlighting.)

  • .reg function list

    5
    0 Votes
    5 Posts
    423 Views
    kozakmakK

    @ekopalypse
    its work
    thx

  • [Suggestion] Restoring a closed tab

    7
    0 Votes
    7 Posts
    666 Views
    Alan KilbornA

    Reopening a “just-closed” file is somewhat of an exceptional action. Thus, having to go to the File menu for it is not that big of a deal.

  • Show/hide doc switcher

    3
    0 Votes
    3 Posts
    269 Views
    Marco - 0M

    @ekopalypse Great. Thanks a lot.

  • new pages with empty lines added?

    3
    0 Votes
    3 Posts
    217 Views
    EkopalypseE

    @jim-julian

    Not with the standard functions of Npp, but with a scripting plugin and the interception of the FILEOPENED event this is possible. If you want to take this step let us know.

  • Implement common keywords list - Find

    4
    1 Votes
    4 Posts
    778 Views
    Anthony ZackinA

    @rene-zinsheimer
    If you are doing log analyses I have a free tool that you might find very useful. It is called RCFV, the Really Cool Filter Viewer, and you can download it at www.takamomto.com. (As of 6/3 the website is a little screwy due to outside factors but you can still get the latest release of the software there.)

  • Feature request: toggle expand/collapse

    15
    1 Votes
    15 Posts
    11k Views
    PeterJonesP

    Since he didn’t mention the version number, I thought I’d chime in and say that the code fix that Don linked to was included in v8.4.2, so it is now readily available for download.

  • add text to even lines

    10
    0 Votes
    10 Posts
    2k Views
    cisco779kC

    guy, thank you so much for your string. it work like a charm

    all the best

  • <theme>.xml save bug

    2
    1 Votes
    2 Posts
    240 Views
    Alan KilbornA

    @антон-потапов

    Interesting.

    …because it looks like the duplication bug is related to the “ä” combination of symbols.

    For me, it appears like this, so I don’t see those “symbols”:

    f376ba2a-fec2-4b85-ab2d-c1996c68acd6-image.png

    …and I don’t show it, but trust me, my status bar says the encoding is UTF-8, just like yours does. If I edit and save this file, this character doesn’t “grow” like it does for you.

    So I’d say it is some sort of odd encoding issue (for you), but we’ve got UTF-8 in line 1 of the file, and also in the status bar, so
    I’m mystified.

    I will say it made me think of some other encoding issue I read about recently HERE. But I think that is just a curiosity, not related.

  • changing markstyle forground color

    5
    0 Votes
    5 Posts
    369 Views
    Fouad AbdraoufF

    @ekopalypse well thanks for taking time to anwser, and yes i wanted to make of npp a replacement for ms word, cause it is faster to exacute and its more customisable for a minimalist look.

  • Lazy-loading of open files

    3
    1 Votes
    3 Posts
    851 Views
    rdipardoR

    The Community Forum’s feature request FAQ explains how to put in an official feature request that will be seen by the developers.

    Speak of the devil . . . https://github.com/notepad-plus-plus/notepad-plus-plus/issues/11741

  • [Suggestion] Make Ctrl-C without selection to copy current line

    4
    0 Votes
    4 Posts
    251 Views
    Maxima 120M

    @alan-kilborn brilliant - it works! :) thank you

  • Why do the colors for my .py files look awful?

    2
    0 Votes
    2 Posts
    401 Views
    PeterJonesP

    @test-account ,

    You are the only one who can know if any given color scheme will work for your eyes – you have chosen Dark Mode, so I can already guarantee that the preferences that work best with my middle-aged eyes would not work for you.

    There are about a dozen themes that ship with Notepad++: try them from the Style Configurator to see which comes closest to working for you, then use the Python settings in the Style Configurator to further customize it to your liking.

  • Toggle Dark Mode off when using Compare Plugin

    7
    0 Votes
    7 Posts
    2k Views
    pnedevP

    @Greg-Vaeth ,

    Compare plugin will not be supported anymore (at least by me) because I consider it obsolete and because (as Peter Jones said) I am working on another plugin - ComparePlus that is Compare plugin’s successor.

    ComparePlus will have default color settings for Notepad++ DarkMode. I hope to release the first version soon.

    @PeterJones ,
    Peter, thanks for all the support, much appreciated!

    BR

  • Searching all lines between tags

    2
    0 Votes
    2 Posts
    694 Views
    Terry RT

    @tss-tss said in Searching all lines between tags:

    I would like to copy all the lines between <a href… </a> from a old html file, is there a smarter way using the search tool?

    When you say copy between I would presume the line would also contain the <a href… and </a> code as well. that is unless the lines are formatted in such a way as to have this code on lines by themselves and the lines you want are indeed ‘between’.

    So using the Mark function (Search, Mark, Ctrl+M default shortcut) you would add the following to the find field:
    Find What:(?s)<a href>.+?</a>
    Tick the box “bookmark line”, search mode is regular expression. Click on “Mark All”. You will now see lines that you want to copy are preceded by a blue circle/sphere. These are the bookmarks. Then Right click on this area and select “Copy Bookmarked Lines”. Create a new tab and insert those lines using Ctrl-V (paste).

    If you need a definition of the regular expression please just ask.

    Terry

  • How do I remove arguments from the function view 8.4.1

    2
    0 Votes
    2 Posts
    276 Views
    PeterJonesP

    @william-pigott-0 ,

    Each programming language has its own function list definition – and they are customizable. So no one here can tell you how to fix it unless you give us some information, like which language you were using, and what version of Notepad++ you used to use: with that, we could at least look through the revision history for that language’s definition. (The official default language definitions rarely change, so I am betting that you actually had a customized function list definition, maybe that you got from someone else, which you didn’t replicate when you moved to the a new machine, or that you deleted all your old customized configs when you installed v8.4.1, and thus lost the customization. Because upgrades don’t generally overwrite edited config files, so if you had done a normal upgrade, it should have kept your older functionList definitions.)

  • Bug for horizontal scrolling

    3
    0 Votes
    3 Posts
    403 Views
    Alan KilbornA

    From this issue @Ekopalypse links to, it appears there will soon be a fix for this, probably in the release after 8.4.1.

  • Notepad++ v 8.3.3 crashes and closes without saving files

    1
    0 Votes
    1 Posts
    133 Views
    No one has replied
  • Download link for old versions is 'wrong'

    Locked
    23
    1 Votes
    23 Posts
    3k Views
    PeterJonesP

    As the recent “questions” in this discussion have been by users with such “human” sounding names (“Apps” and “News” don’t sound like people to me, to be quite honest), I find it difficult to believe that these are not disingenuous – especially since the posts look like slight rewordings of previous posts earlier in this discussion.

    As a result of this topic encouraging many low-quality posts, with recent posters never returning to provide clarification, it is being locked.

    For future users: if you are actually having difficulty downloading Notepad++, please create a new topic, and provide information about exactly where this “bad link” is coming from – show the URL and maybe a screenshot of the page that has the bad link, and describe the circumstances that lead you to believe that the link is bad.

    If you are one of the aforementioned users and take umbrage to my disbelief, I am sorry; in the future, it may behoove you to choose usernames that don’t sound so spammy, and to provide clarification when requested; if you are still actually having difficulty downloading Notepad++ from official links, the “create a new topic, but with more details” advice in the last paragraph still applies to you.

  • Data search, in text with columns

    5
    0 Votes
    5 Posts
    1k Views
    Terry RT

    @francisco said in Data search, in text with columns:

    Terry, my post has been “edited” by the system,

    I thought as much. The system will adjust posts according to it’s “formatting rules”. To prevent these issues please read the post pinned at the start of this section of the forum titled “Please Read This Before Posting”. It outlines what is needed when posting examples. So if you happen to post again it is VERY important you follow those examples, otherwise you may find (again) the solution doesn’t fit your needs.

    It’s good to know that in this instance you were easily able to adjust to fit your requirements.

    Terry