Move yasnippet to Completion

This commit is contained in:
contrapunctus 2022-01-15 17:20:48 +05:30
parent ee19410056
commit 381b74304b
1 changed files with 11 additions and 11 deletions

View File

@ -2742,6 +2742,17 @@ But with =initials=, the desired completion is often buried in the results. That
(prescient-persist-mode))
#+END_SRC
** yasnippet
:PROPERTIES:
:CREATED: 2022-01-05T20:16:31+0530
:END:
#+BEGIN_SRC emacs-lisp
(use-package yasnippet
:ensure t
:commands (yas-expand-snippet)
:hook (emacs-lisp-mode . yas-global-mode))
#+END_SRC
* misc keybindings
#+BEGIN_SRC emacs-lisp
(global-set-key (kbd "M-w") 'kill-ring-save)
@ -4186,17 +4197,6 @@ Used by Eldev documentation.
(recenter)))
#+END_SRC
* yasnippet
:PROPERTIES:
:CREATED: 2022-01-05T20:16:31+0530
:END:
#+BEGIN_SRC emacs-lisp
(use-package yasnippet
:ensure t
:commands (yas-expand-snippet)
:hook (emacs-lisp-mode . yas-global-mode))
#+END_SRC
* Programming
:PROPERTIES:
:CUSTOM_ID: programming