• How to connect Netezza with notepad++

    3
    -2 Votes
    3 Posts
    328 Views
    mkupperM

    @Udhaya-Bharathi-Kumar

    You wrote “How to connect NZ with notepad++.” Notepad++ is normally the client application and would connect with a server. NZ is normally a server that you connect to using clients. You want to do this backwards. Is your desire to control and use Notepad++ using NZ scripts?

    For me, step-by-step starts out with defining what it is that I want to do. I usually start out using pencil on paper to make drawing of a high level overview and then fill the gaps and details. Once I have a general idea of the goal I code up a simple user interface that’s mainly there to run test/debugging of the next phase which is the bottom layer details which I fully write and debug. I usually learn a lot about exceptions and oddities while coding the bottom later that needs to be taken into account when the middle or upper layers get structured.

    See bottom–up and top–down design on Wikipedia. I’m doing both top down and bottom up but with an emphasis on bottom up. I leave the middle layer that glues the top and bottom for last.

  • New Plugin: All Occurrence Selector

    1
    3 Votes
    1 Posts
    459 Views
    No one has replied
  • Save Plugin Button State

    3
    0 Votes
    3 Posts
    435 Views
    rdipardoR

    I said in Save Plugin Button State:

    If a certain plugin is not using it (or using it wrongly), that’s an issue for the plugin’s maintainer to resolve.

    The bug report is here, finally: https://github.com/nea/MarkdownViewerPlusPlus/issues/159

    In the meantime, just putting .dll after the plugin name will get it working, e.g.,

    <!-- <GUIConfig name="DockingManager" ... > --> <PluginDlg pluginName="MarkdownViewer++.dll" id="0" curr="1" prev="-1" isVisible="yes" /> <!-- </GUIConfig> -->
  • [Plugin update] Npp-Reverse-Text (32bit ported to 64bit)

    1
    2 Votes
    1 Posts
    344 Views
    No one has replied
  • 0 Votes
    4 Posts
    336 Views
    CoisesC

    @Mark-Olson said in determining how many capture groups there are programmatically:

    No, PythonScript uses Boost for editor.{research/rereplace}.

    Ah, I see. I can’t follow everything, but when I see:
    https://github.com/bruderstein/PythonScript/blob/master/PythonScript/src/UTF8Iterator.h
    it’s clear they’re taking a similar approach to what I’m doing… except it looks like they figured out how to define regex_traits for 32-bit Unicode characters without ICU. If I’m seeing what I think I’m seeing, then the PythonScript regular expression code interprets any Unicode code point as a single character, even if it is outside the Basic Multilingual Plane. (In Notepad++ search, non-BMP code points appear as two “characters” to regex, the high surrogate and the low surrogate.) Now I have another job… to see if I can grasp how they did it, and if I can, rewrite my utf8 iterator for about the sixth time…

    In any case, thanks for the thoughts, and sorry it’s been a bumpy road. What I’m doing is in C#, and it’s unclear to me whether that will make this task easier or harder than it’s been for you.

    If folks using your framework don’t care about using precisely the same regular expression language Notepad++ implements, they could probably use C# regular expressions; they’d have to copy the data to be searched to a buffer (translating to wide characters if it’s utf-8). I don’t know C# at all, but I get the impression you can’t template the regex classes like we do in C++, and hence wouldn’t be able to define a custom iterator, so using the Scintilla data “in place” wouldn’t be an option (at least for utf-8, unless C# has a built-in regular expression class for utf-8).

    To use the Boost regex language, I guess you’d have to do whatever is done in C# to call a set of C++ routines that could incorporate Boost regex… or just accept the limitations of using Scintilla commands (including no access to capture groups past 9, and no way to get the replacement string without actually doing a replacement).

  • [Plugin update] An alternative auto completion for notepad++

    16
    5 Votes
    16 Posts
    24k Views
    David-Maisonave 0D

    @jcaillon

    The above download link is to an old version. To keep the link pointing to the latest version you should replace the tag/VerNum with latest. Please edit your first followup post with below link.

    Download Latest Version here:
    https://github.com/jcaillon/3P/releases/latest

  • 0 Votes
    2 Posts
    481 Views
    PeterJonesP

    @Mario-Lemelin ,

    Did you “install” using the “mini-portable” minimalist zip file? If so, then it doesn’t install the Plugins Admin (see Online User Manual > Getting Started > Installing from 7z or Zip, which includes both normal portable and mini-portable descriptions).

    Are you running with -noPlugin command-line argument? If so, then it may have disabled Plugins Admin. (update: my experiments say that -noPlugin does not disable Plugins Admin)

    If that’s not the case, please share your ?-menu’s Debug Info.

  • getting pull request merged?

    3
    2 Votes
    3 Posts
    272 Views
    Michael VincentM

    @Alan-Kilborn said in getting pull request merged?:

    says this should have been done FIRST, but I don’t know if this has any bearing on lack of attention…

    @Geoff-Winkless I see you’ve now created an issue. Update your Pull Request description to include the text “Fix #49”. This will “link” the issue and pull request.

    Cheers.

  • function list: I made an XML for one liner HTML comments

    1
    2 Votes
    1 Posts
    214 Views
    No one has replied
  • Plugin idea for creating list structures with folding!

    Moved
    14
    1 Votes
    14 Posts
    1k Views
    Thomas KnoefelT

    @rdipardo Sorry for sneaking into this discussion, but I just whipped up a quick 5-minute example. While it’s a simple solution and might not cover all nuances, maybe it can serve as a starting point or a simple helper:

    Find what: (\d+)\.(\d+)\.(\d+)
    Replace with: cond(CAP1 > 0 and CAP2 == 0 and CAP3 == 0, MATCH, cond(CAP2 > 0 and CAP3 == 0, " " .. MATCH, " " .. MATCH))list structure.gif

    This example showcases how you can use multiple formatting combinations. Additionally, it’s worth noting that you can also set multiple formatting steps sequentially to achieve more complex patterns.

    Please note that this plugin will be rolled out with the next Notepad++ update. However, you can download it in advance here.
    As mentioned, it’s a quick workaround and might need refinements to handle all possible scenarios.

  • 0 Votes
    3 Posts
    398 Views
    CoisesC

    @PeterJones said in Dumb question time: compatible-versions and old-versions-compatibility — What am I missing?:

    at some indeterminate time in the future

    Thanks, @PeterJones. That pretty much explains why I couldn’t make sense of it: it’s not something that does anything useful now, just a guess at what might be useful in the future. I won’t worry much about it, then — guesses about what might be useful in the future have a high rate of irrelevance when the future arrives, no matter who is doing the guessing.

  • Is XPatherizerNPP Plugin abandonware?

    4
    0 Votes
    4 Posts
    1k Views
    gerdb42G

    @Mark-Olson
    I know XMLTools, I use it in parallel. But I think XPatherizerNPP is more useful with evaluating XPath expressions. XPatherizerNPP has some issues with out of memory exceptions when used with large XML files so I was looking for a x64 version. Maybe I can find some time to make a port of the original Plugin.

  • Need some help getting started.

    3
    0 Votes
    3 Posts
    355 Views
    rdipardoR

    If you’re referring to NotepadPlusPlusPluginPack.Net, it’s not “out of date”!

    Maybe @Zigy-WasTaken meant the age of the last stable release (0.94.00), from 2018. Even the 2021 “beta” release is now 40 commits behind the trunk, and there is still an unpatched issue affecting the binary compatibility of the ScNotification structure, whereby the Updated field seems to be getting clobbered by an out-of-bounds write.

    All things that capable .NET developers can fix on their own, of course, if they’re not turned off by the “some assembly required” caveat. But what is an absolute beginner supposed to do?

  • NppExec v0.8.7 has been released!

    1
    5 Votes
    1 Posts
    295 Views
    No one has replied
  • First menu item unexpectedly being called on startup

    13
    0 Votes
    13 Posts
    895 Views
    ThosRTannerT

    @rdipardo it’s not so much the ability to break/abuse it, it’s the fact that there is a correlation between the order of entries in your plugin menu and the docking dialogue(s) you can open from your plugin.

  • 0 Votes
    19 Posts
    1k Views
    guy038G

    Hello, @maverick-f-16c, @peterjones, @coises, @terry-r, @mark-olson and All,

    Ah… OK. If your two files have approximately 300K lines, my previous regex S/R won’t probably find nothing as it’s over the usual capacities of the Boost regex engine of Notepad++ !

    So, I would choose the @coises’s way, using the N++ sort to get the right results. I did not fully read the @coises’s method and I prefer start from scratch !

    So, let’s suppose we start with two files :

    File_1.txt : FFF = 79 K = 6 C = 4 A = 8 XXX = 7 H = 51 BB = 6 E = 0 GA = 339 J = 4 DZ = 9 II = 6 File_2.txt : E = 5 J = 0 FFF = 4 ZYX = 1 A = 0 II = 18 DZ = 2 K = 6 C = 17 H = 27

    Note that the records, in these two files, are randomly sorted, on purpose !

    As in my previous post, create a new File_3.txt with the contents of File_1.txt, a separation line of some @ chars then the contents of File_2.txt : FFF = 79 K = 6 C = 4 A = 8 XXX = 7 H = 51 BB = 6 E = 0 GA = 339 J = 4 DZ = 9 II = 6 @@@@@@@@@@@@@@@ E = 5 J = 0 FFF = 4 ZYX = 1 A = 0 II = 18 DZ = 2 K = 6 C = 17 H = 27

    Now, execute , successively, the two regex S/R, below :

    • SEARCH \x3D • REPLACE ( )\x3D

    Then :

    SEARCH (?-s)^.{40}\K\x20+

    REPLACE Leave it EMPTY

    Click only on the Replace All button

    You should get this OUTPUT :

    FFF = 79 K = 6 C = 4 A = 8 XXX = 7 H = 51 BB = 6 E = 0 GA = 339 J = 4 DZ = 9 II = 6 @@@@@@@@@@@@@@@ E = 5 J = 0 FFF = 4 ZYX = 1 A = 0 II = 18 DZ = 2 K = 6 C = 17 H = 27

    Then, move the caret on the first line, at column 25

    Select a 12×0 rectangular selection of all the records BEFORE the @@@@@@@@@@@@@@@ line

    Type in the A letter

    Select the column editor ( Alt + C )

    Select Number to Insert with all zones = 1, fill in with the 0 char and click on the OK button

    Then move to the first line, at column 25, AFTER the @@@@@@@@@@@@@@@ line

    Again do a 10×0 **rectangular selection of all the records AFTER the @@@@@@@@@@@@@@@ line

    Type in the B letter

    Select the column editor ( Alt + C )

    Select Number to Insert with all zones = 1, fill in with the 0 char and click on the OK button

    You should get this OUTPUT :

    FFF A01 = 79 K A02 = 6 C A03 = 4 A A04 = 8 XXX A05 = 7 H A06 = 51 BB A07 = 6 E A08 = 0 GA A09 = 339 J A10 = 4 DZ A11 = 9 II A12 = 6 @@@@@@@@@@@@@@@ E B01 = 5 J B02 = 0 FFF B03 = 4 ZYX B04 = 1 A B05 = 0 II B06 = 18 DZ B07 = 2 K B08 = 6 C B09 = 17 H B10 = 27 Now, perform a classical sort, using the Edit > Line Operations > Sort Lines Lexicographically Ascending option

    We get :

    @@@@@@@@@@@@@@@ A A04 = 8 A B05 = 0 BB A07 = 6 C A03 = 4 C B09 = 17 DZ A11 = 9 DZ B07 = 2 E A08 = 0 E B01 = 5 FFF A01 = 79 FFF B03 = 4 GA A09 = 339 H A06 = 51 H B10 = 27 II A12 = 6 II B06 = 18 J A10 = 4 J B02 = 0 K A02 = 6 K B08 = 6 XXX A05 = 7 ZYX B04 = 1 Delete the @@@@@@@@@@@@@@@ line

    Then, run the following regex S/R :

    SEARCH (?-s)^((\w+)\x20+A.+?)\d+(?=\R\2\x20+B.+=\x20+(\d+))

    REPLACE \1\3

    The OUTPUT is now changed as :

    A A04 = 0 A B05 = 0 BB A07 = 6 C A03 = 17 C B09 = 17 DZ A11 = 2 DZ B07 = 2 E A08 = 5 E B01 = 5 FFF A01 = 4 FFF B03 = 4 GA A09 = 339 H A06 = 27 H B10 = 27 II A12 = 18 II B06 = 18 J A10 = 0 J B02 = 0 K A02 = 6 K B08 = 6 XXX A05 = 7 ZYX B04 = 1

    Note : As you can see, due to the previous sort, the search regex just need to find, each time, two consecutive lines of the form :

    ABCD A#1 = xxx ABCD B#2 = yyy

    Which begin with the same value ABCD and replace the xxx value by the yyy value. This explains why this solution should work with huge files, without any problem !

    Now, move again the cursor on the first line, at column 25

    Perform a 22×0 ( or 22×3 ) rectangular selection of all the records

    Once more, use the Edit > Line Operations > Sort Lines Lexicographically Ascending option

    We get :

    FFF A01 = 4 K A02 = 6 C A03 = 17 A A04 = 0 XXX A05 = 7 H A06 = 27 BB A07 = 6 E A08 = 5 GA A09 = 339 J A10 = 0 DZ A11 = 2 II A12 = 18 E B01 = 5 J B02 = 0 FFF B03 = 4 ZYX B04 = 1 A B05 = 0 II B06 = 18 DZ B07 = 2 K B08 = 6 C B09 = 17 H B10 = 27

    Finally, use this regex S/R, to get, in File_3.txt, the updated values of File_1.txt ( from File_2.txt )

    SEARCH (?-is)\x20+(A)\d+\x20+|^.+\x20B(?s).+

    REPLACE ?1\x20

    FFF = 4 K = 6 C = 17 A = 0 XXX = 7 H = 27 BB = 6 E = 5 GA = 339 J = 0 DZ = 2 II = 18

    Notes :

    As you can verify, the order of the lines, in File_3.txt, is identical to the initial order of these lines in File_1.txt

    The records, present in File_1.txt and not in File_2.txt, are not changed

    The records, present in File_2.txt and not in File_1.txt, are not added, either

    Again, this solution should work in all cases, even with files with million of lines !

    Best Regards,

    guy038

  • Unable to run notepad++ with debug mode (for testing plugin)

    9
    0 Votes
    9 Posts
    751 Views
    ahmoy lawA

    Hi Plugin Community,

    I have managed to test my plugin using notepad++ old version 7.8.9.

    Thanks,
    Ahmoy Law

  • How to use plugin in notepadd++

    7
    0 Votes
    7 Posts
    654 Views
    Mohamed MohamedM

    @PeterJones Ok thanks.

  • PSA: BracketCheck and CSS

    2
    0 Votes
    2 Posts
    248 Views
    PeterJonesP

    @JustAnother-GoogleHater said in PSA: BracketCheck and CSS:

    The BracketCheck

    Do you mean the BracketsCheck plugin?

    I’ve never used it or installed it, so I don’t know what it’s capabilities are or are not.

    However, the latest in Plugins Admin is only v1.2.2, whereas the plugin’s Releases page currently lists v1.2.3 as the newest. You might want to try installing the newest copy from the plugin’s Releases page, to see if it’s already fixed your problem.

    If it still doesn’t behave the way you want, I would suggest checking the plugin’s issues, and if your issue hasn’t been reported by someone else, create a new issue there.

    Because while maybe someone here in the forum knows enough to be able to help you (though I don’t remember people mentioning it recently), if they can confirm it’s truly a bug or missing feature, that plugin’s developer will need to be the one to be notified, not us fellow Notepad++ Users.

  • Breakpoints disabled in release mode

    3
    1 Votes
    3 Posts
    494 Views
    CoisesC

    @Alan-Kilborn said in Breakpoints disabled in release mode:

    I’d run in Debug build mode, but there are some assertions that fire when I have certain data in a Scintilla editing window, and these “get in the way” of what I’m trying to debug.

    If you right-click the Notepad++ project in the Solution Explorer pane and select Properties, under Linker there is a Debugging page. Select the Release configuration and change Generate Debug Info to “Generate Debug Information (/DEBUG)”; that should let you compile as for release, but with symbols. Just remember not to commit the changes to the .sln file.