Not sure what happened here.... O.O

This commit is contained in:
Chris Cochrun 2022-02-25 13:54:32 -06:00
parent 34ab43b8f9
commit 0dbc3ead0e
272 changed files with 4767 additions and 12217 deletions

View file

@ -1,18 +0,0 @@
<p><code class="language-plaintext highlighter-rouge">digit-argument</code> + <code class="language-plaintext highlighter-rouge">negative-argument</code> = Great way to maintain editing tempo.</p>
<p>For example:</p>
<ul>
<li>to capitalize three words forward, you can do <code class="language-plaintext highlighter-rouge">M-3 M-c</code>.</li>
<li>for three words backward, you can apply the negative argument:
<code class="language-plaintext highlighter-rouge">M-- M-3 M-c</code></li>
</ul>
<p>This way, your hand don't need to move away from the <code class="language-plaintext highlighter-rouge">meta</code> key and
maintain editing tempo.</p>
<p>Note: For Doom Emacs, <code class="language-plaintext highlighter-rouge">M--</code> is mapped to decrease font size instead,
which I don't use often, so I have to switch it back:</p>
<div class="language-elisp highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="p">(</span><span class="nv">global-set-key</span> <span class="p">(</span><span class="nv">kbd</span> <span class="s">"M--"</span><span class="p">)</span> <span class="ss">'negative-argument</span><span class="p">)</span>
</code></pre></div></div>