Skip to content

Commit 828ff63

Browse files
committed
Address lint-indent errors in gdscript-docs and gdscript-keywords
1 parent 110d36d commit 828ff63

File tree

3 files changed

+131
-131
lines changed

3 files changed

+131
-131
lines changed

Diff for: gdscript-docs.el

+6-6
Original file line numberDiff line numberDiff line change
@@ -59,12 +59,12 @@ If a page is already open, switch to its buffer. Use local docs if gdscripts-doc
5959
(let* ((symbol-at-point (thing-at-point 'symbol t))
6060
(symbol (if symbol-at-point (downcase symbol-at-point) ""))
6161
(buffer (if (not gdscript-docs-use-eww) nil
62-
(seq-find
63-
(lambda (current-buffer)
64-
(with-current-buffer current-buffer
65-
(when (derived-mode-p 'eww-mode)
66-
(string-suffix-p symbol(string-remove-suffix ".html" (plist-get eww-data :url)) t)
67-
))) (buffer-list)))))
62+
(seq-find
63+
(lambda (current-buffer)
64+
(with-current-buffer current-buffer
65+
(when (derived-mode-p 'eww-mode)
66+
(string-suffix-p symbol(string-remove-suffix ".html" (plist-get eww-data :url)) t)
67+
))) (buffer-list)))))
6868
(if buffer (pop-to-buffer-same-window buffer)
6969
(if (string= "" symbol)
7070
(message "No symbol at point or open API reference buffers.")

Diff for: gdscript-hydra.el

+2-2
Original file line numberDiff line numberDiff line change
@@ -115,8 +115,8 @@ on hydra checkboxes."
115115
(ignore-errors
116116
;; Don't signal an error when hydra.el is not present
117117
(defhydra gdscript-hydra--menu (:hint none
118-
:body-pre (setq gdscript-hydra--open t)
119-
:before-exit (setq gdscript-hydra--open nil))
118+
:body-pre (setq gdscript-hydra--open t)
119+
:before-exit (setq gdscript-hydra--open nil))
120120
"
121121
_d_ (?d?) Debug _p_ run project _t_ run script _h_ run from history _a_ format all _q_ quit
122122
_e_ (?e?) Editor _s_ run scene _r_ run last _g_ switch to *godot* _b_ format buffer

0 commit comments

Comments
 (0)