blob: 7aa57a5998dbd6a8cf6c1780952fcf143ba0ab83 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
;;; +minibuffer.el -*- lexical-binding: t -*-
;;; Code:
;; https://www.manueluberti.eu//emacs/2021/12/10/shell-command/
(defun +minibuffer-complete-history ()
"Complete minibuffer history."
(interactive)
(completion-in-region (minibuffer--completion-prompt-end) (point-max)
(symbol-value minibuffer-history-variable)
nil))
(provide '+minibuffer)
;;; +minibuffer.el ends here
|