• Count the occurences of each line

    Locked
    10
    0 Votes
    10 Posts
    3k Views
    Alan KilbornA

    @PeterJones

    OMG. Peter, I think this Community is like a drug for you…or maybe for more than just you.

    :)
  • How to find A txt file isnot has 1500 word in globish ?

    Locked
    7
    0 Votes
    7 Posts
    750 Views
    Zhen LiangZ

    I got USA film Avengers Endgame.ass and make half of world can us globish to see this film.

  • Auto-identation in Lua code language

    6
    0 Votes
    6 Posts
    7k Views
    SalviaSageS

    I just tested this script with LuaScript v9.0 on Notepad v7.7 and it fully works
    without any syntax errors. It auto indented the lines as well as press “backspace” when I typed “end”.

    Thanks for posting this script @dail.

  • TextFX insert ... questions

    7
    0 Votes
    7 Posts
    1k Views
    Alan KilbornA

    But…maybe…this script is only useful as an example, because it is just as easy to use one of Notepad++'s tab-right-click options to copy the same info to the clipboard, and then paste it somewhere else…

  • Notepad++ encryption cuts of a lot of text...

    12
    0 Votes
    12 Posts
    4k Views
    Alan KilbornA

    @Benya

    If you want more help, then you have to keep trying until you can get a reproducible scenario. Your other choice is to stop encrypting data this way. Sorry.

  • Fold / Unfold functionality in ver. 7.7 is broken for me

    4
    0 Votes
    4 Posts
    778 Views
    3d1l3

    Peter using the defined language worked for me. Thank you very much.

    The JSON didn’t work, same problem and the search and replace… not that simple but anyways, as you suggested the user defined language solved the issue.

  • I want to make a really long list

    Locked
    6
    0 Votes
    6 Posts
    1k Views
    A DA

    @Alan-Kilborn the example wasn’t for a pattern I just assumed doing something like that was possible I guess I was looking for the principle of the answer not the exact answer to the particular numbers

  • Bitness from NppExec

    Locked
    3
    1 Votes
    3 Posts
    558 Views
    Michael VincentM

    @dinkumoil : Works great!

  • Bringing Find result window to front

    Locked
    14
    0 Votes
    14 Posts
    11k Views
    dinkumoilD

    @andrecool-68 said:

    It all depends on the localization of the operating system

    Off topic: That keyboard shortcuts depend on the OS locale is rather obvious. But Microsoft, in its great wisdom, even decided to make the order of the items in the dialog Folder Options -> (register) View -> Advanced Settings OS locale dependent as well. :-O

    In my job, I’m occasionally involved into 3rd level support via remote desktop on customer machines world wide. It’s really funny to try to turn on e.g. display of filename extensions when

    you can not read/understand the items in the list and you even can not count to the item in question on your own machine in order to find the correct item on the customer’s machine.
  • Is it possible to change save as shortcut?

    Locked
    3
    0 Votes
    3 Posts
    1k Views
    Eugene SavitskyE

    O! Tnx!!!

  • Update to 7.7 ver and missed ASP code style

    Locked
    2
  • Plugins Admin not installing plugins

    Locked
    4
    1 Votes
    4 Posts
    3k Views
    Meta ChuhM

    welcome to the notepad++ community, @Darren-Wogan and thank you for your detailed information, including your debug info.

    However! … run as admin and set the proxy and retried and all of a sudden the new Plugins admin is working. Sure I tried this before without success, but its working now.

    this is what i would have asked, if you wouldn’t have found it yourself already 😉👍

    yes you are correct, and this is the most frequent hurdle for proxy users.
    notepad++ has to be run as administrator, to set the proxy.
    if it isn’t in administrator mode, at the time of setting the proxy, it will not give you any warning, but it will not be able to set the proxy.

    sorry for the inconvenience and best regards.

  • 0 Votes
    5 Posts
    2k Views
    Veyron BugattiV

    Ok. Thanks. Good luck.

  • Non Working Jumplist

    4
    0 Votes
    4 Posts
    1k Views
    Kevin SternK

    I just discovered if I pin from Notepad++ it doesn’t work. if I drag and drop onto Notepadd++ and pin it that way, it now works fine. Very odd.

  • 1 Votes
    1 Posts
    417 Views
    No one has replied
  • Start browser URL with selected text?

    8
    1 Votes
    8 Posts
    973 Views
    David-PatowD

    Thanks, Everyone. I think I’ve got enough clues to start my journey. You’ve been most helpful.

  • Replace around 100 different variables with variables in 300+ files?

    Locked
    2
    0 Votes
    2 Posts
    455 Views
    Alan KilbornA

    @Rasmus-K said:

    around 100 variables are changing names

    There is no “batch” replacement capability in Notepad++. I don’t know of a plugin that does this, either. It is certainly something that could be scripted with a N++ scripting language, or you could take it “outside” N++ and use just about any programming language to do it.

  • Plugins are pulling from install directory in new version

    Locked
    1
    0 Votes
    1 Posts
    334 Views
    No one has replied
  • V7.7 - File too big error - even when opening 1KB files?

    Locked
    10
    0 Votes
    10 Posts
    1k Views
    PeterJonesP

    @Johan-Santen said:

    It’s unfortunate this forum doesn’t allow screenshots to be posted, how do I show you guys the error?

    Upload to an external image-hosting service like imgur.com, then embed the image using the syntax

    ![](http://i.imgur.com/QTHZysa.png)

    which will render as

    .

    (If you are using imgur, please make sure to use the “direct link”, which has the i.imgur.com hostname, and includes the .png or .gif or .jpg extension at the end; that is the actual image; if you use the https://imgur.com/QTHZysa-style link, it will try to imbed the HTML wrapper-page from imgur as an image in the forum, and that won’t work. Other image-hosting sites are probably similar.)

  • Replace part of an expression from a line, in many documents

    Locked
    2
    0 Votes
    2 Posts
    494 Views
    Meta ChuhM

    welcome to the notepad++ community, @George-RJ

    if you want to replace all digits, that match the pattern 1.23, open the replace window and enter the following:

    find what: (\d.\d\d)
    replace with: 0.01
    search mode: regular expression

    then either replace one by one, or hit replace all.

    note: if those numbers also exist on positions you don’t want to replace, and you want to explicitly replace spawn_rate entries only, please enter the following:

    find what: spawn_rate : (\d.\d\d)
    replace with: spawn_rate : 0.01
    search mode: regular expression

    ps: if regex isn’t too overwhelming in general, please have a look at this faq section on where to find some understandable regex documentation for beginners:
    https://notepad-plus-plus.org/community/topic/15765/faq-desk-where-to-find-regex-documentation

    best regards.