From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: r.herdt@posteo.de Newsgroups: gmane.lisp.guile.user Subject: Re: LSP Server for Scheme (and more ...) Date: Fri, 17 Jun 2022 06:42:04 +0000 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="21550"; mail-complaints-to="usenet@ciao.gmane.io" To: guile-user@gnu.org Original-X-From: guile-user-bounces+guile-user=m.gmane-mx.org@gnu.org Fri Jun 17 08:55:13 2022 Return-path: Envelope-to: guile-user@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1o25su-0005Nq-R1 for guile-user@m.gmane-mx.org; Fri, 17 Jun 2022 08:55:12 +0200 Original-Received: from localhost ([::1]:56298 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1o25st-0006JP-1x for guile-user@m.gmane-mx.org; Fri, 17 Jun 2022 02:55:11 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:54768) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1o25gI-0008Oe-Ie for guile-user@gnu.org; Fri, 17 Jun 2022 02:42:12 -0400 Original-Received: from mout01.posteo.de ([185.67.36.65]:37071) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1o25gG-0000Ff-Op for guile-user@gnu.org; Fri, 17 Jun 2022 02:42:10 -0400 Original-Received: from submission (posteo.de [185.67.36.169]) by mout01.posteo.de (Postfix) with ESMTPS id 6849E240027 for ; Fri, 17 Jun 2022 08:42:05 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.de; s=2017; t=1655448125; bh=zLOWS8GZ70A+1sRMq7jFaZ/MGw8dch1KG4St8xzTDks=; h=Date:From:To:Subject:From; b=OjeWhKRD04iOun2IsnN6QUnFIbH5w+lvNxgOofo8lMHt1JAVjRrPQLB6088QkYob5 wiPfAxG1RL2agf+C01Me+EQOGdPbWbpWGM8mM6TVTjPu3AzDp9fkjH8uB2B7gqse47 ML6Z3as1FbtTAQZ9a4yxYbwmPX2rBOWE1mBnLT7KkNpTcySxhjTRsWbQr1iWPDbusG j+FG1I+0F9zkwMQRCBWU96fpk/Lb8pdfFtuRv6pXdUwNlJip3APY2hte7tJva+jWBa MNOieA1+PhbqyBAM2PaGoyUOG2sA8yRg+55FB+j6oljlHHOCuriUIl4FK55h7Gnywz L0p01y7pUVSWA== Original-Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4LPTwr70bkz6tmH for ; Fri, 17 Jun 2022 08:42:04 +0200 (CEST) In-Reply-To: Received-SPF: pass client-ip=185.67.36.65; envelope-from=r.herdt@posteo.de; helo=mout01.posteo.de X-Spam_score_int: -43 X-Spam_score: -4.4 X-Spam_bar: ---- X-Spam_report: (-4.4 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_DNSWL_MED=-2.3, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-BeenThere: guile-user@gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: General Guile related discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-user-bounces+guile-user=m.gmane-mx.org@gnu.org Original-Sender: "guile-user" Xref: news.gmane.io gmane.lisp.guile.user:18313 Archived-At: Am 16.06.2022 22:12 schrieb (: > Wonderful project! I was thinking about this for a while, and today > whereiseveryone on #guix mentioned the possibility. The idea they had > was to hook up Geiser's backend Guile code to an LSP frontend. Would > that be workable? Thanks. That could possibly work, actually I took lots of inspiration from geiser. One would have to write some sort of adapter code to translate between geiser's produced data structures (z.B. s-expr) that elisp consumes to LSP's JSON-based data structures. I will give some thought to it.