• Bug. Horizontal bar issue with very very long lines

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    Claudia FrankC

    @Enrico-Tracanzan

    has been already addressed in issue 926.
    But I guess it’s treated as minor bug.

    Cheers
    Claudia

  • Lost all data after notepad++ crashed

    4
    0 Votes
    4 Posts
    3k Views
    Claudia FrankC

    @Sandeep-Gupta

    if there wasn’t a backup set it doesn’t make sense to try to run recovery software as
    no additional files have been created. Sorry.

    Cheers
    Claudia

  • Short Sighted Administrators

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    dailD
    Locking Posts

    Although I can’t state for sure, I think this is automated that if a post hasn’t had any activity for a while it is automatically locked. At one time there was a really bad problem on this forum with spam accounts so some precautions were put in place. I’m cant say for sure if these are still applicable (maybe @milipili or @donho can decide if these are still relevant). I agree that even if some posts seem “old” they can still be relevant for discussion.

    Closing Threads Stating a thread is too old.

    I’m not sure I recall any of these happening. (If so it is incredibly infrequent). Care to point out some examples?

  • View width reset to 50/50 after program restart

    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • Direction per text file (RTL / LTR per tab)

    Locked
    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • How to use the new tail option

    Locked
    2
    0 Votes
    2 Posts
    5k Views
    Marco LingenM

    hmm just found in this post that i can click on the eye icon.
    https://notepad-plus-plus.org/community/user/daniel-carter

    But… i did open c:\Windows\WindowsUpdate.log clicked on the eye icon, no updating at all.

    Am i still doing something wrong or isn’t this working yet?

  • Color picker has bad default colors

    Locked
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • bash heredoc highlighting should be fixed by Scintilla

    2
    0 Votes
    2 Posts
    3k Views
    Claudia FrankC

    @schittli

    Should the Scintilla bugfix automatically work in Notepad++ / does Notepad++ automatically use the latest Scintilla Release?

    No, afaik npp uses scintilla 3.5.6 at the moment.

    Cheers
    Claudia

  • Notepad++ Wiki

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    Claudia FrankC

    @Joe-Hershberger

    afaik it is not used anymore and outdated.
    Again, afaik the new one get created here.

    Cheers
    Claudia

  • Start Menu item (etc) missing after non-Admin install

    2
    0 Votes
    2 Posts
    2k Views
    Claudia FrankC

    @Peter-Nann171

    MS decided that certain actions do require administrative privileges.
    Some of them can be worked around others not.

    Cheers
    Claudia

  • Want to copy language to User Defined and modify

    5
    0 Votes
    5 Posts
    8k Views
    Claudia FrankC

    It seems I wasn’t clear enough.
    When using Settings->Style Configurator and selecting the language in question,
    one of the attributes under Style refers to the keywords of that language.
    Select it and you should see an additional box showing the keywords. Right click in this box,
    Select all->Copy and you can paste it into the UDL keyword box.

    @Harpreet-Singh-Bassan
    what exactly do you wanna know about UDL?
    The website in question is http://ivan-radic.github.io/udl-documentation/introduction/.

    Btw. I’m an npp user - not a developer.

    Cheers
    Claudia

  • Very Important Feature Requests

    20
    0 Votes
    20 Posts
    1m Views
    John SparkJ

    One million BUMP

  • 0 Votes
    5 Posts
    4k Views
    Harpreet Singh BassanH

    Claudia – Thanks Thanks Thanks --------- a lot. I have installed and checked the Plugin thoroughly. It is exactly what I needed. Changing colors for texts and having update automatic is fantastic. I wish this is a standard plugin pre-loaded or can be shown under Search Menu with ribbon button called “Enhanced Search” like this.
    Once again Thank you.

  • Marking And Highlighting shortcut

    8
    0 Votes
    8 Posts
    9k Views
    Claudia FrankC

    Sorry, I’m not aware that there is an java automation plugin available.
    So, maybe you wanna give the python example a try?

    Cheers
    Claudia

  • [FR] Web links processing to domain only raplace

    3
    2 Votes
    3 Posts
    4k Views
    pwnotepaduserP

    Notepad have weblink highlighting, so this functionality is to transform from big link to domain only.
    Cut from link domain.
    Got from weblink domain only.
    We have random link “http://site.com/asdasd/asodinoainddH@78gf3ohe” , after 1 click on highlighted link we get only domain: “site.com
    We delete from “http:// site.com /asdasd/asodinoainddH@78gf3ohe”
    [http://] and [/asdasd/asodinoainddH@78gf3ohe] and got domain only “site.com

    For example, domains type can be like that:
    https://29873gjhf23fh.23gf23987f238hf23.xyz
    http-sfseoif-28342.eosifis.com
    1-1-1.0-0-0.abv

  • WIndows 10 random crash

    Locked
    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • 0 Votes
    2 Posts
    2k Views
    Claudia FrankC

    @Rustam-Abdullaev

    afaik this has been changed in Win10.
    See here for more information on this topic.

    Cheers
    Claudia

  • Problem with Find and replace using Regex

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    Noel WorlandN

    Hi I found my own solution -
    My Regex find -
    (model\s"(AMURRY|CKB|CLAYDEN|DARACON|DOWNER|FREDON|FULTON HOGAN|FH DWC|FUSION|GFIS|HUSKY|LEND LEASE|M AND P|MURPHY|OLYMPIC|ROBSON|SAFEGATE|SAGEGATE|SPANTECH|STOWE|WILKEN) \d+\s)(.*)

    My regex replace - model "\3

    it now does not add the million lines of text.

  • Regular expression change first and last line in all opened files

    Locked
    2
    0 Votes
    2 Posts
    3k Views
    Patryk PatrykP

    Ok, i just found working solution how:

    -> remove first and last line in one ore more files in notepad, just using this regex:

    find: `[^\r\n][\r\n]+(.[\r\n]+)[^\r\n]+[\r\n]*’
    change for: \1

    Check regex and matches new line, it works really fine! :)
    Then i just easly can add something in first line with this regex:

    find what: (.*)
    replace with: WHATEVERTEXT\r\n\1

    Also check new line and regex. And the last one action to add something in the last one line of file:

    find: (.*)
    replace with: \1PUT HERE ANY TEXT

  • Latest version notes

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    Claudia FrankC

    @Max-Entropy

    or it was in the morning as he wanted to monitor … :-)

    Cheers
    Claudia