diff options
-rw-r--r-- | docs/index.html | 4 | ||||
-rw-r--r-- | posts/bash_harder_with_vim.md | 2 |
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 "$1" | sed -E -e "s/\..+$//g" -e "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! | |||
71 | w | so % | 71 | w | so % |
72 | echo "new_post.md" | sed -E -e "s/\..+$//g" -e "s/_(.)/ \u\1/g" -e "s/^(.)/\u\1/g" | 72 | echo "new_post.md" | sed -E -e "s/\..+$//g" -e "s/_(.)/ \u\1/g" -e "s/^(.)/\u\1/g" |
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 |
77 | New Post # output | 77 | New 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 | ``` |
27 | Instead of dropping into a new shell, just test it out directly from vim! | 27 | Instead 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 | ``` |
32 | yy | 32 | yy |