2016-03-28 21:39:13 -04:00
|
|
|
;;; defuns-smartparens.el
|
|
|
|
|
|
|
|
;;;###autoload
|
2016-05-20 22:37:30 -04:00
|
|
|
(defun doom/sp-insert-yasnippet (id action context)
|
2016-03-28 21:39:13 -04:00
|
|
|
(forward-char -1)
|
|
|
|
(if (sp-point-after-bol-p id action context)
|
|
|
|
(yas-expand-from-trigger-key)
|
|
|
|
(forward-char)))
|
|
|
|
|
|
|
|
(provide 'defuns-smartparens)
|
|
|
|
;;; defuns-smartparens.el ends here
|