File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed
Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change 5151; ; (@* "Customization" )
5252; ;
5353
54- (defconst docstr-key-type " #T" " String key that going to replace type name." )
55- (defconst docstr-key-var " #V" " String key that going to replace variable name." )
56- (defconst docstr-key-desc " #D" " String key that going to replace description." )
54+ (defconst docstr-key-type " #T# " " String key that going to replace type name." )
55+ (defconst docstr-key-var " #V# " " String key that going to replace variable name." )
56+ (defconst docstr-key-desc " #D# " " String key that going to replace description." )
5757
5858(defcustom docstr-format-type " { %s }"
5959 " Format string for type name section inside document string."
6565 :type 'string
6666 :group 'docstr )
6767
68- (defcustom docstr-format-param " @param #T #V #D"
68+ (defcustom docstr-format-param
69+ (format " @param %s %s %s " docstr-key-type docstr-key-var docstr-key-desc)
6970 " Format string for parameter document string."
7071 :type 'string
7172 :group 'docstr )
7273
73- (defcustom docstr-format-return " @return #T #V #D"
74+ (defcustom docstr-format-return
75+ (format " @return %s %s %s " docstr-key-type docstr-key-var docstr-key-desc)
7476 " Format string for return document string."
7577 :type 'string
7678 :group 'docstr )
You can’t perform that action at this time.
0 commit comments