• Ruby Blue my GOD thank you

    Locked
    1
    1 Votes
    1 Posts
    495 Views
    No one has replied
  • File Versions are incorrect at 7.6.4+

    Locked
    3
    0 Votes
    3 Posts
    627 Views
    Meta ChuhM

    welcome to the notepad++ community, @KryptykHermit

    this has almost always been like that (except faulty versioning versions 7.6.1 to 7.6.3)
    file version will be 7.x.x.x
    product version will be 7.xx

    this product version scheme M.mm is also what the auto updater and the notepad++ update servers expect.

    if you have written your script based on 7.6.1 to 7.6.3, you will have to modify them accordingly.

  • User Defined Language - Keywords

    Locked
    9
    0 Votes
    9 Posts
    2k Views
    Randy DiCottiR

    Made a $10.00 donation to the project. Thanks again for the help

  • Open file list *.ext to list files (7.5.4) behavior

    Locked
    3
    0 Votes
    3 Posts
    798 Views
    gittyup2018G

    Thank you now it works as expected…interesting that the setting is called new behavior when it is actually old behavior, but whatever happy it works, I would have never found that so thanks again!

  • Request: improved colorizing functions

    Locked
    2
    0 Votes
    2 Posts
    918 Views
    Meta ChuhM

    welcome to the notepad++ community, @Alex-C

    rainbow brackets (colour coded nested brackets) will currently not be implemented in notepad++, due to limitations of the scintilla component, which it depends on.

    rainbow brackets could be done with external plugins, overriding the internal lexer, but as far as i know of, no plugin that is capable to add rainbow brackets to notepad++ exists at the moment.

    note: rainbow brackets could also be done with scripting plugins, like pythonscript, to some extent, but i’ve not been able to find any existing, working scripts yet either.

    my apologies and best regards.

  • How to setup notepadpp with my FTP

    Locked
    3
    0 Votes
    3 Posts
    2k Views
    Kenneth AlgerK

    Meta, Thank you very much, you made my day:)
    Cheers,
    Ken

  • TextFX Plugin Completely Missing

    Locked
    12
    0 Votes
    12 Posts
    30k Views
    Glen FordG

    I found the same issue with NP++ 64 bit. TextFX, which I use a lot, is not available on 64 bit.
    My solution was to go back to the 32 bit version which still has TextFX in the admin list as an available addon.

  • Python lexer for matrix multiply operator

    Locked
    4
    2 Votes
    4 Posts
    701 Views
    Meta ChuhM

    @Alan-Kilborn

    from what i’ve found out so far, this @ prefix highlighting as decorator “would” be fixed since scintilla 3.7.3.
    but notepad++ uses a scintilla base version 3.5.6. with custom modifications.

  • Problemas al desencriptar un archivo encriptado con plugin NppCrypt

    Locked
    7
    0 Votes
    7 Posts
    1k Views
    Meta ChuhM

    ps: loool … like triplets simultaneously saying the same 😂

  • 7.6.6 no longer notifies when several open files need to be reloaded

    Locked
    5
    0 Votes
    5 Posts
    821 Views
    John KallaJ

    Makes total sense! I’m glad it’s an option!

  • Notepad++ 7.6 and the plugin TextFX ?

    31
    0 Votes
    31 Posts
    55k Views
    David LeighD

    The folder solution helped me and also for the “RunMe” plugin. It had also disappeared and after creating its folder and putting the dll in it, it reappeared! Thank you!

  • UDL > Delimiters > (EOL Space Operator)

    Locked
    9
    0 Votes
    9 Posts
    3k Views
    EkopalypseE

    :-D LOL

  • Notepad++ Failed to Start after Windows 10 Updates (Ninite)

    13
    2 Votes
    13 Posts
    7k Views
    Galahan_G

    The hdd format fixed the issue.

  • Changing default directory

    Locked
    4
    0 Votes
    4 Posts
    4k Views
    padreP

    Thanks. I seem to have it working now.

  • How to find two or more non-consecutive tabs in a line?

    21
    1 Votes
    21 Posts
    4k Views
    guy038G

    Hi, @glossar, @alan-kilborn, @meta-chuh, @peterjones and All,

    Fundamentally, the new Alan’s solution and mine give the same right results, i.e. to match any non-empty line which does not contain a tabulation character !

    By the way, we, both, forget to add the leading in-line-modifier (?-s) to be sure that, even you previously ticked the . matches newline option, the regex engine will suppose that any . char does match a single standard character, only !

    So, our two solutions should be :

    Alan : (?-s)^((?!\t).)+$

    Guy : (?-s)(?!.*\t)^.+

    However, note that the logic, underlying these 2 regular expressions, is a bit different :

    In the Alan’s regex, from beginning of line ( ^ ), the regex engine matches for one or more standard characters, till the end of line ( $ ), ONLY IF each standard character encountered is not a tabulation character, due to the negative look-ahead (?!\t), located right before the . regex character

    In the Guy’s regex, the regex engine matches for all the standard characters of a line, ( ^.+ ), ONLY IF ( implicitly at beginning of line ) it cannot find a tabulation character further on, at any position of current line, due to the negative look-ahead (?!.*\t)

    I did a test with a file of 2,500,000 lines, half of which contained 1 tabulation character and, clearly, the Alan’s version is faster ! ( 2 mn 15 s for Alan instead of 5mn for my version )

    BR

    guy038

  • Notepad++ no longer reliable!

    Locked
    5
    0 Votes
    5 Posts
    1k Views
    Alan KilbornA

    @gstavi said:

    Notepad++ is a BAD tool for notes

    Wha…? I think N++ is a GREAT tool for taking notes… :)

    @Meta-Chuh said:

    sounds like the tape of a banking help-line

    Please know that your call is important to us…please stay on the line…(45 seconds pass)…Please know that your call is important to us…please stay on the line…(45 seconds pass)…Please know that your call is important to us…please stay on the line…(45 seconds pass)…Please know that your call is important to us…please stay on the line…(45 seconds pass)…Please know that your call is important to us…please stay on the line…(45 seconds pass)…

  • 0 Votes
    9 Posts
    2k Views
    Meta ChuhM

    @guy038

    you are absolutely correct.

    this happened due to posting inline code in between ` characters.
    please press edit on my post and you will see three spaces instead of one when copying the line.

    good to know that we must avoid inline coding when posting more than one whitespace, thanks for making me have a look at that 👍
    (maybe this happened in the past as well to others, and was the reason why users could not achieve the same, verified results as we do, making us wonder why)

    apparently this is a limitation of nodebb not rendering nbsp’s on the canvas when using inline span of code highlighting.

    original sample code:

    before: abc123ABC123+#*123 123 after: ab12AB12+#12 12

    ps: my apologies, from now on i will re-copy-paste from a post back to notepad++ to verify a successful, reproducible experience for the op.

  • Problem with COBOL program

    Locked
    7
    0 Votes
    7 Posts
    2k Views
    Meta ChuhM

    @PaoloRicardo

    It seems to have been an isolated incident.

    eventually bookmark this topic if you continue using notepad++ for cobol, so if it ever happens again, you can quickly crosscheck with the portable version from above and peter’s information.

    best regards

  • Strikethrough feature

    Locked
    5
    0 Votes
    5 Posts
    28k Views
    EkopalypseE

    @Chris-Overland

    in addition you could use the builtin UDL feature to define a user define language like
    for example such a simple one
    Define an unique file extension and every time you open such a file it tries to color it.

  • Jumplist empty after upgrade from 7.6.3 to 7.6.5

    Locked
    12
    0 Votes
    12 Posts
    4k Views
    Sverre TS

    Thx a lot for your advise and useful and to the point helpful descriptions.

    Of course the easy strategy is to stick to current 7.6.3 32 bit forever (which works fine). But I believe this upgrade/jumplist problem is due to the mentioned win7/win10 recent upgrade. For example, I was not able to install the jumplist plugin, I could not upgrade another (no errors displayed), I also tried the
    ? -> upgrade

    menu option. But nothing happened. So I can live with creating the jumplist from scratch - the reported problem however did not show any recent files from taskbar icon and hence could not pin any files at all using the windows built in.

    I will try the following

    Uninstall current 7.6.3 Reinstall the x64 most recent one Try the plugin manager to see if it works Adapt the config that suits my need.

    If I’m not happy I once again revert using win restore… I am pretty dependent on this component of windows and text files are an important file src