How do I insert a linebreak where the cursor is without entering into insert mode in Vim? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T04:38:24Z http://stackoverflow.com/feeds/question/237383 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/237383/how-do-i-insert-a-linebreak-where-the-cursor-is-without-entering-into-insert-mode 6 How do I insert a linebreak where the cursor is without entering into insert mode in Vim? Mark A. Nicolosi 2008-10-26T02:09:44Z 2009-06-02T21:24:30Z <p>Is possible to insert a linebreak where the cursor is in Vim without entering into insert mode? Here's an example ([x] means cursor is on x):</p> <pre><code>if (some_condition) {[ ]return; } </code></pre> <p>Occasionally, I might want to enter some more code. So I'd press 'i' to get into insert mode, press enter to insert the linebreak and then delete the extra space. Next, I'd enter normal mode and position the cursor before the closing brace and then do the same thing to get it on its own line.</p> <p>I've been doing this a while, but there's surely a better way to do it?</p> http://stackoverflow.com/questions/237383/how-do-i-insert-a-linebreak-where-the-cursor-is-without-entering-into-insert-mode/237384#237384 10 Answer by Greg Hewgill for How do I insert a linebreak where the cursor is without entering into insert mode in Vim? Greg Hewgill 2008-10-26T02:11:57Z 2008-10-26T02:11:57Z <p>For the example you've given, you could use 'r[Enter]' to replace a single character (the space) with Enter. Then, 'f[space].' to move forward to the next space and repeat the last command.</p> <p>Depending on your autoindent settings, the above may or may not indent the return statement properly. If not, then use 's[Enter][Tab][Esc]' instead to replace the space with a newline, indent the line, and exit insert mode. You would have to replace the second space with a different command so you couldn't use '.' in this case.</p> http://stackoverflow.com/questions/237383/how-do-i-insert-a-linebreak-where-the-cursor-is-without-entering-into-insert-mode/237436#237436 4 Answer by Adam Liss for How do I insert a linebreak where the cursor is without entering into insert mode in Vim? Adam Liss 2008-10-26T02:53:16Z 2008-10-26T03:49:02Z <p>Here's how to create a macro that inserts a newline at the cursor whenever you press 'g' while <em>not</em> in insert mode:</p> <p>From within vim, type:</p> <pre><code>:map g i[Ctrl+V][Enter][Ctrl+V][Esc][Enter] </code></pre> <p>Where: </p> <ul> <li>[Ctrl+V] means <em>hold the Ctrl key and press 'v'</em></li> <li>[Enter] means <em>press the Enter key</em></li> <li>[Esc] means <em>press the Esc key</em></li> </ul> <p>You'll see the following at the bottom of your vim window until you press the final Enter:</p> <pre><code>:map g i^M^[ </code></pre> <p><strong>Explanation:</strong></p> <p>[Ctrl+V] means "quote the following character" -- it allows you to embed the newline and escape characters in the command.</p> <p>So you're mapping the 'g' key to the sequence: <pre>i [Enter] [Escape]</pre></p> <p>This is vim for <em>insert a newline before the cursor, then exit insert mode</em>.</p> <p><strong>Tweaks:</strong></p> <ul> <li>You can replace the 'g' with any character that's not already linked to a command you use.</li> <li>Add more to the command, <em>e.g.</em> <code>f}i^M^[O</code> -- This will <strong>f</strong>ind the <strong>}</strong> and <strong>i</strong>nsert another newline, then escape from insert mode and <strong>O</strong>pen an empty line for you to enter more code.</li> <li>You can add the command to your .vimrc or .exrc file to make it permanent. Just omit the colon from the beginning, so the command starts with "map"</li> </ul> <p>Enjoy!</p> http://stackoverflow.com/questions/237383/how-do-i-insert-a-linebreak-where-the-cursor-is-without-entering-into-insert-mode/237471#237471 1 Answer by Aristotle Pagaltzis for How do I insert a linebreak where the cursor is without entering into insert mode in Vim? Aristotle Pagaltzis 2008-10-26T03:23:25Z 2008-10-26T05:50:05Z <p>Vim will automatically kill any whitespace to the right of the cursor if you break a line in two while <code>autoindent</code> (or any other indentation aid) is enabled.</p> <p>If you do not want to use any of those settings, use <code>s</code> instead of <code>i</code> in order to <b>s</b>ubstitute your new text for the blank rather than just inserting. (If there are multiple blanks, put the cursor on the leftmost and use <code>cw</code> instead.)</p> http://stackoverflow.com/questions/237383/how-do-i-insert-a-linebreak-where-the-cursor-is-without-entering-into-insert-mode/237512#237512 -1 Answer by Lucas Oman for How do I insert a linebreak where the cursor is without entering into insert mode in Vim? Lucas Oman 2008-10-26T03:54:07Z 2008-10-26T04:06:34Z <p>This mapping will break up any one-line function you have. Simply put your cursor on the line and hit 'g' in normal mode:</p> <pre><code>:map g ^f{malr&lt;CR&gt;`a%hr&lt;CR&gt;`a </code></pre> <p>This assumes that you have a space after the opening brace and a space before the closing brace. See if that works for you.</p> http://stackoverflow.com/questions/237383/how-do-i-insert-a-linebreak-where-the-cursor-is-without-entering-into-insert-mode/237522#237522 2 Answer by slothbear for How do I insert a linebreak where the cursor is without entering into insert mode in Vim? slothbear 2008-10-26T04:00:14Z 2008-10-26T04:00:14Z <p>If you're usually expanding a one line block to three lines, a simple substitution would work well. Change the opening bracket into bracket/return, and the closing bracket into return/bracket.</p> <p>The command for substituting bracket/return for bracket looks like this:</p> <pre><code>:s/{/{\r/ </code></pre> <p>Since you want to use this often, you could map the full sequence to an unused keystroke like this:</p> <pre><code>:map g :s/{/{\r/ ^M :s/}/\r}/ ^M </code></pre> <p>Where you see <strong>^M</strong> in the sequence, type <strong>[Ctrl-V]</strong>, then press <strong>enter</strong>.</p> <p>Now with your cursor anywhere on your sample line, press the 'g' key, and the carriage returns are added. Note: you might want to use the command ":map g" before you do your own map -- just to make sure the 'g' key isn't already in use.</p> http://stackoverflow.com/questions/237383/how-do-i-insert-a-linebreak-where-the-cursor-is-without-entering-into-insert-mode/941991#941991 0 Answer by Yariv for How do I insert a linebreak where the cursor is without entering into insert mode in Vim? Yariv 2009-06-02T21:24:30Z 2009-06-02T21:24:30Z <p>A simple mapping to break the line at the cursor by pressing Ctrl+Enter:</p> <blockquote> <p><code>:nmap &lt;c-cr&gt; i&lt;cr&gt;&lt;Esc&gt;</code></p> </blockquote> <p>essentially enters 'insert' mode, inserts a line break and goes back to normal mode.</p> <p>put it in your .vimrc file for future use.</p>