diff options
| author | tslil clingman <> | 2021-05-02 15:32:03 -0400 |
|---|---|---|
| committer | tslil clingman <> | 2021-05-02 15:32:03 -0400 |
| commit | fe1d743c0f8115e8c8dd79b487f4a522cf0b34e1 (patch) | |
| tree | 0ab69e0fb286cf9bd8c68d66fab2f0612d7ecca0 /emacs/inits | |
| parent | e469bd55a8ab029140a3b36ac1ef11ef1abff95b (diff) | |
At some point selectrum-should-sort-p dropped the p.
Diffstat (limited to 'emacs/inits')
| -rw-r--r-- | emacs/inits/11-selectrum.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/emacs/inits/11-selectrum.el b/emacs/inits/11-selectrum.el index 0be23a0..fa5feb7 100644 --- a/emacs/inits/11-selectrum.el +++ b/emacs/inits/11-selectrum.el @@ -1,4 +1,4 @@ -;; Time-stamp: <2020-05-24 12:03:56 (tslil@bison)> +;; Time-stamp: <2021-05-02 15h31 EDT (hobbies)> (use-package deadgrep :ensure t @@ -6,12 +6,12 @@ (defun selectrum-recentf () (interactive) - (let ((selectrum-should-sort-p nil)) + (let ((selectrum-should-sort nil)) (find-file (completing-read "Recent file: " recentf-list nil t)))) (defun selectrum-yank () (interactive) - (let ((selectrum-should-sort-p nil)) + (let ((selectrum-should-sort nil)) (insert (selectrum-completing-read "Yank: " (delete-dups kill-ring) nil t)))) (use-package selectrum |
