Skip to content

Commit 52b3637

Browse files
authored
Merge pull request #155 from katomuso/tweak-gdscript-eglot-version
Change gdscript-eglot-version type to be string instead of integer
2 parents e0c8700 + 21be7cd commit 52b3637

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

gdscript-eglot.el

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@
3838
:group 'gdscript)
3939

4040
;;;###autoload
41-
(defcustom gdscript-eglot-version 4
41+
(defcustom gdscript-eglot-version "4.3"
4242
"The version of godot in use."
43-
:type 'integer)
43+
:type 'string)
4444

4545
;;;###autoload
4646
(defun gdscript-eglot-contact (_interactive)
@@ -60,7 +60,7 @@ https://lists.gnu.org/archive/html/bug-gnu-emacs/2023-04/msg01070.html."
6060
(cfg-buffer
6161
(find-file-noselect
6262
(expand-file-name
63-
(format "godot/editor_settings-%d.tres"
63+
(format "godot/editor_settings-%s.tres"
6464
gdscript-eglot-version)
6565
cfg-dir)))
6666
(port

0 commit comments

Comments
 (0)