Skip to content

Commit 4fd5474

Browse files
committed
Ensure enable for after changes.
1 parent ad52b8c commit 4fd5474

File tree

9 files changed

+10
-10
lines changed

9 files changed

+10
-10
lines changed

clients/docstr-actionscript.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
(return-type-str (docstr-writers--return-type-behind search-string ":")))
5454
(docstr-writers--insert-param param-types param-vars prefix)
5555
(docstr-writers--insert-return return-type-str '("void") prefix)
56-
(docstr-writers-after start)))
56+
(docstr-writers-after start t t t)))
5757

5858
(provide 'docstr-actionscript)
5959
;;; docstr-actionscript.el ends here

clients/docstr-c++.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
(defun docstr-c++-config-qt ()
4141
"Configre for convention, Qt."
4242
(docstr-util-default-format :param "\\param" :ret "\\return")
43-
(setq-local docstr-c++-prefix ""
43+
(setq-local docstr-c++-prefix " "
4444
docstr-format-var "%s"
4545
docstr-show-type-name nil))
4646

@@ -62,7 +62,7 @@
6262
(return-type-str (docstr-writers--return-type search-string)))
6363
(docstr-writers--insert-param param-types param-vars prefix)
6464
(docstr-writers--insert-return return-type-str nil prefix)
65-
(docstr-writers-after start)))
65+
(docstr-writers-after start nil t t)))
6666

6767
(provide 'docstr-c++)
6868
;;; docstr-c++.el ends here

clients/docstr-csharp.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
(docstr-concat-var nil))
7171
(docstr-writers--insert-param param-types param-vars prefix)
7272
(docstr-writers--insert-return return-type-str '("void") prefix))
73-
(docstr-writers-after start)))))
73+
(docstr-writers-after start t t t)))))
7474

7575
;;;###autoload
7676
(defun docstr-trigger-csharp (&rest _)

clients/docstr-go.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
(end-of-line) (insert " ")
7878
(docstr-writers--insert-param param-types param-vars prefix)
7979
(docstr-writers--insert-return return-type-str nil prefix)
80-
(docstr-writers-after start)))))
80+
(docstr-writers-after start t t t)))))
8181

8282
;;;###autoload
8383
(defun docstr-trigger-golang (&rest _)

clients/docstr-java.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
(return-type-str (docstr-writers--return-type search-string)))
6363
(docstr-writers--insert-param param-types param-vars prefix)
6464
(docstr-writers--insert-return return-type-str '("void") prefix)
65-
(docstr-writers-after start)))
65+
(docstr-writers-after start t t t)))
6666

6767
(provide 'docstr-java)
6868
;;; docstr-java.el ends here

clients/docstr-js.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
(param-vars (nth 1 paren-param-list)))
7272
(docstr-writers--insert-param param-types param-vars prefix)
7373
(docstr-writers--insert-return nil '("void") prefix)
74-
(docstr-writers-after start)))
74+
(docstr-writers-after start t t t)))
7575

7676
(provide 'docstr-js)
7777
;;; docstr-js.el ends here

clients/docstr-lua.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
(insert (format "\n%s" docstr-lua-splitter)))
6969
(docstr-writers--insert-param param-types param-vars prefix)
7070
(docstr-writers--insert-return return-type-str '("void") prefix)
71-
(docstr-writers-after start)))
71+
(docstr-writers-after start t t t)))
7272

7373
;;;###autoload
7474
(defun docstr-trigger-lua (&rest _)

clients/docstr-python.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@
100100
(docstr-util-insert docstr-python-header-param)))
101101
(docstr-writers--insert-param param-types param-vars prefix)
102102
(docstr-writers--insert-return return-type-str '("void") prefix)
103-
(docstr-writers-after start)))
103+
(docstr-writers-after start t t t)))
104104

105105
;;;###autoload
106106
(defun docstr-trigger-python (&rest _)

clients/docstr-rust.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
(return-type-str (docstr-writers--return-type-behind search-string ":")))
6161
(docstr-writers--insert-param param-types param-vars prefix)
6262
(docstr-writers--insert-return return-type-str '("void") prefix)
63-
(docstr-writers-after start)))
63+
(docstr-writers-after start t t t)))
6464

6565
(provide 'docstr-rust)
6666
;;; docstr-rust.el ends here

0 commit comments

Comments
 (0)