diff options
author | johannst <johannst@users.noreply.github.com> | 2025-02-20 23:05:55 +0000 |
---|---|---|
committer | johannst <johannst@users.noreply.github.com> | 2025-02-20 23:05:55 +0000 |
commit | 2413e9cbad620ca20b3aaffeb9cf4bb132e6113f (patch) | |
tree | eadf2a801237fe1068ee1ac26010369288ab6316 /tools | |
parent | 5a3e8872283eb758816b1547a98f52a251e4d31e (diff) | |
download | notes-2413e9cbad620ca20b3aaffeb9cf4bb132e6113f.tar.gz notes-2413e9cbad620ca20b3aaffeb9cf4bb132e6113f.zip |
deploy: 8167ecb83a8cc75da42a0b398c750d8f3aa4c44b
Diffstat (limited to 'tools')
-rw-r--r-- | tools/emacs.html | 74 | ||||
-rw-r--r-- | tools/index.html | 4 | ||||
-rw-r--r-- | tools/qrencode.html | 3 |
3 files changed, 61 insertions, 20 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 <KEY> print command bound to <KEY> C-h k <KEY> describe command bound to <KEY> C-h b list buffer local key-bindings + C-h F show emacs manual for command/function <kseq> C-h list possible key-bindings with <kseq> eg C-x C-h -> 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-< go to begin of buffer + M-> 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-<SPACE> 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-<SPACE> 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 & replace C-M-% query-replace-regexp search & replace regex @@ -346,15 +366,7 @@ C-x p ! project-shell-command shell command on project C-x p & 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 - <f1> get doc for completion condidate - M-<digit> 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 + & 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 & 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-<UP> + M-n comint-next-input go one down in history + C-<DOWN> + + 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> diff --git a/tools/index.html b/tools/index.html index a25cd75..1a3c760 100644 --- a/tools/index.html +++ b/tools/index.html @@ -175,7 +175,7 @@ <nav class="nav-wrapper" aria-label="Page navigation"> <!-- Mobile navigation buttons --> - <a rel="prev" href="../cli/xargs.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> + <a rel="prev" href="../cli/find.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> <i class="fa fa-angle-left"></i> </a> @@ -189,7 +189,7 @@ </div> <nav class="nav-wide-wrapper" aria-label="Page navigation"> - <a rel="prev" href="../cli/xargs.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> + <a rel="prev" href="../cli/find.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> <i class="fa fa-angle-left"></i> </a> diff --git a/tools/qrencode.html b/tools/qrencode.html index 847fa64..f4db958 100644 --- a/tools/qrencode.html +++ b/tools/qrencode.html @@ -156,6 +156,9 @@ <div id="content" class="content"> <main> <h1 id="qrencode1"><a class="header" href="#qrencode1">qrencode(1)</a></h1> +<pre><code>qrencode + -s N pixels per feature length +</code></pre> <p>Generate wifi qr code for WPA2 secured network.</p> <pre><code class="language-sh"># Generate on terminal. qrencode -t ansiutf8 'WIFI:S:<wifiname>;T:WPA2;P:<wifipasswd>;;' |