You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
173 lines
4.4 KiB
173 lines
4.4 KiB
<!doctype html> |
|
<html lang="en"> |
|
|
|
<head> |
|
<meta charset="utf-8"> |
|
|
|
<title>VIM</title> |
|
|
|
<meta name="author" content="Julio Biason"> |
|
|
|
<meta name="apple-mobile-web-app-capable" content="yes" /> |
|
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" /> |
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> |
|
|
|
<link rel="stylesheet" href="_external/reveal.min.css"> |
|
<link rel="stylesheet" href="_external/default.css" id="theme"> |
|
|
|
<!-- For syntax highlighting --> |
|
<link rel="stylesheet" href="_external/zenburn.css"> |
|
|
|
<!-- If the query includes 'print-pdf', include the PDF print sheet --> |
|
<script> |
|
if( window.location.search.match( /print-pdf/gi ) ) { |
|
var link = document.createElement( 'link' ); |
|
link.rel = 'stylesheet'; |
|
link.type = 'text/css'; |
|
link.href = '_external/pdf.css'; |
|
document.getElementsByTagName( 'head' )[0].appendChild( link ); |
|
} |
|
</script> |
|
|
|
<!--[if lt IE 9]> |
|
<script src="reveal.js/lib/js/html5shiv.js"></script> |
|
<![endif]--> |
|
|
|
<style> |
|
.semi-opaque { |
|
background-color: rgba(0, 0, 0, 0.7); |
|
} |
|
|
|
* { |
|
hyphens: none !important; |
|
-moz-hyphens: none !important; |
|
} |
|
|
|
img { |
|
height: 400px; |
|
} |
|
</style> |
|
</head> |
|
|
|
<body> |
|
|
|
<div class="reveal"> |
|
<!-- Any section element inside of this container is displayed as a slide --> |
|
<div class="slides"> |
|
<section data-background='_images/vim_dishwash_bar.jpg'> |
|
<section> |
|
<h1 class='semi-opaque'>Pensando em VIM</h1> |
|
</section> |
|
</section> |
|
|
|
<section> |
|
<p>Existem duas coisas que o VIM tem que outros editores não tem:</p> |
|
|
|
<ul> |
|
<li>Modalidade</li> |
|
<li>Componibilidade <span class='fragment'>(de componível)</span></li> |
|
</ul> |
|
</section> |
|
|
|
<section> |
|
<section> |
|
<h2>Modalidade</h2> |
|
</section> |
|
|
|
<section> |
|
<h3>O que é "modalidade"?</h3> |
|
|
|
<p> |
|
Significa que o VIM tem "modos" de edição. |
|
<span class="fragment small">duh</span> |
|
</p> |
|
</section> |
|
|
|
<section> |
|
<h4>Modo normal</h4> |
|
|
|
<p>"Normal".</p> |
|
|
|
<p>Movimentação, copy'n'paste...</p> |
|
|
|
<p>De qualquer modo, <code>[Esc]</code> retorna ao modo normal.</p> |
|
</section> |
|
|
|
<section> |
|
<h4>Modo de inserção</h4> |
|
|
|
<p>É o modo normal de outros editores: o que for |
|
digitado, vai para o texto.</p> |
|
|
|
<p>Para ir do modo normal para modo de inserção:</p> |
|
|
|
<p><code>i</code>, <code>I</code>, <code>a</code>, |
|
<code>A</code>, <code>o</code>, <code>O</code></p> |
|
</section> |
|
|
|
<section> |
|
<h4>Modo ex</h4> |
|
|
|
<p> |
|
Modo para comandos mais complexos, copiados do <i>ex</i>. |
|
</p> |
|
|
|
<p> |
|
Todos comandos começam com <code>:</code> e seguem o comando. |
|
</p> |
|
|
|
<p>Algums permite um 'range' de aplicação do comando.</p> |
|
</section> |
|
|
|
<section> |
|
<h4>Modo de pesquisa</h4> |
|
|
|
<p>Modo para procurar conteúdo no texto.</p> |
|
|
|
<p>Começa com <code>/</code> e segue a pesquisa.</p> |
|
</section> |
|
|
|
<section> |
|
<h4>Modo visual</h4> |
|
|
|
<p>Modo de seleção visual de blocos</p> |
|
|
|
<p>Iniciado com <code>v</code>, <code>Shift+v</code> ou |
|
<code>Ctrl+v</code>.</p> |
|
</section> |
|
</section> |
|
</div> |
|
</div> |
|
|
|
<script src="_external/head.min.js"></script> |
|
<script src="_external/reveal.min.js"></script> |
|
|
|
<script> |
|
|
|
// Full list of configuration options available here: |
|
// https://github.com/hakimel/reveal.js#configuration |
|
Reveal.initialize({ |
|
controls: true, |
|
progress: true, |
|
history: true, |
|
center: true, |
|
|
|
theme: 'night', |
|
transition: 'linear', |
|
|
|
// Optional libraries used to extend on reveal.js |
|
dependencies: [ |
|
{ src: '_external/classList.js', condition: function() { return !document.body.classList; } }, |
|
{ src: '_external/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } }, |
|
{ src: '_external/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } }, |
|
{ src: '_external/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } }, |
|
{ src: '_external/zoom.js', async: true, condition: function() { return !!document.body.classList; } }, |
|
{ src: '_external/notes.js', async: true, condition: function() { return !!document.body.classList; } } |
|
] |
|
}); |
|
|
|
</script> |
|
|
|
</body> |
|
</html>
|
|
|