commit ec1e257a406faa1abb12e9bca779b53b7ed8704a
parent 6591af4dec813932d598372f743541cf8554c406
Author: Anders Hedman <anders.hedman01@gmail.com>
Date: Mon, 21 Nov 2022 21:27:41 +0100
doom: Added docstrings to ansible-navigator functions
Diffstat:
1 file changed, 7 insertions(+), 4 deletions(-)
diff --git a/.doom.d/config.el b/.doom.d/config.el
@@ -163,22 +163,25 @@
:files (or "roles/" "tasks/main.yml" "local.yml"))
(defun ansible-navigator-run ()
- "doc"
+ "Utilize terminal-here-launch to run BUFFER with ansible-navigator"
(interactive)
(terminal-here-launch (list "ansible-navigator" "run" (buffer-file-name))))
(defun ansible-navigator-run-check ()
- "doc"
+ "Utilize terminal-here-launch to run BUFFER with ansible-navigator with option
+ -C/--check"
(interactive)
(terminal-here-launch (list "ansible-navigator" "run" (buffer-file-name) "-C")))
(defun ansible-navigator-run-tags (tags)
- "doc"
+ "Utilize terminal-here-launch to run BUFFER with ansible-navigator with option
+ -t/--tags TAGS"
(interactive "sTags: ")
(terminal-here-launch (list "ansible-navigator" "run" (buffer-file-name) (format "-t %s" tags))))
(defun ansible-navigator-run-check-tags (tags)
- "doc"
+ "Utilize terminal-here-launch to run BUFFER with ansible-navigator with option
+ -C/--check and -t/--tags TAGS"
(interactive "sTags: ")
(terminal-here-launch (list "ansible-navigator" "run" (buffer-file-name) "-C" (format "-t %s" tags))))