2021-05-02 19:50:10 +03:00
|
|
|
* PROJ Design Decisions
|
|
|
|
** TODO bind =consult-lsp-diagnostics= to something?
|
|
|
|
** TODO Make sure we have all vanilla keybindings
|
|
|
|
** TODO Add keybinding for embark-act outside of the minibuffer
|
|
|
|
** TODO consider dropping prescient flag
|
|
|
|
** TODO =SPC s s= and =SPC s S= ~:sw~ ?
|
2021-04-25 21:36:21 +03:00
|
|
|
There isn't really a selectrum analogue to ~swiper-isearch~, ~consult-isearch~
|
|
|
|
does something else (give you previously used isearch search terms).
|
2021-05-08 23:36:14 +03:00
|
|
|
** TODO =SPC s B=
|
|
|
|
Selectrum/Consult don't have a ~swiper-all~ analogue either.
|
2021-05-02 19:50:10 +03:00
|
|
|
|
|
|
|
* PROJ Bugs
|
2021-04-30 00:19:38 +03:00
|
|
|
** TODO =C-SPC= and live previews
|
2021-05-02 19:50:10 +03:00
|
|
|
Automatic live previews have been disabled on slow ~consult~ commands.
|
|
|
|
=C-SPC= is partially implemented as the preview key for ~consult-*~ commands.
|
2021-04-30 00:19:38 +03:00
|
|
|
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-05-02 19:50:10 +03:00
|
|
|
probable best strategy: create an ~embark-preview~ that does this, upstream it.
|
|
|
|
** TODO ripgrep height logic bad
|
|
|
|
selectrum bug caused by file descriptors
|
|
|
|
https://github.com/raxod502/selectrum/issues/491
|
|
|
|
** TODO ~(defadvice! +orderless-match-with-one-face..~ causes lexical error
|
|
|
|
probably caused by some doomism
|
|
|
|
https://github.com/oantolin/orderless/issues/41
|
2021-05-17 13:20:02 +03:00
|
|
|
** TODO ~selectrum-repeat~ Issues
|
|
|
|
Unlike Ivy, ~selectrum-repeat~ doesn't restore the position of the selection in
|
|
|
|
the completion buffer. Seems to be reproduced in ~emacs -Q~. If so, create
|
|
|
|
upstream selectrum issue.
|
|
|
|
** TODO go over definition of ~+selectrum-file-search~
|
|
|
|
check if anything else there needs to be cleaned up.
|
|
|
|
** TODO Embark export window buffer switching logic
|
|
|
|
If we export bookmarks, grep session, or ~find-file~ session, when pressing
|
|
|
|
enter, it opens the new buffer in another window rather than the main one, even
|
|
|
|
though at least the bookmark function ostensibly uses
|
|
|
|
~pop-to-buffer-same-window~. Ivy gets the window switched in the bookmarks and
|
|
|
|
grep case due to a custom ivy occur window switching function.
|
2021-05-17 13:42:45 +03:00
|
|
|
** TODO selectrum =SPC /= is much slower than ivy =SPC /=
|
|
|
|
requires further investigation. is ~consult-ripgrep~ slower than ~counsel-rg~?
|
|
|
|
is it something the custom search function is doing? does ivy cache stuff?
|
2021-05-02 19:50:10 +03:00
|
|
|
* PROJ Missing Features
|
2021-04-10 14:59:16 +03:00
|
|
|
** TODO Icons
|
|
|
|
https://github.com/minad/marginalia/issues/59
|
2021-05-02 19:50:10 +03:00
|
|
|
** TODO =C-C C-e= wgrep fun
|
2021-05-07 21:27:14 +03:00
|
|
|
check if we can add this to ~consult-line~ too
|
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
|
2021-05-02 19:50:10 +03:00
|
|
|
are nontrivial loading order shenanigans happening that make that not straightforward.
|
|
|
|
** TODO Ivy Parity
|
2021-05-08 23:36:14 +03:00
|
|
|
*** TODO pass module
|
|
|
|
*** WAIT lookup module
|
|
|
|
- ~dash-docs~ backend (needs to be created)
|
|
|
|
- ~+lookup--online..~ functionality (needs a consult analogue of ~counsel-search~)
|
|
|
|
*** WAIT taskrunner module
|
|
|
|
in all likelihood requires writing ~consult-taskrunner~.
|