aboutsummaryrefslogtreecommitdiff
path: root/docs/posts
diff options
context:
space:
mode:
Diffstat (limited to 'docs/posts')
-rw-r--r--docs/posts/rapid_refactoring_with_vim/index.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/posts/rapid_refactoring_with_vim/index.html b/docs/posts/rapid_refactoring_with_vim/index.html
index 4e33a31..00c9a80 100644
--- a/docs/posts/rapid_refactoring_with_vim/index.html
+++ b/docs/posts/rapid_refactoring_with_vim/index.html
@@ -71,7 +71,7 @@ prefixed with the arrow):</p>
71 } 71 }
72</code></pre> 72</code></pre>
73 73
74<h2 id="The%20arglist">The arglist</h2> 74<h3 id="The%20arglist">The arglist</h3>
75 75
76<p>For the initial pass, I decided to handle imports, this was 76<p>For the initial pass, I decided to handle imports, this was
77a simple find and replace operation, done to all the files 77a simple find and replace operation, done to all the files
@@ -103,7 +103,7 @@ every file in the arglist:</p>
103<pre><code>:argdo s&#47;from_str&#47;from_value&#47;g 103<pre><code>:argdo s&#47;from_str&#47;from_value&#47;g
104</code></pre> 104</code></pre>
105 105
106<h2 id="The%20quickfix%20list">The quickfix list</h2> 106<h3 id="The%20quickfix%20list">The quickfix list</h3>
107 107
108<p>Next up, replacing <code>r#&#34; ... &#34;#</code> with <code>json!( ... )</code>. I 108<p>Next up, replacing <code>r#&#34; ... &#34;#</code> with <code>json!( ... )</code>. I
109couldn&#39;t search and replace that trivially, so I went with a 109couldn&#39;t search and replace that trivially, so I went with a
@@ -168,7 +168,7 @@ the list, vim indicates your index:</p>
168<p>But, I had to manually pick out matches, and it involved 168<p>But, I had to manually pick out matches, and it involved
169some button mashing.</p> 169some button mashing.</p>
170 170
171<h2 id="External%20Filtering">External Filtering</h2> 171<h3 id="External%20Filtering">External Filtering</h3>
172 172
173<p>Some code reviews later, I was asked to format all the json 173<p>Some code reviews later, I was asked to format all the json
174inside the <code>json!</code> macro. All you have to do is pass a 174inside the <code>json!</code> macro. All you have to do is pass a