-
-
Notifications
You must be signed in to change notification settings - Fork 51
vterm
Jimmy Yuen Ho Wong edited this page Dec 13, 2025
·
1 revision
(vterm :post-build
(progn
(setq vterm-always-compile-module t)
(require 'vterm)
;;print compilation info for elpaca
(with-current-buffer (get-buffer-create vterm-install-buffer-name)
(goto-char (point-min))
(while (not (eobp))
(message "%S"
(buffer-substring (line-beginning-position)
(line-end-position)))
(forward-line)))
(when-let* ((so (expand-file-name "./vterm-module.so"))
((file-exists-p so)))
(make-symbolic-link
so (expand-file-name (file-name-nondirectory so)
"../../builds/vterm")
'ok-if-already-exists))))