unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* bug#59245: [PATCH] Add go-dot-mod-mode and go-dot-work-mode to eglot-server-programs
@ 2022-11-13 11:39 Davide Masserut via Bug reports for GNU Emacs, the Swiss army knife of text editors
  2022-11-13 13:06 ` Stefan Kangas
  0 siblings, 1 reply; 4+ messages in thread
From: Davide Masserut via Bug reports for GNU Emacs, the Swiss army knife of text editors @ 2022-11-13 11:39 UTC (permalink / raw)
  To: 59245

[-- Attachment #1: Type: text/plain, Size: 792 bytes --]

Tags: patch

This path adds go-dot-mod-mode and go-dot-work-mode to 
eglot-server-programs.


In GNU Emacs 29.0.50 (build 8, x86_64-pc-linux-gnu, GTK+ Version
 3.24.34, cairo version 1.17.6) of 2022-11-13 built on T480s
Repository revision: 7a9beac46142eb70061c45ef222d72f84b7b18ab
Repository branch: master
System Description: Arch Linux

Configured using:
 'configure --sysconfdir=/etc --prefix=/usr --libexecdir=/usr/lib
 --localstatedir=/var --with-pgtk --with-native-compilation
 'CFLAGS=-march=native -O2 -pipe -fno-plt -fexceptions
 -Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security
 -fstack-clash-protection -fcf-protection -g
 -ffile-prefix-map=/home/davide/src/emacs-mssdvd-git/src=/usr/src/debug/emacs-mssdvd-git'
 LDFLAGS=-Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now'

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-Add-go-dot-mod-mode-and-go-dot-work-mode-to-eglot-se.patch --]
[-- Type: text/patch, Size: 1191 bytes --]

From e73ee956cfe46931123a3c11c32ab399d9abd39c Mon Sep 17 00:00:00 2001
From: Davide Masserut <dm@mssdvd.com>
Date: Sun, 13 Nov 2022 12:30:43 +0100
Subject: [PATCH] Add go-dot-mod-mode and go-dot-work-mode to
 eglot-server-programs

* lisp/progmodes/eglot.el (eglot-server-programs): Add new major modes
to be used with gopls.
---
 lisp/progmodes/eglot.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/progmodes/eglot.el b/lisp/progmodes/eglot.el
index 97c674f7aa..98d5281d2c 100644
--- a/lisp/progmodes/eglot.el
+++ b/lisp/progmodes/eglot.el
@@ -206,7 +206,7 @@ eglot-server-programs
                                 (elm-mode . ("elm-language-server"))
                                 (mint-mode . ("mint" "ls"))
                                 (kotlin-mode . ("kotlin-language-server"))
-                                (go-mode . ("gopls"))
+                                ((go-mode go-dot-mod-mode go-dot-work-mode) . ("gopls"))
                                 ((R-mode ess-r-mode) . ("R" "--slave" "-e"
                                                         "languageserver::run()"))
                                 (java-mode . ("jdtls"))
-- 
2.38.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* bug#59245: [PATCH] Add go-dot-mod-mode and go-dot-work-mode to eglot-server-programs
  2022-11-13 11:39 bug#59245: [PATCH] Add go-dot-mod-mode and go-dot-work-mode to eglot-server-programs Davide Masserut via Bug reports for GNU Emacs, the Swiss army knife of text editors
@ 2022-11-13 13:06 ` Stefan Kangas
  2022-11-13 13:10   ` Davide Masserut via Bug reports for GNU Emacs, the Swiss army knife of text editors
  0 siblings, 1 reply; 4+ messages in thread
From: Stefan Kangas @ 2022-11-13 13:06 UTC (permalink / raw)
  To: Davide Masserut, 59245; +Cc: joaotavora

Davide Masserut via "Bug reports for GNU Emacs, the Swiss army knife of
text editors" <bug-gnu-emacs@gnu.org> writes:

> This path adds go-dot-mod-mode and go-dot-work-mode to
> eglot-server-programs.

Thanks for the patch.

For posterity, could you clarify where `go-dot-mod-mode' and
`go-dot-work-mode' are from?  Are they from some external package, and
if so, could you provide a URL?  Thanks in advance.

> From e73ee956cfe46931123a3c11c32ab399d9abd39c Mon Sep 17 00:00:00 2001
> From: Davide Masserut <dm@mssdvd.com>
> Date: Sun, 13 Nov 2022 12:30:43 +0100
> Subject: [PATCH] Add go-dot-mod-mode and go-dot-work-mode to
>  eglot-server-programs
>
> * lisp/progmodes/eglot.el (eglot-server-programs): Add new major modes
> to be used with gopls.
> ---
>  lisp/progmodes/eglot.el | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/lisp/progmodes/eglot.el b/lisp/progmodes/eglot.el
> index 97c674f7aa..98d5281d2c 100644
> --- a/lisp/progmodes/eglot.el
> +++ b/lisp/progmodes/eglot.el
> @@ -206,7 +206,7 @@ eglot-server-programs
>                                  (elm-mode . ("elm-language-server"))
>                                  (mint-mode . ("mint" "ls"))
>                                  (kotlin-mode . ("kotlin-language-server"))
> -                                (go-mode . ("gopls"))
> +                                ((go-mode go-dot-mod-mode go-dot-work-mode) . ("gopls"))
>                                  ((R-mode ess-r-mode) . ("R" "--slave" "-e"
>                                                          "languageserver::run()"))
>                                  (java-mode . ("jdtls"))
> --
> 2.38.1





^ permalink raw reply	[flat|nested] 4+ messages in thread

* bug#59245: [PATCH] Add go-dot-mod-mode and go-dot-work-mode to eglot-server-programs
  2022-11-13 13:06 ` Stefan Kangas
@ 2022-11-13 13:10   ` Davide Masserut via Bug reports for GNU Emacs, the Swiss army knife of text editors
  2022-11-13 13:48     ` Stefan Kangas
  0 siblings, 1 reply; 4+ messages in thread
From: Davide Masserut via Bug reports for GNU Emacs, the Swiss army knife of text editors @ 2022-11-13 13:10 UTC (permalink / raw)
  To: Stefan Kangas; +Cc: joaotavora, 59245


Stefan Kangas <stefankangas@gmail.com> writes:

> For posterity, could you clarify where `go-dot-mod-mode' and
> `go-dot-work-mode' are from?  Are they from some external 
> package, and
> if so, could you provide a URL?  Thanks in advance.

They are provided by the 'go-mode' package available on melpa and 
nongnu.  The latter version still doesn't have 'go-dot-work-mode'.

https://github.com/dominikh/go-mode.el

Should I update the patch?





^ permalink raw reply	[flat|nested] 4+ messages in thread

* bug#59245: [PATCH] Add go-dot-mod-mode and go-dot-work-mode to eglot-server-programs
  2022-11-13 13:10   ` Davide Masserut via Bug reports for GNU Emacs, the Swiss army knife of text editors
@ 2022-11-13 13:48     ` Stefan Kangas
  0 siblings, 0 replies; 4+ messages in thread
From: Stefan Kangas @ 2022-11-13 13:48 UTC (permalink / raw)
  To: Davide Masserut; +Cc: joaotavora, 59245

close 59245 29.1
thanks

Davide Masserut <dm@mssdvd.com> writes:

> Stefan Kangas <stefankangas@gmail.com> writes:
>
>> For posterity, could you clarify where `go-dot-mod-mode' and
>> `go-dot-work-mode' are from?  Are they from some external
>> package, and
>> if so, could you provide a URL?  Thanks in advance.
>
> They are provided by the 'go-mode' package available on melpa and
> nongnu.  The latter version still doesn't have 'go-dot-work-mode'.
>
> https://github.com/dominikh/go-mode.el
>
> Should I update the patch?

I think the pointers you've provided here are sufficient.  So I edited
the commit message lightly and I've pushed your patch to master.

Thanks!





^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-11-13 13:48 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-11-13 11:39 bug#59245: [PATCH] Add go-dot-mod-mode and go-dot-work-mode to eglot-server-programs Davide Masserut via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-11-13 13:06 ` Stefan Kangas
2022-11-13 13:10   ` Davide Masserut via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-11-13 13:48     ` Stefan Kangas

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).