about summary refs log tree commit diff stats
path: root/tools/vim.html
diff options
context:
space:
mode:
Diffstat (limited to 'tools/vim.html')
-rw-r--r--tools/vim.html14
1 files changed, 12 insertions, 2 deletions
diff --git a/tools/vim.html b/tools/vim.html
index d483e29..528c777 100644
--- a/tools/vim.html
+++ b/tools/vim.html
@@ -53,10 +53,21 @@
 
         <p>Vertical split;</p>
         <pre>
-        :sp
+        :vsp
+        </pre>
+
+        <p>Change horizontal to vertical</p>
+        <pre>
+        ctrl+w H
+        </pre>
+
+        <p>Change vertical to horizontal</p>
+        <pre>
+        ctrl+w J
         </pre>
 
         <p>Move between window splits;</p>
+
         <pre>
         ctrl+w (k,j,l,h)
         </pre>
@@ -97,7 +108,6 @@
         selection or object. For example to delete the next
         two words press: d + 2 + w. List of important operators objects,
         selections;</p>
-        <pre>
 
         <pre>
         operator + count + object
a> 105 106 107 108 109 110 111 112 113 114 115 116 117