aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNerdyPepper <[email protected]>2019-07-31 16:51:11 +0100
committerNerdyPepper <[email protected]>2019-07-31 16:51:11 +0100
commitf5f27e893ed856abea5413090ae1fd05cd9dff1e (patch)
tree071efeb19559dcb8ec49cb74b69bb2e33c943eb3
parentbe70d338e35209c94ce875734fe483b21f98b5b1 (diff)
fix typo
-rw-r--r--docs/index.html4
-rw-r--r--posts/bash_harder_with_vim.md2
2 files changed, 3 insertions, 3 deletions
diff --git a/docs/index.html b/docs/index.html
index 766219d..9fbc18b 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -56,7 +56,7 @@ echo &quot;$1&quot; | sed -E -e &quot;s/\..+$//g&quot; -e &quot;s/_(.)/ \u\1/g&
56<p>Instead of dropping into a new shell, just test it out directly from vim!</p> 56<p>Instead of dropping into a new shell, just test it out directly from vim!</p>
57 57
58<ul> 58<ul>
59<li><p>Yank the link into a register:</p> 59<li><p>Yank the line into a register:</p>
60 60
61<pre><code>yy 61<pre><code>yy
62</code></pre></li> 62</code></pre></li>
@@ -71,7 +71,7 @@ edit index.html # in a buffer!
71w | so % 71w | so %
72echo &quot;new_post.md&quot; | sed -E -e &quot;s/\..+$//g&quot; -e &quot;s/_(.)/ \u\1/g&quot; -e &quot;s/^(.)/\u\1/g&quot; 72echo &quot;new_post.md&quot; | sed -E -e &quot;s/\..+$//g&quot; -e &quot;s/_(.)/ \u\1/g&quot; -e &quot;s/^(.)/\u\1/g&quot;
73</code></pre></li> 73</code></pre></li>
74<li><p>Hit enter!</p> 74<li><p>Hit enter with the cursor on the line containing your command!</p>
75 75
76<pre><code>$ vim 76<pre><code>$ vim
77New Post # output 77New Post # output
diff --git a/posts/bash_harder_with_vim.md b/posts/bash_harder_with_vim.md
index 8dc4a50..c31e36c 100644
--- a/posts/bash_harder_with_vim.md
+++ b/posts/bash_harder_with_vim.md
@@ -26,7 +26,7 @@ echo "$1" | sed -E -e "s/\..+$//g" -e "s/_(.)/ \u\1/g" -e "s/^(.)/\u\1/g"
26``` 26```
27Instead of dropping into a new shell, just test it out directly from vim! 27Instead of dropping into a new shell, just test it out directly from vim!
28 28
29 - Yank the link into a register: 29 - Yank the line into a register:
30 30
31 ``` 31 ```
32yy 32yy