aboutsummaryrefslogtreecommitdiff
path: root/docs/index.html
diff options
context:
space:
mode:
authorNerdyPepper <[email protected]>2019-07-31 17:18:00 +0100
committerNerdyPepper <[email protected]>2019-07-31 17:18:00 +0100
commit05bdbd020afaf1574a1fb5c8a1c7238a2cddb091 (patch)
tree1779f2cd27d0efb4de60981d74fcfa93a4f26b66 /docs/index.html
parent8bb5ee06ad1670c34bf767cce48aaf94a5804881 (diff)
fix typos, dont expand posts
Diffstat (limited to 'docs/index.html')
-rw-r--r--docs/index.html16
1 files changed, 12 insertions, 4 deletions
diff --git a/docs/index.html b/docs/index.html
index cba94e8..200faef 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -28,12 +28,16 @@ function showPost(id) {
28 <div class="post"> 28 <div class="post">
29 <div class="date">31/07 2019</div> 29 <div class="date">31/07 2019</div>
30 <a href="#bash_harder_with_vim.md" class="post-link" onClick="showPost('bash_harder_with_vim.md')">Bash Harder With Vim</a> 30 <a href="#bash_harder_with_vim.md" class="post-link" onClick="showPost('bash_harder_with_vim.md')">Bash Harder With Vim</a>
31 <div id="bash_harder_with_vim.md" class="post-text" style="display: block"> 31 <div id="bash_harder_with_vim.md" class="post-text" style="display: none">
32 <p>Bash is tricky, don&#8217;t let your editor get in your way. Here&#8217;s a couple of neat 32 <p>Bash is tricky, don&#8217;t let your editor get in your way. Here&#8217;s a couple of neat
33addtions you could make to your <code>vimrc</code> for a better shell programming 33additions you could make to your <code>vimrc</code> for a better shell programming
34experience.</p> 34experience.</p>
35 35
36<p><strong>Man pages inside vim</strong>. Source this script to get started: </p> 36<hr/>
37
38<h4 id="Man%20pages%20inside%20vim">Man pages inside vim</h4>
39
40<p>Source this script to get started: </p>
37 41
38<pre><code>runtime ftplugin/man.vim 42<pre><code>runtime ftplugin/man.vim
39</code></pre> 43</code></pre>
@@ -46,7 +50,11 @@ and the ability to jump around with <code>Ctrl-]</code> and <code>Ctrl-T</code>.
46<pre><code>let g:ft_man_open_mode = &#39;tab&#39; 50<pre><code>let g:ft_man_open_mode = &#39;tab&#39;
47</code></pre> 51</code></pre>
48 52
49<p><strong>Scratchpad to test your commands</strong>. I often test my <code>sed</code> substitutions, here is 53<hr/>
54
55<h4 id="Scratchpad%20to%20test%20your%20commands">Scratchpad to test your commands</h4>
56
57<p>I often test my <code>sed</code> substitutions, here is
50a sample from the script used to generate this site: </p> 58a sample from the script used to generate this site: </p>
51 59
52<pre><code># a substitution to convert snake_case to Title Case With Spaces 60<pre><code># a substitution to convert snake_case to Title Case With Spaces