Repeating through lines in vim












7














I have some lines of text like this:



firstName
lastName
email


Now I add private readonly string to the start of the first line. How do I repeat this edit for the other lines? (not manually visiting each line of course) (BTW I do realize this could be done with a regex, but I'm looking for a "vi way" if possible)



Just in case, I'm using VsVim










share|improve this question



























    7














    I have some lines of text like this:



    firstName
    lastName
    email


    Now I add private readonly string to the start of the first line. How do I repeat this edit for the other lines? (not manually visiting each line of course) (BTW I do realize this could be done with a regex, but I'm looking for a "vi way" if possible)



    Just in case, I'm using VsVim










    share|improve this question

























      7












      7








      7


      1





      I have some lines of text like this:



      firstName
      lastName
      email


      Now I add private readonly string to the start of the first line. How do I repeat this edit for the other lines? (not manually visiting each line of course) (BTW I do realize this could be done with a regex, but I'm looking for a "vi way" if possible)



      Just in case, I'm using VsVim










      share|improve this question













      I have some lines of text like this:



      firstName
      lastName
      email


      Now I add private readonly string to the start of the first line. How do I repeat this edit for the other lines? (not manually visiting each line of course) (BTW I do realize this could be done with a regex, but I'm looking for a "vi way" if possible)



      Just in case, I'm using VsVim







      vim vi






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 11 '11 at 20:44









      Mauricio Scheffer

      586724




      586724






















          6 Answers
          6






          active

          oldest

          votes


















          7














          Navigate up to firstName in Normal mode and type



          qaIprivate readonly string <ESC>jq


          This will record the macro (in register a) of you adding "private readonly string " to the beginning of the line, then moving one line down. If you want to repeat this macro twice (thus repeating the command for the next two lines), in command mode type 2@a on the lastName line, which will execute the macro twice more.





          This method fulfills your requirement of "not manually visiting each line"; however it's a little heavyweight for your application.



          If it's the typing of private readonly string that you object to, a quick solution is to make your edit on the first line, then move down to each line you want to make the edit and use . in Normal mode. This will repeat your last command (in this case adding the text to the line) with no fuss.






          share|improve this answer























          • cool, I was actually looking for a way to repeat . but I guess it's not possible in this case...
            – Mauricio Scheffer
            Mar 11 '11 at 21:38










          • @muasch: Well, you can, you'd just use qa.jq as your macro (repeat command, then go one line down), and use 2@a to replay it. It's a little messy though.
            – Zeke
            Mar 11 '11 at 21:47












          • +1 The qa ... q macro is flexible and can solve a lot of problems, it's good to know. A little overkill for this question, but it will probably save you a lot of time in the future.
            – Johan
            Mar 17 '11 at 7:48



















          7














          Another way to do this is to using Visual Block mode:




          1. Start with your cursor at the beginning of the first line.

          2. Press Ctrl+v to enter Visual Block mode.

          3. Press j to move down, extending the selection to include the lines you want.

          4. Press I to go into (prepending) Insert mode.

          5. Type private readonly string.

          6. Press Esc. This will cause you to go back to command mode, and the text you typed will be repeated on each line before the start of your visual block selection (in this case, at the start of each line, since that's where you began the selection).






          share|improve this answer





















          • To extend the selection to every line in the file, step 1 could be gg and step 3 could be G0.
            – Dennis Williamson
            Mar 12 '11 at 1:24



















          6














          :normal is great (and shorter) too:





          :.,+2norm Iprivate readonly string 






          • .,+2 - from here to 2 two lines bellow (or you could select the lines using visual mode shift+v and then typing : to get into ex mode)


          • norm - type these commands as if I typed them in normal (command) mode


          • I(...) - insert the following string in the beginning of the line






          share|improve this answer























          • +1 did not know about :norm, it's quite nice
            – Johan
            Mar 17 '11 at 7:58



















          2














          Just type "private readonly string" at the first line. Then for the rest of the 2 lines type 2(dot character) like 2. from the second line.






          share|improve this answer





























            1














            Give this a try:



            :%s/^/private readonly string /


            I suppose you could write a script, but why?






            share|improve this answer





















            • sorry, I said I'm looking for a "vi way", not a regex. I already know regexes and I'm trying to learn vim.
              – Mauricio Scheffer
              Mar 11 '11 at 21:03



















            0














            For interactively doing this without much thought and preparation (in case you have already entered the text on the first line but you later notice that you need it on several lines):




            1. Insert the text as you would normally do using I in the first line.


            2. Turn on the visual mode by pressing v or V or <c-v>.


            3. Grab all the lines you want to apply the change. In this case, jj will do.


            4. Hit :norm . then enter.







            share|improve this answer





















              Your Answer








              StackExchange.ready(function() {
              var channelOptions = {
              tags: "".split(" "),
              id: "3"
              };
              initTagRenderer("".split(" "), "".split(" "), channelOptions);

              StackExchange.using("externalEditor", function() {
              // Have to fire editor after snippets, if snippets enabled
              if (StackExchange.settings.snippets.snippetsEnabled) {
              StackExchange.using("snippets", function() {
              createEditor();
              });
              }
              else {
              createEditor();
              }
              });

              function createEditor() {
              StackExchange.prepareEditor({
              heartbeatType: 'answer',
              autoActivateHeartbeat: false,
              convertImagesToLinks: true,
              noModals: true,
              showLowRepImageUploadWarning: true,
              reputationToPostImages: 10,
              bindNavPrevention: true,
              postfix: "",
              imageUploader: {
              brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
              contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
              allowUrls: true
              },
              onDemand: true,
              discardSelector: ".discard-answer"
              ,immediatelyShowMarkdownHelp:true
              });


              }
              });














              draft saved

              draft discarded


















              StackExchange.ready(
              function () {
              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f256461%2frepeating-through-lines-in-vim%23new-answer', 'question_page');
              }
              );

              Post as a guest















              Required, but never shown

























              6 Answers
              6






              active

              oldest

              votes








              6 Answers
              6






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes









              7














              Navigate up to firstName in Normal mode and type



              qaIprivate readonly string <ESC>jq


              This will record the macro (in register a) of you adding "private readonly string " to the beginning of the line, then moving one line down. If you want to repeat this macro twice (thus repeating the command for the next two lines), in command mode type 2@a on the lastName line, which will execute the macro twice more.





              This method fulfills your requirement of "not manually visiting each line"; however it's a little heavyweight for your application.



              If it's the typing of private readonly string that you object to, a quick solution is to make your edit on the first line, then move down to each line you want to make the edit and use . in Normal mode. This will repeat your last command (in this case adding the text to the line) with no fuss.






              share|improve this answer























              • cool, I was actually looking for a way to repeat . but I guess it's not possible in this case...
                – Mauricio Scheffer
                Mar 11 '11 at 21:38










              • @muasch: Well, you can, you'd just use qa.jq as your macro (repeat command, then go one line down), and use 2@a to replay it. It's a little messy though.
                – Zeke
                Mar 11 '11 at 21:47












              • +1 The qa ... q macro is flexible and can solve a lot of problems, it's good to know. A little overkill for this question, but it will probably save you a lot of time in the future.
                – Johan
                Mar 17 '11 at 7:48
















              7














              Navigate up to firstName in Normal mode and type



              qaIprivate readonly string <ESC>jq


              This will record the macro (in register a) of you adding "private readonly string " to the beginning of the line, then moving one line down. If you want to repeat this macro twice (thus repeating the command for the next two lines), in command mode type 2@a on the lastName line, which will execute the macro twice more.





              This method fulfills your requirement of "not manually visiting each line"; however it's a little heavyweight for your application.



              If it's the typing of private readonly string that you object to, a quick solution is to make your edit on the first line, then move down to each line you want to make the edit and use . in Normal mode. This will repeat your last command (in this case adding the text to the line) with no fuss.






              share|improve this answer























              • cool, I was actually looking for a way to repeat . but I guess it's not possible in this case...
                – Mauricio Scheffer
                Mar 11 '11 at 21:38










              • @muasch: Well, you can, you'd just use qa.jq as your macro (repeat command, then go one line down), and use 2@a to replay it. It's a little messy though.
                – Zeke
                Mar 11 '11 at 21:47












              • +1 The qa ... q macro is flexible and can solve a lot of problems, it's good to know. A little overkill for this question, but it will probably save you a lot of time in the future.
                – Johan
                Mar 17 '11 at 7:48














              7












              7








              7






              Navigate up to firstName in Normal mode and type



              qaIprivate readonly string <ESC>jq


              This will record the macro (in register a) of you adding "private readonly string " to the beginning of the line, then moving one line down. If you want to repeat this macro twice (thus repeating the command for the next two lines), in command mode type 2@a on the lastName line, which will execute the macro twice more.





              This method fulfills your requirement of "not manually visiting each line"; however it's a little heavyweight for your application.



              If it's the typing of private readonly string that you object to, a quick solution is to make your edit on the first line, then move down to each line you want to make the edit and use . in Normal mode. This will repeat your last command (in this case adding the text to the line) with no fuss.






              share|improve this answer














              Navigate up to firstName in Normal mode and type



              qaIprivate readonly string <ESC>jq


              This will record the macro (in register a) of you adding "private readonly string " to the beginning of the line, then moving one line down. If you want to repeat this macro twice (thus repeating the command for the next two lines), in command mode type 2@a on the lastName line, which will execute the macro twice more.





              This method fulfills your requirement of "not manually visiting each line"; however it's a little heavyweight for your application.



              If it's the typing of private readonly string that you object to, a quick solution is to make your edit on the first line, then move down to each line you want to make the edit and use . in Normal mode. This will repeat your last command (in this case adding the text to the line) with no fuss.







              share|improve this answer














              share|improve this answer



              share|improve this answer








              edited Mar 11 '11 at 21:26

























              answered Mar 11 '11 at 21:16









              Zeke

              18619




              18619












              • cool, I was actually looking for a way to repeat . but I guess it's not possible in this case...
                – Mauricio Scheffer
                Mar 11 '11 at 21:38










              • @muasch: Well, you can, you'd just use qa.jq as your macro (repeat command, then go one line down), and use 2@a to replay it. It's a little messy though.
                – Zeke
                Mar 11 '11 at 21:47












              • +1 The qa ... q macro is flexible and can solve a lot of problems, it's good to know. A little overkill for this question, but it will probably save you a lot of time in the future.
                – Johan
                Mar 17 '11 at 7:48


















              • cool, I was actually looking for a way to repeat . but I guess it's not possible in this case...
                – Mauricio Scheffer
                Mar 11 '11 at 21:38










              • @muasch: Well, you can, you'd just use qa.jq as your macro (repeat command, then go one line down), and use 2@a to replay it. It's a little messy though.
                – Zeke
                Mar 11 '11 at 21:47












              • +1 The qa ... q macro is flexible and can solve a lot of problems, it's good to know. A little overkill for this question, but it will probably save you a lot of time in the future.
                – Johan
                Mar 17 '11 at 7:48
















              cool, I was actually looking for a way to repeat . but I guess it's not possible in this case...
              – Mauricio Scheffer
              Mar 11 '11 at 21:38




              cool, I was actually looking for a way to repeat . but I guess it's not possible in this case...
              – Mauricio Scheffer
              Mar 11 '11 at 21:38












              @muasch: Well, you can, you'd just use qa.jq as your macro (repeat command, then go one line down), and use 2@a to replay it. It's a little messy though.
              – Zeke
              Mar 11 '11 at 21:47






              @muasch: Well, you can, you'd just use qa.jq as your macro (repeat command, then go one line down), and use 2@a to replay it. It's a little messy though.
              – Zeke
              Mar 11 '11 at 21:47














              +1 The qa ... q macro is flexible and can solve a lot of problems, it's good to know. A little overkill for this question, but it will probably save you a lot of time in the future.
              – Johan
              Mar 17 '11 at 7:48




              +1 The qa ... q macro is flexible and can solve a lot of problems, it's good to know. A little overkill for this question, but it will probably save you a lot of time in the future.
              – Johan
              Mar 17 '11 at 7:48













              7














              Another way to do this is to using Visual Block mode:




              1. Start with your cursor at the beginning of the first line.

              2. Press Ctrl+v to enter Visual Block mode.

              3. Press j to move down, extending the selection to include the lines you want.

              4. Press I to go into (prepending) Insert mode.

              5. Type private readonly string.

              6. Press Esc. This will cause you to go back to command mode, and the text you typed will be repeated on each line before the start of your visual block selection (in this case, at the start of each line, since that's where you began the selection).






              share|improve this answer





















              • To extend the selection to every line in the file, step 1 could be gg and step 3 could be G0.
                – Dennis Williamson
                Mar 12 '11 at 1:24
















              7














              Another way to do this is to using Visual Block mode:




              1. Start with your cursor at the beginning of the first line.

              2. Press Ctrl+v to enter Visual Block mode.

              3. Press j to move down, extending the selection to include the lines you want.

              4. Press I to go into (prepending) Insert mode.

              5. Type private readonly string.

              6. Press Esc. This will cause you to go back to command mode, and the text you typed will be repeated on each line before the start of your visual block selection (in this case, at the start of each line, since that's where you began the selection).






              share|improve this answer





















              • To extend the selection to every line in the file, step 1 could be gg and step 3 could be G0.
                – Dennis Williamson
                Mar 12 '11 at 1:24














              7












              7








              7






              Another way to do this is to using Visual Block mode:




              1. Start with your cursor at the beginning of the first line.

              2. Press Ctrl+v to enter Visual Block mode.

              3. Press j to move down, extending the selection to include the lines you want.

              4. Press I to go into (prepending) Insert mode.

              5. Type private readonly string.

              6. Press Esc. This will cause you to go back to command mode, and the text you typed will be repeated on each line before the start of your visual block selection (in this case, at the start of each line, since that's where you began the selection).






              share|improve this answer












              Another way to do this is to using Visual Block mode:




              1. Start with your cursor at the beginning of the first line.

              2. Press Ctrl+v to enter Visual Block mode.

              3. Press j to move down, extending the selection to include the lines you want.

              4. Press I to go into (prepending) Insert mode.

              5. Type private readonly string.

              6. Press Esc. This will cause you to go back to command mode, and the text you typed will be repeated on each line before the start of your visual block selection (in this case, at the start of each line, since that's where you began the selection).







              share|improve this answer












              share|improve this answer



              share|improve this answer










              answered Mar 11 '11 at 21:41









              MikeSep

              1,09985




              1,09985












              • To extend the selection to every line in the file, step 1 could be gg and step 3 could be G0.
                – Dennis Williamson
                Mar 12 '11 at 1:24


















              • To extend the selection to every line in the file, step 1 could be gg and step 3 could be G0.
                – Dennis Williamson
                Mar 12 '11 at 1:24
















              To extend the selection to every line in the file, step 1 could be gg and step 3 could be G0.
              – Dennis Williamson
              Mar 12 '11 at 1:24




              To extend the selection to every line in the file, step 1 could be gg and step 3 could be G0.
              – Dennis Williamson
              Mar 12 '11 at 1:24











              6














              :normal is great (and shorter) too:





              :.,+2norm Iprivate readonly string 






              • .,+2 - from here to 2 two lines bellow (or you could select the lines using visual mode shift+v and then typing : to get into ex mode)


              • norm - type these commands as if I typed them in normal (command) mode


              • I(...) - insert the following string in the beginning of the line






              share|improve this answer























              • +1 did not know about :norm, it's quite nice
                – Johan
                Mar 17 '11 at 7:58
















              6














              :normal is great (and shorter) too:





              :.,+2norm Iprivate readonly string 






              • .,+2 - from here to 2 two lines bellow (or you could select the lines using visual mode shift+v and then typing : to get into ex mode)


              • norm - type these commands as if I typed them in normal (command) mode


              • I(...) - insert the following string in the beginning of the line






              share|improve this answer























              • +1 did not know about :norm, it's quite nice
                – Johan
                Mar 17 '11 at 7:58














              6












              6








              6






              :normal is great (and shorter) too:





              :.,+2norm Iprivate readonly string 






              • .,+2 - from here to 2 two lines bellow (or you could select the lines using visual mode shift+v and then typing : to get into ex mode)


              • norm - type these commands as if I typed them in normal (command) mode


              • I(...) - insert the following string in the beginning of the line






              share|improve this answer














              :normal is great (and shorter) too:





              :.,+2norm Iprivate readonly string 






              • .,+2 - from here to 2 two lines bellow (or you could select the lines using visual mode shift+v and then typing : to get into ex mode)


              • norm - type these commands as if I typed them in normal (command) mode


              • I(...) - insert the following string in the beginning of the line







              share|improve this answer














              share|improve this answer



              share|improve this answer








              edited Mar 13 '11 at 19:13

























              answered Mar 13 '11 at 18:56









              Leonardo Constantino

              52645




              52645












              • +1 did not know about :norm, it's quite nice
                – Johan
                Mar 17 '11 at 7:58


















              • +1 did not know about :norm, it's quite nice
                – Johan
                Mar 17 '11 at 7:58
















              +1 did not know about :norm, it's quite nice
              – Johan
              Mar 17 '11 at 7:58




              +1 did not know about :norm, it's quite nice
              – Johan
              Mar 17 '11 at 7:58











              2














              Just type "private readonly string" at the first line. Then for the rest of the 2 lines type 2(dot character) like 2. from the second line.






              share|improve this answer


























                2














                Just type "private readonly string" at the first line. Then for the rest of the 2 lines type 2(dot character) like 2. from the second line.






                share|improve this answer
























                  2












                  2








                  2






                  Just type "private readonly string" at the first line. Then for the rest of the 2 lines type 2(dot character) like 2. from the second line.






                  share|improve this answer












                  Just type "private readonly string" at the first line. Then for the rest of the 2 lines type 2(dot character) like 2. from the second line.







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Mar 17 '11 at 6:30









                  adithya

                  511




                  511























                      1














                      Give this a try:



                      :%s/^/private readonly string /


                      I suppose you could write a script, but why?






                      share|improve this answer





















                      • sorry, I said I'm looking for a "vi way", not a regex. I already know regexes and I'm trying to learn vim.
                        – Mauricio Scheffer
                        Mar 11 '11 at 21:03
















                      1














                      Give this a try:



                      :%s/^/private readonly string /


                      I suppose you could write a script, but why?






                      share|improve this answer





















                      • sorry, I said I'm looking for a "vi way", not a regex. I already know regexes and I'm trying to learn vim.
                        – Mauricio Scheffer
                        Mar 11 '11 at 21:03














                      1












                      1








                      1






                      Give this a try:



                      :%s/^/private readonly string /


                      I suppose you could write a script, but why?






                      share|improve this answer












                      Give this a try:



                      :%s/^/private readonly string /


                      I suppose you could write a script, but why?







                      share|improve this answer












                      share|improve this answer



                      share|improve this answer










                      answered Mar 11 '11 at 20:58









                      Dennis Williamson

                      76.1k14129167




                      76.1k14129167












                      • sorry, I said I'm looking for a "vi way", not a regex. I already know regexes and I'm trying to learn vim.
                        – Mauricio Scheffer
                        Mar 11 '11 at 21:03


















                      • sorry, I said I'm looking for a "vi way", not a regex. I already know regexes and I'm trying to learn vim.
                        – Mauricio Scheffer
                        Mar 11 '11 at 21:03
















                      sorry, I said I'm looking for a "vi way", not a regex. I already know regexes and I'm trying to learn vim.
                      – Mauricio Scheffer
                      Mar 11 '11 at 21:03




                      sorry, I said I'm looking for a "vi way", not a regex. I already know regexes and I'm trying to learn vim.
                      – Mauricio Scheffer
                      Mar 11 '11 at 21:03











                      0














                      For interactively doing this without much thought and preparation (in case you have already entered the text on the first line but you later notice that you need it on several lines):




                      1. Insert the text as you would normally do using I in the first line.


                      2. Turn on the visual mode by pressing v or V or <c-v>.


                      3. Grab all the lines you want to apply the change. In this case, jj will do.


                      4. Hit :norm . then enter.







                      share|improve this answer


























                        0














                        For interactively doing this without much thought and preparation (in case you have already entered the text on the first line but you later notice that you need it on several lines):




                        1. Insert the text as you would normally do using I in the first line.


                        2. Turn on the visual mode by pressing v or V or <c-v>.


                        3. Grab all the lines you want to apply the change. In this case, jj will do.


                        4. Hit :norm . then enter.







                        share|improve this answer
























                          0












                          0








                          0






                          For interactively doing this without much thought and preparation (in case you have already entered the text on the first line but you later notice that you need it on several lines):




                          1. Insert the text as you would normally do using I in the first line.


                          2. Turn on the visual mode by pressing v or V or <c-v>.


                          3. Grab all the lines you want to apply the change. In this case, jj will do.


                          4. Hit :norm . then enter.







                          share|improve this answer












                          For interactively doing this without much thought and preparation (in case you have already entered the text on the first line but you later notice that you need it on several lines):




                          1. Insert the text as you would normally do using I in the first line.


                          2. Turn on the visual mode by pressing v or V or <c-v>.


                          3. Grab all the lines you want to apply the change. In this case, jj will do.


                          4. Hit :norm . then enter.








                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered Nov 27 '16 at 11:04









                          off99555

                          1113




                          1113






























                              draft saved

                              draft discarded




















































                              Thanks for contributing an answer to Super User!


                              • Please be sure to answer the question. Provide details and share your research!

                              But avoid



                              • Asking for help, clarification, or responding to other answers.

                              • Making statements based on opinion; back them up with references or personal experience.


                              To learn more, see our tips on writing great answers.





                              Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


                              Please pay close attention to the following guidance:


                              • Please be sure to answer the question. Provide details and share your research!

                              But avoid



                              • Asking for help, clarification, or responding to other answers.

                              • Making statements based on opinion; back them up with references or personal experience.


                              To learn more, see our tips on writing great answers.




                              draft saved


                              draft discarded














                              StackExchange.ready(
                              function () {
                              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f256461%2frepeating-through-lines-in-vim%23new-answer', 'question_page');
                              }
                              );

                              Post as a guest















                              Required, but never shown





















































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown

































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown







                              Popular posts from this blog

                              If I really need a card on my start hand, how many mulligans make sense? [duplicate]

                              Alcedinidae

                              Can an atomic nucleus contain both particles and antiparticles? [duplicate]