diff --git a/_images/Back-to-our-regular-scheduled-programing-copy1.jpg b/_images/Back-to-our-regular-scheduled-programing-copy1.jpg new file mode 100644 index 0000000..034fd2f Binary files /dev/null and b/_images/Back-to-our-regular-scheduled-programing-copy1.jpg differ diff --git a/_images/Screenshot-from-2013-10-22-085035.png b/_images/Screenshot-from-2013-10-22-085035.png new file mode 100644 index 0000000..f34e21b Binary files /dev/null and b/_images/Screenshot-from-2013-10-22-085035.png differ diff --git a/_images/break-time-coffee.jpg b/_images/break-time-coffee.jpg new file mode 100644 index 0000000..aec6a2b Binary files /dev/null and b/_images/break-time-coffee.jpg differ diff --git a/_images/enhanced-buzz-5697-1327086181-19.jpg b/_images/enhanced-buzz-5697-1327086181-19.jpg new file mode 100644 index 0000000..bb0bd04 Binary files /dev/null and b/_images/enhanced-buzz-5697-1327086181-19.jpg differ diff --git a/_images/snorefest.jpg b/_images/snorefest.jpg new file mode 100644 index 0000000..c57e2b3 Binary files /dev/null and b/_images/snorefest.jpg differ diff --git a/vim.html b/vim.html index 82797aa..4ca5d79 100644 --- a/vim.html +++ b/vim.html @@ -43,6 +43,10 @@ hyphens: none !important; -moz-hyphens: none !important; } + +img { + height: 400px; +} @@ -109,6 +113,135 @@ + +
+ +
+ +
+ +
+ +
+ +
+ +
+

Todos os comandos em modo normal aceitam uma quantidade de + repetições do mesmo.

+ +

3w irá pular 3 palavras.

+ +

3f. irá pular para a terceira ocorrência do ponto + na mesma linha.

+
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+
+

O cursor

+
+ +
+ +
+
+ +
+
+

Removendo texto

+
+ +
+ +
+ +
+

Contar funciona

+ +

10x apaga 10 caracteres.

+ +

20dd apaga 20 linhas.

+ + +
+
+ +
+
+

Modo de inserção

+
+ +
+

No modo de inserção é quando finalmente o que você digita + aparece no texto.

+
+ +
+
+ +
+

r

+ +

r faz parte dos comandos de inserção mas não + entra em modo de inserção.

+ +

+ r[letra] substitui o caractere sob o cursor e volta + para o modo normal (basicamente xa[letra]{Esc}). +

+