aboutsummaryrefslogtreecommitdiff
path: root/Emacs
diff options
context:
space:
mode:
authorAryadev Chavali <aryadev@aryadevchavali.com>2021-03-25 13:18:09 +0000
committerAryadev Chavali <aryadev@aryadevchavali.com>2021-03-25 13:18:09 +0000
commit6855c65a708ec37402cb94710be036ed2e8c99a0 (patch)
tree995bec41b2f76a9657d97034d89928430464bb58 /Emacs
parentce33723c2048f515f3a49e9aae0c75445f8fe399 (diff)
downloaddotfiles-6855c65a708ec37402cb94710be036ed2e8c99a0.tar.gz
dotfiles-6855c65a708ec37402cb94710be036ed2e8c99a0.tar.bz2
dotfiles-6855c65a708ec37402cb94710be036ed2e8c99a0.zip
(Emacs)-preambles, just make it part of the main text body
Diffstat (limited to 'Emacs')
-rw-r--r--Emacs/.config/emacs/config.org5
1 files changed, 0 insertions, 5 deletions
diff --git a/Emacs/.config/emacs/config.org b/Emacs/.config/emacs/config.org
index bb6f708..742b929 100644
--- a/Emacs/.config/emacs/config.org
+++ b/Emacs/.config/emacs/config.org
@@ -136,7 +136,6 @@ The logic is pretty simple:
(evil-normal-state)))
#+end_src
** Toggle buffer
-*** Toggle buffer preamble
There are many cases where 'toggling' a buffer is very useful. For
example, toggling a shell to access it quickly and hide it away with
little annoyance.
@@ -158,7 +157,6 @@ The macro asks for a function name, a buffer name and the function
necessary to create a buffer with that name. It then generates a
function with the given name that holds the necessary logic to
'toggle' buffers.
-*** Code
#+begin_src emacs-lisp
(defmacro +dx/create-toggle-function (func-name buf-name buf-create)
"Generate a function named func-name that toggles
@@ -277,7 +275,6 @@ moment), bind to general some basic binds.
:PROPERTIES:
:HTML_CONTAINER: details
:END:
-*** Evil Preamble
Evil (Emacs VI Layer) is a package that brings the Vi experience to
Emacs. Packaged with it by default are:
- The modal system
@@ -385,7 +382,6 @@ on setups for specific modes I think benefit from it.
:PROPERTIES:
:HTML_CONTAINER: details
:END:
-*** Completion Preamble
Emacs is a text based interface. As a text based interface it heavily
leverages searches and user filters to manage input and provide
functionality. Though the standard model of completion may be
@@ -738,7 +734,6 @@ records.
:PROPERTIES:
:HTML_CONTAINER: details
:END:
-*** Auto typing Preamble
Snippets are a system by which pieces of code can be inserted via
prefixes. For example, an 'if' snippet would work by first inserting
the word 'if' then pressing some _expansion key_ such as TAB. This