Vim Tips Wiki
(Change to TipImported template + severe manual clean)
(Remove html character entities)
 
(One intermediate revision by the same user not shown)
Line 9: Line 9:
 
|version=5.7
 
|version=5.7
 
|rating=0/2
 
|rating=0/2
  +
|category1=
  +
|category2=
 
}}
 
}}
 
This was inspired by [[VimTip173]]. Sometimes you don't want to have your windows on their max or min width (length) so I added the following commands to my vimrc.
 
This was inspired by [[VimTip173]]. Sometimes you don't want to have your windows on their max or min width (length) so I added the following commands to my vimrc.
Line 15: Line 17:
 
"This two change in between vertical windows maximizing their length, and if you keep them pressed they will increase width by 2 columns steps.
 
"This two change in between vertical windows maximizing their length, and if you keep them pressed they will increase width by 2 columns steps.
 
"very nice when lines are too long to fit in just one row.
 
"very nice when lines are too long to fit in just one row.
nmap <c-h> <c-w>h<c-w>_<c-w>><c-w>>
+
nmap <c-h> <c-w>h<c-w>_<c-w>><c-w>>
nmap &lt;c-l&gt; &lt;c-w&gt;l&lt;c-w&gt;_&lt;c-w&gt;&gt;&lt;c-w&gt;&gt;
+
nmap <c-l> <c-w>l<c-w>_<c-w>><c-w>>
 
</pre>
 
</pre>
   
Line 22: Line 24:
   
 
==Comments==
 
==Comments==
  +
{{Todo}}
'''TODO''' Take the time to figure out how to make this useful. By ''length'' the author means ''height''. Should use a repeat number. If you need this tip to increase the width, won't you need a way to decrease it?
+
Take the time to figure out how to make this useful. By ''length'' the author means ''height''. Should use a repeat number. If you need this tip to increase the width, won't you need a way to decrease it?
   
 
----
 
----

Latest revision as of 00:13, 30 September 2008

Tip 1302 Printable Monobook Previous Next

created August 11, 2006 · complexity basic · author atomik fungus · version 5.7


This was inspired by VimTip173. Sometimes you don't want to have your windows on their max or min width (length) so I added the following commands to my vimrc.

"This two change in between vertical windows maximizing their length, and if you keep them pressed they will increase width by 2 columns steps.
"very nice when lines are too long to fit in just one row.
nmap <c-h> <c-w>h<c-w>_<c-w>><c-w>>
nmap <c-l> <c-w>l<c-w>_<c-w>><c-w>>

The same can be done for the horizontal split.

Comments[]

 TO DO 
Take the time to figure out how to make this useful. By length the author means height. Should use a repeat number. If you need this tip to increase the width, won't you need a way to decrease it?