I’m new around here and i wanted to know if there is possible to make multi-editing still work after you press ENTER OR TAB. It’s like this you go to line 5-6-7 and want to paste a line of code right after them by pressing enter and entering a new line or you want to move the lines 5-6-7 with tabs so they look nested to parent or in some other examples. (it runs perfectly in Sublime Text 2 )
I hope i was explicitly enough and straight to the point , sorry for misspelled words or bad english.
[EDIT] :
I wanted to add some pictures with the example but i need 10 reputation... I will try to explain once more . Notepad++ allows you to do multi-editing , it works perfectly to write inline continiously without pressing enter, if you press enter is going to enter a new line at the last position where you wanted to modify with multi-editing .
I am going to write an in-line example here:
<div id="1"> <div class="child-1"></div> <-[here is where i hold CTRL for multi editing] </div> <div id="2"> <div class="child-1"></div> <-[here is where i hold CTRL for multi editing] </div> So i want in both of parent divs [id=1 & id=2] after the div with class="child-1" to enter a new line [by pressing ENTER] and write something else like a new div with class="child-2" , but simultaneously in both of the parents.
<div id="1"> <div class="child-1"></div> <div class="child-2"></div><-[this is how it should be ] </div> <div id="2"> <div class="child-1"></div> <div class="child-2"></div><-[this is how it should be ] </div> [BUT UNFORTUNATELY IS GOING TO BE LIKE THIS ] <div id="1"> <div class="child-1"></div> </div> <div id="2"> <div class="child-1"></div> <div class="child-2"></div><-[this is how it is ] </div> This kind of thing happens too if you want to space more lines of code with TAB so they will look nested to their parrents.
{}) you will post code without run now buttons.