diff options
author | oreodave <aryadevchavali1@gmail.com> | 2019-08-17 03:33:04 +0100 |
---|---|---|
committer | oreodave <aryadevchavali1@gmail.com> | 2019-08-17 03:33:04 +0100 |
commit | 09487af73adc0d2b91afbb934da5fdb4c91164a8 (patch) | |
tree | 6ca10ea5c5022648136c87ae3b4bb44022715086 /doom.d | |
parent | ac04d7f3a65ebd0f20378879f50d96ab41cbd214 (diff) | |
download | dotfiles-09487af73adc0d2b91afbb934da5fdb4c91164a8.tar.gz dotfiles-09487af73adc0d2b91afbb934da5fdb4c91164a8.tar.bz2 dotfiles-09487af73adc0d2b91afbb934da5fdb4c91164a8.zip |
+Keybind, and a context field
+<C-x h> for marking whole buffer
+Context field for easier grepping
Diffstat (limited to 'doom.d')
-rw-r--r-- | doom.d/config.org | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/doom.d/config.org b/doom.d/config.org index f93b40a..910fa09 100644 --- a/doom.d/config.org +++ b/doom.d/config.org @@ -7,14 +7,15 @@ This is my [[https://github.com/hlissner/doom-emacs][Doom Emacs]] configuration, possibe. It is currently my main C# and Python editor but hopefully it will become my C one soon! * Keybinds and tricks -|-------------+-----------------------------------------------------------------------------------------------------------------------------------| -| Bind | Use | -|-------------+-----------------------------------------------------------------------------------------------------------------------------------| -| *<C-c '>* | to edit a src block in org | -| *<C-c C-o>* | when in a counsel buffer to read the buffer results into another buffer, so you can read it and do normal vim stuff with it | -| *<C-c C-p>* | when in a results buffer to edit results buffer. You can edit specific items or the entire thing using a regex. Incredibly useful | -| *<C-o>* | When you've gone to some line or definiton, go back to previous place | -|-------------+-----------------------------------------------------------------------------------------------------------------------------------| +|-------------+----------------------------------------------------------------------------------------------------------+-----------------| +| Bind | Use | Context | +|-------------+----------------------------------------------------------------------------------------------------------+-----------------| +| *<C-c '>* | To edit a src block | Org | +| *<C-c C-o>* | To read the buffer results into a traversible buffer, so you can read it and do normal vim stuff with it | Counsel | +| *<C-c C-p>* | To edit results buffer. You can edit specific items or the entire thing using a regex. Incredibly useful | Counsel results | +| *<C-o>* | When you've gone to some line or definiton, go back to previous place | Normal | +| *<C-x h>* | Mark whole buffer for copying | Normal | +|-------------+----------------------------------------------------------------------------------------------------------+-----------------| * Global variables #+BEGIN_SRC emacs-lisp (setq doom-localleader-key ",") |