We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e54f73d commit ccbdebbCopy full SHA for ccbdebb
psci.el
@@ -51,6 +51,14 @@
51
(defvar psci/buffer-name "psci"
52
"Buffer name of the psci buffer.")
53
54
+(defconst *psci/version* "0.0.4" "The version of psci.")
55
+
56
+;;;###autoload
57
+(defun psci/version ()
58
+ "Display the version of the mode."
59
+ (interactive)
60
+ (message "psci-mode version - %s" *psci/version*))
61
62
(defun psci/process-name (buffer-name)
63
"Compute the buffer's process name based on BUFFER-NAME."
64
(format "*%s*" buffer-name))
0 commit comments