2021-04-10 14:59:16 +03:00
|
|
|
* PROJ List of things not working
|
2021-02-16 20:16:29 -06:00
|
|
|
** TODO Add vanilla keybindings
|
2021-02-17 16:58:08 -06:00
|
|
|
*** TODO Add keybinding for embark-act
|
2021-04-25 21:36:21 +03:00
|
|
|
** TODO =SPC s s= and =SPC s S= ~:sw~
|
|
|
|
There isn't really a selectrum analogue to ~swiper-isearch~, ~consult-isearch~
|
|
|
|
does something else (give you previously used isearch search terms).
|
2021-04-30 00:19:38 +03:00
|
|
|
** TODO =C-SPC= and live previews
|
|
|
|
Automatic live previews have been globally disabled for speed purposes.
|
|
|
|
=C-SPC= is partially implemented with the preview key for ~consult-*~ commands.
|
|
|
|
Need to get it to work for other selectrum commands such =SPC h f=.
|
|
|
|
#+begin_src emacs-lisp
|
|
|
|
(let ((embark-quit-after-action nil))
|
|
|
|
(map! :map minibuffer-local-map "C-SPC" #'embark-default-action)))
|
|
|
|
#+end_src
|
|
|
|
gets us close but moves the cursor to the new screen which is undesirable.
|
2021-04-30 01:23:37 +03:00
|
|
|
** TODO =C-C C-e= wgrep fun
|
2021-04-10 14:59:16 +03:00
|
|
|
* PROJ List of things needed for Ivy parity
|
|
|
|
** TODO Icons
|
|
|
|
https://github.com/minad/marginalia/issues/59
|
|
|
|
** TODO =SPC s B=
|
2021-04-29 21:46:48 +03:00
|
|
|
** TODO modules to look over
|
|
|
|
- lookup
|
|
|
|
- taskrunner (doesn't seem to be an interface yet)
|
|
|
|
- pass (creating embark-pass can't be that hard)
|
|
|
|
- irc
|
|
|
|
- org (check, might be fine)
|
|
|
|
- counsel-minibuffer-history analogue
|
|
|
|
- counsel-company analogue
|
2021-04-25 17:10:07 +03:00
|
|
|
* PROJ Other
|
|
|
|
** TODO bind =consult-lsp-diagnostics= to something?
|
2021-05-01 17:55:02 +03:00
|
|
|
** TODO bibtex-actions improvements?
|
|
|
|
currently =SPC n b= is bound to a function, but =bibtex-actions= doesn't have a
|
|
|
|
main dispatch function like =ivy-bibtex=, rather it has a bunch of different
|
|
|
|
ones. Binding the ~bibtex-actions-map~ there would probably be better, but there
|
|
|
|
are nontrivial loading order shinanigans happening that make that not straightforward.
|