• [Plugin Update] Elastic Tabstops v1.1

    Locked
    1
    2 Votes
    1 Posts
    2k Views
    No one has replied
  • 0 Votes
    5 Posts
    4k Views
    Thunder TT

    Thanks for your reply. I thought that it’s not easy to implement this feature; I thought of sending this post after I’ve installed several plugins (mostly old) and Notepad++ crashed the next time I launched it and I couldn’t figure out which plugin caused the crash. though I solved the problem later.

  • SnippetPlus not showing new snippets until restart.

    Locked
    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • graph plug in

    Locked
    2
    0 Votes
    2 Posts
    3k Views
    dailD

    Not as far as I know. Honestly, you are probably better off using an actual spreadsheet program.

  • [Plugin update] XMLTools 2.4.7

    7
    1 Votes
    7 Posts
    104k Views
    dailD

    @Nick-C Because this post is from over a year ago when 64-bit notepad++ was not even available. Check out this post from 6 days ago.

  • Advanced Syntax Highlighting

    Locked
    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • A lot of confusion on my head :)

    2
    0 Votes
    2 Posts
    2k Views
    pnedevP

    About ComparePlugin:

    The “unofficial” 1.5.6.8 is actually not that unofficial but is rather a development version that is fully functional and is available in x86 and x64 variant. I’ll soon release it “officially” as version 2.0.0.0 but before that there are a few more issues I’d like to fix.
    You can get the current development version from https://github.com/jsleroy/compare-plugin
    through the AppVeyor build https://ci.appveyor.com/project/jsleroy/compare-plugin/history
    The library DLLs for the corresponding variant (x86 or x64) can be found here https://github.com/jsleroy/compare-plugin/tree/master/libs.

    BR

  • Get Scintilla HWND for an ILexer/syntax highlighter plugin

    Locked
    6
    0 Votes
    6 Posts
    4k Views
    dailD

    Ok. I just wanted to make sure you weren’t heading down a path you didn’t need to :). Under normal situations, an external lexer can be fully contained within a plugin.

  • Compare Bug

    5
    0 Votes
    5 Posts
    3k Views
    Michael TeubertM

    Resolved.

    I’ve tested the Compare Plugin Version 1.5.6.8 and the problem has been resolved. Works like a charm.

    Thanks All for the support.

  • Javascript debugger with Chrome Debugging Protocol

    Locked
    1
    1 Votes
    1 Posts
    4k Views
    No one has replied
  • PFE's find & extend selection

    3
    0 Votes
    3 Posts
    3k Views
    guy038G

    Hello Erik van der Vlugt

    You can easily simulate this functionality, by an appropriate regular expression :-))

    Two possibilities :

    If you want to select from cursor location till the next character, word, string or even regular expression matched, INcluded, just put the regex (?s).+?, before your search

    If you want to select from cursor location till the next character, word, string or even regular expression matched, EXcluded, just put the regex (?s).+?(?=, before your search and end this regex with a closing round bracket !

    Moreover :

    If your search is case insensitive, use, at the beginning, the in-line modifier (?si)

    If your search is case sensitive, use, at the beginning, the in-line modifier (?s-i)

    If your search looks for a whole word, only, add the \b syntax, just after your search

    So, let’s consider the contents of the N++ license.txt

    Move back at the very beginning of your file ( CTRL + Origin )

    Open the Find dialog ( CTRL + F )

    Select the Regular expression search mode

    Then, for instance :

    The regex (?si).+?License would match from cursor location, till the string License, included, whatever its case ( 15 matches )

    The regex (?s-i).+?(?=License) would match from cursor location, till the exact string License, excluded ( 6 matches )

    The regex (?si).+?License\b would match from cursor location, till the word License, included, whatever its case ( 10 matches )

    The regex (?s-i).+?(?=License\b) would match from cursor location, till the exact word License, excluded ( 5 matches )

    Of course, you regex can, also, be a regular expression, itself ! For instance, the regex ?si).+?Th[eo]se would match from cursor location till the word those or these, included, whatever its case !

    Notes :

    The (?s) modifier forces the regex engine to consider that the dot meta-character can match, absolutely, any character ( standard and EOL characters ). So the regex .+ can matches any non-null range of characters, even located on several lines.

    The question mark ?, placed after the syntax .+ ensures that the shortest range, between the cursor location and your own search expression, will be selected !

    The syntax (?=.....) is a positive look-ahead assertion. At cursor position, that condition must be true in order to valid the overall match, although this condition is NOT a part of the final regex to match !

    IMPORTANT :

    For keeping this Find and Select behaviour, just close the Find dialog, with the ESC key, and go on, hitting the F3 key, for matching the other occurrences !

    The very nice thing is that you just select the previous range(s), if you hit the SHIFT + F3 shortcut !

    Best Regards,

    guy038

  • 0 Votes
    2 Posts
    3k Views
    Claudia FrankC

    @Joseph-Fisher
    Natively, I don’t think so and I’m not aware that there is a plugin available
    which might do this. Npp is not really a word processor.
    In theory, a python or lua script might be able to do what you want but therefore
    we would need more information what exactly is needed and what is provided.

    Cheers
    Claudia

  • Plugin development with Delphi xe10

    2
    0 Votes
    2 Posts
    3k Views
    Claudia FrankC

    @Werner-Vogt

    maybe you encountered the same issue?

    Cheers
    Claudia

  • Autosave development request

    13
    0 Votes
    13 Posts
    10k Views
    decodermanD

    @Franco-Stellari Last time I checked I only had the double new 1 file problem when Autosave is enabled.
    I’ll try the TakeNotes plugin, sounds what I needed for a long time. Thanks

    Regarding the deactivation: If you use the installer, NPP deems your plugin as not stable (and says so) and will move it to the disabled folder. Sad but true.

  • Indent by Fold - installation failed

    Locked
    1
    0 Votes
    1 Posts
    10k Views
    No one has replied
  • ftp plugin

    Locked
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • Older Notepad++ versions had "Print All" plugin.

    Locked
    5
    0 Votes
    5 Posts
    5k Views
    Joseph FisherJ

    Well, that was at least part of the problem.

    It seems as if the “Plugin Manager” is not part of the 64-bit version, but it IS part, and displaying properly, as part of the 32-bit version.

    I will attempt to test printing of these documents… But, because of the storm here in Florida, it may need to wait until I’m actually back in the office… :P

  • Suggestion for 64 bit plugin naming convention

    3
    3 Votes
    3 Posts
    2k Views
    botman99B

    Putting them in a separate folder would be fine, but there is still confusion just looking at the filename to tell if they are 32 bit or 64 bit executables. You can’t even right click on the file and look at the properties to see if it’s 32 bit or 64 bit.

  • 1 Votes
    6 Posts
    4k Views
    dailD

    AFAIK that URL is the only way to register new plugins. And then you have to wait for months ;)

  • Duplicate phrases

    9
    0 Votes
    9 Posts
    5k Views
    Peter XP

    Okay, thanks, time to make it! :D No, really it would be really usefull if you can see all the dups sentences without user any action at start and know if there are some other existences of the same phrases. The ability to check dups in other text editors just check the whole rows but it’s bad because if you have some small diference at start of the line and then you have the duplicated sentence behind that, program will not notice that as dup and it doesn’t find anything.