branch: elpa/swift-mode commit 800efe2910e0a8517ac720c8bd0e0714fef142eb Author: taku0 <mxxouy6x3m_git...@tatapa.org> Commit: taku0 <mxxouy6x3m_git...@tatapa.org>
Fix tags of customization --- swift-mode-repl.el | 3 +++ 1 file changed, 3 insertions(+) diff --git a/swift-mode-repl.el b/swift-mode-repl.el index 92124db..bc1adcc 100644 --- a/swift-mode-repl.el +++ b/swift-mode-repl.el @@ -39,11 +39,13 @@ ;;;###autoload (defgroup swift-mode:repl nil "REPL." + :tag "Swift Mode REPL" :group 'swift) (defcustom swift-mode:repl-executable (concat (when (executable-find "xcrun") "xcrun ") "swift") "Path to the Swift CLI. The string is split by spaces, then unquoted." + :tag "Swift Mode REPL Executable" :type '(choice string (list string)) :group 'swift-mode:repl :safe 'stringp) @@ -76,6 +78,7 @@ The string is split by spaces, then unquoted." "ios-deploy" "Path to ios-deploy command. The string is split by spaces, then unquoted." + :tag "Swift Mode iOS Deploy Executable" :type '(choice string (list string)) :group 'swift-mode:repl :safe 'stringp)