• Login
Community
  • Login

Multi-cursor editing

Scheduled Pinned Locked Moved Help wanted · · · – – – · · ·
53 Posts 8 Posters 8.3k Views
Loading More Posts
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • P
    PeterJones @PeterJones
    last edited by PeterJones Mar 27, 2020, 11:58 PM Mar 27, 2020, 11:55 PM

    @PeterJones said in Multi-cursor editing:

    That is not a complicated regex to develop

    Re-reading that statement some time later, I feel I should explain:

    I wasn’t try to say, “it’s easy, and you’re an idiot if you couldn’t figure it out” – not at all. Regex is a very powerful tool, and it’s hard to be an expert in it. I am far from an expert, and learn new regex thought processes and tactics from others of the regulars in this forum on a daily basis.

    What I meant was, “compared to some of the regexes I’ve seen, even in this forum, it’s not a complicated one with lots of conditionals and resets and assertions”.

    When I developed this regex for you, I basically said to myself: “the goal is to look for a particular word as the only component of a first line, then grab that and the next two lines into about three storage groups (one per line); in the replacement, use those groups, and put the F200 and F1000 at the end of the second and third lines”. I then translated those English phrases into the regex “phrases” I am comfortable with.

    While doing that translation from mental algorithm to regex syntax, I realized I needed to treat the newline that came after the second line separately from the rest of the second line (because I want to put something between the second line and its newline sequence); since I had to match it separately, I put it into a separate group, so that I wouldn’t have to guess whether your document used Windows or Linux newline sequences in the replacement; I also realized I don’t really need to do anything about the newline on the third line, so I don’t need to capture it at all (it has the side benefit of meaning that whether your file ends on the third line, or there’s a newline and another single or thousand or indeterminate lines after, it will work).

    The best way I find to develop a regex is to break down my requirements into simple chunks; if those chunks require nothing more than pattern matching and memory, it’s usually straightforward to translate into a regex. If those chunks use words like “add 5” or “add N” or “insert random number”, then I realize I need a full programming language rather than just regex.

    If you can express a problem in those terms, then even if you don’t know all the regex syntax to do it, usually a person with more regex experience can help you with that. And that’s what we often do here (even though regex are not the primary purpose for the existence of this forum). And if the regex I suggest doesn’t work exactly, show us a better example of the text, which includes more edge cases, and examples of things that should and shouldn’t change, and show us the before and after, and we can usually muddle through it – especially if you’re showing effort.

    ----

    Do you want regex search/replace help? Then please be patient and polite, show some effort, and be willing to learn; answer questions and requests for clarification that are made of you. All example text should be marked as plain text using the </> toolbar button or manual Markdown syntax; screenshots can be pasted from the clipbpard to your post using Ctrl+V. Show the data you have and the text you want to get from that data; include examples of things that should match and be transformed, and things that don’t match and should be left alone; show edge cases and make sure you examples are as varied as your real data. Show the regex you already tried, and why you thought it should work; tell us what’s wrong with what you do get… Read the official NPP Searching / Regex docs and the forum’s Regular Expression FAQ. If you follow these guidelines, you’re much more likely to get helpful replies that solve your problem in the shortest number of tries.

    1 Reply Last reply Reply Quote 0
    • C
      czmaniak
      last edited by Mar 28, 2020, 6:01 PM

      Regex is something new for me that I have no experience with, I do not know where to write text with commands, where to start? My English is not so good it can also be a bit of a problem. I’ll try to look at the forum content for more information.

      Thank you very much for your time and effort to explain this issue to me. I appreciate it really much

      A E 2 Replies Last reply Mar 28, 2020, 6:29 PM Reply Quote 0
      • A
        Alan Kilborn @czmaniak
        last edited by Mar 28, 2020, 6:29 PM

        After all the back and forth above, I’ve sort of changed my mind. I think that the way the OP wants to go about this is very reasonable, without using search-and-replace. The scenario is rather rare, but for where text is very regular before or after the original search is conducted…I can see it.

        1 Reply Last reply Reply Quote 0
        • E
          Ekopalypse @czmaniak
          last edited by Mar 28, 2020, 7:37 PM

          @czmaniak

          If I understand this correctly, then one, non-plugin way would be,
          to press and hold the CTRL button and click with the mouse on the
          respective places.

          A 1 Reply Last reply Mar 28, 2020, 7:49 PM Reply Quote 1
          • A
            Alan Kilborn @Ekopalypse
            last edited by Mar 28, 2020, 7:49 PM

            @Ekopalypse said in Multi-cursor editing:

            If I understand this correctly, then one, non-plugin way would be,
            to press and hold the CTRL button and click with the mouse on the
            respective places.

            True, but I get the feeling we are talking about hundreds of such places, potentially, which makes that problematic.

            E 1 Reply Last reply Mar 28, 2020, 7:57 PM Reply Quote 2
            • E
              Ekopalypse @Alan Kilborn
              last edited by Mar 28, 2020, 7:57 PM

              @Alan-Kilborn
              I assume so too.
              I do have a little PS script for selecting all same words

              from Npp import editor
              first_line = editor.getFirstVisibleLine()
              editor.setTarget(0, editor.getTextLength())
              editor.multipleSelectAddEach()
              editor.rotateSelection()
              editor.setFirstVisibleLine(first_line)
              
              1 Reply Last reply Reply Quote 2
              • E
                Ekopalypse
                last edited by Mar 28, 2020, 8:02 PM

                In case someone is trying this.
                If no word is selected the first execution would select the current word
                and the next execution all others.

                A 1 Reply Last reply Mar 28, 2020, 8:22 PM Reply Quote 0
                • A
                  Alan Kilborn @Ekopalypse
                  last edited by Mar 28, 2020, 8:22 PM

                  @Ekopalypse

                  Yes, this (or a variant which included a search) would get all of the carets in the correct place, but from there the OP’s desire is to be able to move all of the carets in junction to a constants offset from that point, and which point insertion/deletion would commence. At least this is what I gather from watching the OP’s video. And if I try something like that after running your script, all but one of the carets is removed as soon as I do the first cursor movement operation. I expected this.

                  But I also respect the OP’s desire for something like this to be possible.

                  1 Reply Last reply Reply Quote 1
                  • A
                    astrosofista
                    last edited by Mar 28, 2020, 9:11 PM

                    @Alan-Kilborn said in Multi-cursor editing:

                    Yes, this (or a variant which included a search) would get all of the carets in the correct place, but from there the OP’s desire is to be able to move all of the carets in junction to a constants offset from that point, and which point insertion/deletion would commence. At least this is what I gather from watching the OP’s video. And if I try something like that after running your script, all but one of the carets is removed as soon as I do the first cursor movement operation. I expected this.

                    Hi @Alan-Kilborn, @Ekopalypse, All:

                    As I understand, Ekopalypse’s script in conjunction with the BetterMultiSelection plugin provide an interesting approach if not an actual solution to OP’s request.

                    Take a look to how I can resolve the sample that Op posted before in this thread:

                    giphy

                    If needed, I can post the commands used to move the caret in the above embedded gif.

                    E 1 Reply Last reply Mar 28, 2020, 10:07 PM Reply Quote 4
                    • E
                      Ekopalypse @astrosofista
                      last edited by Mar 28, 2020, 10:07 PM

                      @Alan-Kilborn, @astrosofista

                      I watched the youtube video and it looks like you can do this
                      with my script.
                      You do get multiple selection and those will move when using the arrow keys.
                      What do I miss??

                      A 1 Reply Last reply Mar 28, 2020, 10:14 PM Reply Quote 0
                      • A
                        astrosofista @Ekopalypse
                        last edited by Mar 28, 2020, 10:14 PM

                        @Ekopalypse said in Multi-cursor editing:

                        You do get multiple selection and those will move when using the arrow keys.
                        What do I miss??

                        @Ekopalypse

                        You need to check the Multi-Selection option in Preferences and install the BetterMultiSelection plugin.

                        E 1 Reply Last reply Mar 28, 2020, 10:15 PM Reply Quote 1
                        • E
                          Ekopalypse @astrosofista
                          last edited by Mar 28, 2020, 10:15 PM

                          @astrosofista

                          thx, but I can already do what your gif shows without having BetterMultiSelection installed just by using my script.

                          A A 2 Replies Last reply Mar 28, 2020, 10:28 PM Reply Quote 1
                          • A
                            Alan Kilborn @Ekopalypse
                            last edited by Mar 28, 2020, 10:28 PM

                            @Ekopalypse

                            You do get multiple selection and those will move when using the arrow keys.

                            Well, I’ve never had much luck with doing that in a “real” way. A real way would be a real problem I’m working on.

                            BTW, I like futzing around with Notepad++ and its peculiarities, but it gets frustrating fast when you are trying to do something “real” and you run into Notepad++'s bugs. :-)

                            1 Reply Last reply Reply Quote 0
                            • E
                              Ekopalypse
                              last edited by Mar 28, 2020, 10:29 PM

                              this is how it looks like on my PC

                              1 Reply Last reply Reply Quote 3
                              • A
                                astrosofista @Ekopalypse
                                last edited by Mar 28, 2020, 10:59 PM

                                @Ekopalypse said in Multi-cursor editing:

                                thx, but I can already do what your gif shows without having BetterMultiSelection installed just by using my script.

                                @Ekopalypse

                                You are right. I disabled the plugin and your script does all the work and OP should pay close attention to it.

                                Anyway I still believe that the conjuntion of both the plugin and your script creates a better tool. The plugin works nice with contiguous selections, which it can create by draging, and your script extend its capabilities to make distant selections. I thank you for it.

                                By the way, have you plans to make the plugin able to search for partial words? At first glance looks like a nice addition.

                                Disclaimer: I am not related in any way with the mentioned plugin, just a happy user.

                                E 1 Reply Last reply Mar 28, 2020, 11:05 PM Reply Quote 2
                                • E
                                  Ekopalypse @astrosofista
                                  last edited by Mar 28, 2020, 11:05 PM

                                  @astrosofista said in Multi-cursor editing:

                                  Anyway I still believe that the conjuntion of both the plugin and your script creates a better tool.

                                  Can be the case absolutely, @dail does a great job with all of his plugins. :-)

                                  By the way, have you plans to make the plugin able to search for partial words? At first glance looks like a nice addition.

                                  Just select the part of the word you are interest in and it should respect it already. This is a scintilla feature not really my work.

                                  D A 2 Replies Last reply Mar 28, 2020, 11:08 PM Reply Quote 3
                                  • D
                                    dail @Ekopalypse
                                    last edited by Mar 28, 2020, 11:08 PM

                                    @Ekopalypse I use BetterMultiSelection in conjunction with LuaScript to select multiple instances and then edit them simultaneously…works quite nicely.

                                    E M 2 Replies Last reply Mar 28, 2020, 11:10 PM Reply Quote 2
                                    • E
                                      Ekopalypse @dail
                                      last edited by Mar 28, 2020, 11:10 PM

                                      @dail

                                      I have no doubt that this works great. :-)

                                      1 Reply Last reply Reply Quote 1
                                      • A
                                        astrosofista @Ekopalypse
                                        last edited by Mar 28, 2020, 11:48 PM

                                        @Ekopalypse said in Multi-cursor editing:

                                        Just select the part of the word you are interest in and it should respect it already. This is a scintilla feature not really my work.

                                        Yes, it works fine… almost all the time. In one of my tests Notepad++ ceased to respond and have to quit it via the taskbar.

                                        Better stop for today.

                                        E 1 Reply Last reply Mar 30, 2020, 11:19 AM Reply Quote 2
                                        • G
                                          guy038
                                          last edited by guy038 Mar 29, 2020, 9:17 PM Mar 29, 2020, 9:05 PM

                                          Hello, @czmaniak, @alan-kilobrn, @peterjones, @ekopalypse, @astrosofista,

                                          In that discussion, I suppose that the Multi-Editing option is enabled, in >Settings > Preferences... > Editing and that the BetterMultiSelection and PythonScript plugins are both installed, in your N++ configuration !


                                          It may be worth to note that, by default, in Notepad++, the multiple cursors editing feature behave differently from the column mode editing and that it is identical only if you install and enable the Better MultiSelection plugin of @dail !

                                          For instance, assuming the five lines, below, the BetterMultiSelection not enabled and the Python script not used :

                                          12 56498><717 5123 131
                                          21 78483><000 0456 235
                                          16 89410><575 5156 464
                                          97 89411><056 6045 454
                                          01 25822><644 8970 544
                                          

                                          If you create a zero-length column selection, through these five lines, between the > and < chars, you’re able to
                                          type in some chars, even tabulations and/or spaces and you may delete few chars, with the backspace or the Delete key.

                                          However, as soon as you want to use, for instance, the right arrow key or the Ctrl + Left shortcut, the Home or End key and even the Enter key, these commands do not act for all the lines of the column selection


                                          Now, click between the > and < chars of the first line. Then, holding down a Ctrl key, click, at the same location, for line 2 to 5. The screen seems similar to before but, this time, we get, I would say, something like a 5 one-line column selection ( instead a 1 five-line column selection ) !

                                          Therefore, the use of the arrow keys, shortcuts involving arrow keys, the the Home, End key and Enter key correctly act as expected ;-))

                                          The good news is that IF you enable the BetterMultiselection @Dail’s plugin, from within N++, you can, use this enhanced behaviour, too, when creating a classical column selection ;-))


                                          Obviously, the @ekopalypse’s python script does not create a column selection but, indeed, places individual cursors on every line, containing a specific word. This explains why if we use the @ekopalypse’s python script, below, we do not need the BetterMultiSeelection, in conjunction !

                                          from Npp import editor
                                          first_line = editor.getFirstVisibleLine()
                                          editor.setTarget(0, editor.getTextLength())
                                          editor.multipleSelectAddEach()
                                          editor.rotateSelection()
                                          editor.setFirstVisibleLine(first_line)
                                          

                                          Of course, this script solution seems more flexible, because it places all the cursors at the end of a specific selected word, so, not necessarily at the same column, in each line !


                                          Now, and a bit off-topic, I would like some information from Python guru’s people ;-))

                                          In order to realize this post, I decided to install, manually, on my portable N++ v7.8.5 release, the last V1.5.3 version of the PythonScript plugin, from :

                                          https://github.com/bruderstein/PythonScript/releases

                                          • First, I did not know to choose between the PythonScript_Full_1.5.3.0.zip and the PythonScript_Full_1.5.3.0_PluginAdmin.zip archives ! After downloading the two archives, I just realized that they were strictly identical and, also, verified, with WinMerge, that their contents were the same !? So what ?

                                          • Then I created, as usual, a PythonScript sub-folder, in the Plugins folder

                                          • Opening the archive PythonScript_Full_1.5.3.0.zip, I noticed that the two dll Python27.dll and PythonScript were at the same level. So, I supposed that, from now on, the Python27.dll file wasn’t anymore along with the Notepad++.exe file

                                          • Therefore, I just extracted all the contents of the archive in the PythonScript sub-folder, that I just created

                                          • However, during N++ start-up, I got the message, in French :

                                          “This application could not start because python27.dll cannot be found. …”

                                          • Luckily, putting back the Python27.dll library, along with Notepad++.exe, everything is back to normal ;-)) And the consultation of the v1.5.3 documentation works just fine, too, from its new location !

                                          Best Regards,

                                          guy038

                                          A 2 Replies Last reply Mar 30, 2020, 12:10 AM Reply Quote 2
                                          16 out of 53
                                          • First post
                                            16/53
                                            Last post
                                          The Community of users of the Notepad++ text editor.
                                          Powered by NodeBB | Contributors