Default to 'local for markdown-preview-host
* Prefer to use 'local over "127.0.0.1" to indicate localhost, as the underlying functions use 'local for localhost. * Adjust type to be a union of 'local and a string.
This commit is contained in:
parent
25f1de2839
commit
dc3b2dfba7
@ -40,10 +40,11 @@
|
||||
:prefix "markdown-preview-"
|
||||
:link '(url-link "https://github.com/ancane/markdown-preview-mode"))
|
||||
|
||||
(defcustom markdown-preview-host "127.0.0.1"
|
||||
(defcustom markdown-preview-host 'local
|
||||
"Markdown preview websocket server address."
|
||||
:group 'markdown-preview
|
||||
:type 'string)
|
||||
:type '(choice (const :tag "localhost" local)
|
||||
(string :tag "Custom host")))
|
||||
|
||||
(defcustom markdown-preview-port 7379
|
||||
"Markdown preview websocket server port."
|
||||
|
Loading…
Reference in New Issue
Block a user