• Split lines in n characters completing whole words in Notepad++

    8
    0 Votes
    8 Posts
    1k Views
    astrosofistaA
    Hi @Terry-R You’re right, my bad. I misread the whole thing. Hope that OP wasn’t fooled by my post. BR
  • Perl subroutine calltips - with PythonScript

    52
    1
    2 Votes
    52 Posts
    15k Views
    Michael VincentM
    @Ekopalypse said in Perl subroutine calltips - with PythonScript: Just to make clear, this function is not really needed. That worked!
  • Request for a new command line switch --singleInst

    4
    0 Votes
    4 Posts
    742 Views
    pbarneyP
    @PeterJones It was a wishlist item and my wishlist doesn’t trump pressing needs. Too often the perfect is the enemy of the good. I don’t know what’s involved in ongoing Notepad++ development, and whether it would have been a, “hey, good idea, I’ll whip that together in 10 minutes and be done with it” or if it would be, “hmm, we’ll put together a committee to do a needs analysis prior to committing it to the product roadmap and tasking several developers to develop the unit tests and blah blah blah.” Either way, my life is 90% workarounds, so I’m fine with it.
  • Updating version looses cached documents in the editor.

    3
    0 Votes
    3 Posts
    464 Views
    PeterJonesP
    @Justin-Tolearn said in Updating version looses cached documents in the editor.: I don’t know if this is a common behaviour I’ve not noticed before, but all documents that were in the previous version of the editor but NOT saved, were lost. Is this normal? It’s not common/normal, but we have heard instances of that before, so it’s not unheard-of, either. As @Alan-Kilborn said, anyone who tries to upgrade any software package without saving any active work first is just asking for trouble.
  • 0 Votes
    6 Posts
    896 Views
    Jerry O'BrienJ
    @Ekopalypse Thanks. I removed and reinstalled XML Tools and that fixed it.
  • 0 Votes
    2 Posts
    432 Views
    PeterJonesP
    @JasonJDooley , You already asked that and I already answered. If you need more help, reply in the other thread.
  • Backtick javascript strings in Notepad++

    6
    0 Votes
    6 Posts
    2k Views
    caryptC
    ok , ty for guidance.
  • Help , can't shut off Transparency ?

    2
    0 Votes
    2 Posts
    372 Views
    vmars vernonV
    Hmm… Don’t know what I did , but now it works .
  • User Manual is gone?

    4
    0 Votes
    4 Posts
    546 Views
    donhoD
    @PeterJones Thank you for your heads up. @mattesh Does it work now for you?
  • Where do feature suggestions go?

    3
    0 Votes
    3 Posts
    521 Views
    Alan KilbornA
    @Belteshazzar-Diaz said in Where do feature suggestions go?: suggest a “favorite fonts” feature IMO developers aren’t going to spend cycles on such a feature. Font is something you change probably once and then forget about it. Devs want to spend time on “bigger wins”; feature improvements and bug fixes that will impact many users as they constantly use N++. But, go ahead, by all means, you are free to request what you’d like to see. :-)
  • problem space/tab

    3
    0 Votes
    3 Posts
    469 Views
    TDLgamingT
    i fix but i disabled all this is for fix -> https://gyazo.com/3d72577d822a430fd55b080c1676effe Thanks Peter
  • The installer doesn't detects application location anymore

    2
    0 Votes
    2 Posts
    512 Views
    PeterJonesP
    @Jozsef-Szasz-Fabian , This was noticed back in February (see previous discussion) and an official issue was created as #7946. You might want to upvote and/or comment on the issue to try to get more traction from the developers.
  • How to auto color specific words opening text files

    4
    1 Votes
    4 Posts
    1k Views
    PeterJonesP
    @Ray-Hamel , Put the extension (no dot) in the Ext entry for your UDL [image: 1605484936170-8803e092-7da9-437c-b015-913a1e356545-image.png] That was also explained in the UDL documentation already linked.
  • Np++ randomly freezing at startup

    5
    2
    0 Votes
    5 Posts
    717 Views
    Jozsef Szasz-FabianJ
    I was experiencing this problem when I accidentally installed the 32-bit version instead of the 64-bit version. The 32-bit version has a bug that 1 out of 3 Npp startups result in freeze. I tested it on 4 computers.
  • Delete text up to a certain number of characters from the end of a line

    3
    0 Votes
    3 Posts
    3k Views
    Keith WoodK
    That worked like a champ! Thank you ever so much!
  • Bug with -openFoldersAsWorkspace

    6
    1 Votes
    6 Posts
    1k Views
    Alan KilbornA
    @un-pogaz I fully understand the Explorer right-click concept. There is also the factor of how often you do this (set up a folder as workspace). I have had the same folder set up this way for several years now; hasn’t changed. But, everyone’s different. I just wouldn’t have a high expectation that this kind of thing is in the upper parts of the dev’s todo lists.
  • How to get the Filenames after running "Find in Files" ?

    17
    1 Votes
    17 Posts
    13k Views
    Mahesh TyagiM
    @Scott-Sumner this works. thanks!!
  • File too big (2)

    2
    0 Votes
    2 Posts
    448 Views
    Terry RT
    @pspiersy said in File too big (2): USMT2.UNC Isn’t this a User State Migration file? It’s one that Windows creates when you are migrating from one PC to a new one. It will eventually restore the content of that file on a new system. Don’t try to open it with Notepad++ or you will likely destroy any ability to get back the data. This file is created by the USMT see: https://theitbros.com/migrate-user-profiles-with-user-state-migration-tool-usmt/ Only this program can recreate the content within back into their respective files. Terry
  • Visually like Internet Explorer

    3
    1
    0 Votes
    3 Posts
    482 Views
    Roudri ContabilidadeR
    @Alan-Kilborn said in Visually like Internet Explorer: XML Tools plugin It worked, thank you very much
  • merge specific lines

    7
    1
    0 Votes
    7 Posts
    786 Views
    Terry RT
    @Terry-R said in merge specific lines: Find What:\R(?=\d) Sorry there was a typo. It should be \R(?!\d) So looking for a line following that does NOT have a number at the start. Apologies Terry