mirror of
https://github.com/joaotavora/yasnippet.git
synced 2025-10-13 13:13:03 +00:00
more compatible with dropdown-list.el
This commit is contained in:
parent
c571a1ebc5
commit
1b45a9d545
14
yasnippet.el
14
yasnippet.el
@ -769,12 +769,14 @@ You can also use this in window-system.
|
||||
|
||||
NOTE: You need to download and install dropdown-list.el to use this."
|
||||
(if (fboundp 'dropdown-list)
|
||||
(yas/template-content
|
||||
(cdr (nth (dropdown-list (mapcar (lambda (i)
|
||||
(yas/template-name
|
||||
(cdr i)))
|
||||
templates))
|
||||
templates)))
|
||||
(let ((n (dropdown-list (mapcar (lambda (i)
|
||||
(yas/template-name
|
||||
(cdr i)))
|
||||
templates))))
|
||||
(if n
|
||||
(yas/template-content
|
||||
(cdr (nth n templates)))
|
||||
nil))
|
||||
(error "Please download and install dropdown-list.el to use this")))
|
||||
|
||||
(defun yas/popup-for-template (templates)
|
||||
|
Loading…
x
Reference in New Issue
Block a user