aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/emacs.html
diff options
context:
space:
mode:
authorjohannst <johannst@users.noreply.github.com>2025-02-20 23:05:55 +0000
committerjohannst <johannst@users.noreply.github.com>2025-02-20 23:05:55 +0000
commit2413e9cbad620ca20b3aaffeb9cf4bb132e6113f (patch)
treeeadf2a801237fe1068ee1ac26010369288ab6316 /tools/emacs.html
parent5a3e8872283eb758816b1547a98f52a251e4d31e (diff)
downloadnotes-2413e9cbad620ca20b3aaffeb9cf4bb132e6113f.tar.gz
notes-2413e9cbad620ca20b3aaffeb9cf4bb132e6113f.zip
deploy: 8167ecb83a8cc75da42a0b398c750d8f3aa4c44b
Diffstat (limited to 'tools/emacs.html')
-rw-r--r--tools/emacs.html74
1 files changed, 56 insertions, 18 deletions
diff --git a/tools/emacs.html b/tools/emacs.html
index 0438b73..79fdde6 100644
--- a/tools/emacs.html
+++ b/tools/emacs.html
@@ -165,6 +165,7 @@
C-h c &lt;KEY&gt; print command bound to &lt;KEY&gt;
C-h k &lt;KEY&gt; describe command bound to &lt;KEY&gt;
C-h b list buffer local key-bindings
+ C-h F show emacs manual for command/function
&lt;kseq&gt; C-h list possible key-bindings with &lt;kseq&gt;
eg C-x C-h -&gt; list key-bindings beginning with C-x
</code></pre>
@@ -183,6 +184,10 @@
C-x 2 split-window-below split horizontal
C-x 3 split-window-right split vertical
C-x o other-window other window (cycle)
+
+ C-x r w window-configuration-to-register
+ save window configuration in a register
+ (use C-x r j to jump to the windows config again)
</code></pre>
<h2 id="minibuffer"><a class="header" href="#minibuffer">minibuffer</a></h2>
<pre><code class="language-markdown"> key description
@@ -202,6 +207,7 @@
C-x w write-file write buffer (save as)
C-x b switch-to-buffer switch buffer
C-x C-b list-buffers buffer list
+ C-x x r rename-buffer renames a buffer (allows multiple shell, compile, grep, .. buffers)
</code></pre>
<h2 id="ibuffer"><a class="header" href="#ibuffer">ibuffer</a></h2>
<p>Builtin advanced buffer selection mode</p>
@@ -211,6 +217,9 @@
h ibuffer help
+ d mark for deletion
+ x kill buffers marked for deletion
+
o open buffer in other window
C-o open buffer in other window keep focus in ibuffer
@@ -225,6 +234,8 @@
/m filter by major mode
/n filter by buffer name
/f filter by file name
+ /i filter by modified buffers
+ /E filter by process buffers
// remove all filter
/g create filter group
@@ -238,6 +249,9 @@
M-g M-p previous-error go to previous error
M-g i imenu go to place in buffer (symbol, ...)
+
+ M-&lt; go to begin of buffer
+ M-&gt; go to end of buffer
</code></pre>
<h2 id="isearch"><a class="header" href="#isearch">isearch</a></h2>
<pre><code class="language-markdown"> key fn description
@@ -272,19 +286,23 @@
<pre><code class="language-markdown"> key fn description
-----------------------------------
rgrep recursive grep
+ lgrep local dir grep
+ grep raw grep command
find-grep run find-grep result in *grep* buffer
n/p navigate next/previous match in *grep* buffer
q quit *grep* buffer
</code></pre>
<h2 id="yankpaste"><a class="header" href="#yankpaste">yank/paste</a></h2>
-<pre><code class="language-markdown"> key fn description
----------------------------------------------
- C-&lt;SPACE&gt; set-mark-command set start mark to select text
- M-w kill-ring-save copy selected text
- C-w kill-region kill selected text
- C-y yank paste selected text
- M-y yank-pop cycle through kill-ring (only after paste)
+<pre><code class="language-markdown"> key fn description
+-------------------------------------------------
+ C-&lt;SPACE&gt; set-mark-command set start mark to select text
+ C-x C-x exchange-point-and-mark swap mark and point position
+ M-w kill-ring-save copy selected text
+ C-w kill-region kill selected text
+ C-y yank paste selected text
+ M-y yank-pop cycle through kill-ring (only after paste)
+ M-y yank-from-kill-ring interactively select yank from kill ring
</code></pre>
<h2 id="register"><a class="header" href="#register">register</a></h2>
<pre><code class="language-markdown"> key fn description
@@ -309,7 +327,9 @@
<pre><code class="language-markdown"> key fn description
------------------------------------------------
C-x h mark-whole-buffer mark whole buffer
- delete-matching-line delete lines matching regex
+ delete-matching-line delete lines matchng regex
+ kill-matching-line kill lines matching regex (puts them in kill ring)
+ keep-lines keep matching lines
replace-string replace unconditional
M-% query-replace search &amp; replace
C-M-% query-replace-regexp search &amp; replace regex
@@ -346,15 +366,7 @@
C-x p ! project-shell-command shell command on project
C-x p &amp; project-async-shell-command async shell command on project
</code></pre>
-<h2 id="company"><a class="header" href="#company">company</a></h2>
-<pre><code class="language-markdown"> key fn description
--------------------------------
- C-s search through completion candidates
- C-o filter completion candidates based on search term
- &lt;f1&gt; get doc for completion condidate
- M-&lt;digit&gt; select completion candidate
-</code></pre>
-<h2 id="tags"><a class="header" href="#tags">tags</a></h2>
+<h2 id="tags--lsp"><a class="header" href="#tags--lsp">tags / lsp</a></h2>
<p>To generate <code>etags</code> using <code>ctags</code></p>
<pre><code class="language-markdown"> ctags -R -e . generate emacs tag file (important `-e`)
</code></pre>
@@ -409,11 +421,17 @@ supports <code>fido-vertical-mode</code> in case vertical mode is preferred.</p>
Y relative symbolic link
d mark for deletion
- m mark file/dir
+ m mark file/dir at point
+ * % mark by regex
+ * * mark all executables
+ * / mark all dirs
u un-mark file/dir
U un-mark all
+ t toggle marks
x execute marked actions
+ ! run shell command on marked files
+ &amp; run shell command on marked files (async)
q quit
</code></pre>
@@ -443,6 +461,26 @@ supports <code>fido-vertical-mode</code> in case vertical mode is preferred.</p>
prefix with C-u to replace region with
output of the command
</code></pre>
+<h2 id="interactive-shell"><a class="header" href="#interactive-shell">interactive shell</a></h2>
+<p>Set <code>ESHELL</code> environment variable before starting emacs to change
+default shell, else customize the <code>explicit-shell-file-name</code> variable.</p>
+<pre><code class="language-markdown"> key fn description
+---------------------------------------------
+ M-x shell start interactive shell
+ C-u M-x shell start interactive shell &amp; rename
+
+
+ M-r comint-history-isearch-backward-regexp
+ search history, invoke at end of shell buffer
+ M-p comint-previous-input go one up in history
+ C-&lt;UP&gt;
+ M-n comint-next-input go one down in history
+ C-&lt;DOWN&gt;
+
+ C-c C-a go begin of line (honors prompt)
+ C-c C-e go to end of line
+ C-c C-c interrupt active command
+</code></pre>
</main>