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 7969b88 commit 005a91fCopy full SHA for 005a91f
docstr-writers.el
@@ -401,7 +401,10 @@ Argument START is the starting point ot the insertion."
401
(setq param-vars (remove "self" param-vars)
402
param-var-len (length param-vars))
403
;; Line break between description and tags.
404
- (unless (= param-var-len 0) (insert prefix))
+ (unless (= param-var-len 0)
405
+ (insert prefix) (insert prefix)
406
+ (indent-for-tab-command)
407
+ (forward-line -1))
408
(docstr-writers--insert-param param-types param-vars prefix)
409
(docstr-writers--insert-return return-type-str '("void") prefix)
410
(docstr-writers-after start)))
0 commit comments