From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-0.9 required=5.0 tests=BAYES_00,FORGED_GMAIL_RCVD, FREEMAIL_FROM autolearn=no autolearn_force=no version=3.4.4 X-Received: by 2002:ad4:5441:: with SMTP id h1mr22214681qvt.120.1573992580304; Sun, 17 Nov 2019 04:09:40 -0800 (PST) X-Received: by 2002:a9d:195:: with SMTP id e21mr18754585ote.5.1573992579774; Sun, 17 Nov 2019 04:09:39 -0800 (PST) Path: eternal-september.org!reader01.eternal-september.org!feeder.eternal-september.org!news.gegeweb.eu!gegeweb.org!fdn.fr!proxad.net!feeder1-2.proxad.net!209.85.160.216.MISMATCH!j16no8140808qtl.0!news-out.google.com!p4ni942qtu.1!nntp.google.com!j16no8140795qtl.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Sun, 17 Nov 2019 04:09:39 -0800 (PST) In-Reply-To: Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=91.169.209.222; posting-account=6yLzewoAAABoisbSsCJH1SPMc9UrfXBH NNTP-Posting-Host: 91.169.209.222 References: User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: <5a2f8ab0-bea9-40db-8612-615df4081713@googlegroups.com> Subject: Re: VSCode extension - Ada Utilities From: briot.emmanuel@gmail.com Injection-Date: Sun, 17 Nov 2019 12:09:40 +0000 Content-Type: text/plain; charset="UTF-8" Xref: reader01.eternal-september.org comp.lang.ada:57576 Date: 2019-11-17T04:09:39-08:00 List-Id: > Thanks. It's hard to know whether something is of general interest when it > seems to be described in code. Not everyone has heard of your (generic > "your" here) favorite coding tool... Visual Studio Code is actually worth knowing about. I haven't used it myself, but the reason it is interesting is that it has come with a new protocol named the Language Server Protocol that is used by a lot of editors/IDEs nowadays to do things like cross-reference queries ("go to declaration of", "find all references") to refactoring ("rename an entity"), and more. To the point that most languages nowadays come with such a server (Ada has one based on libadalang, too). Those servers can be queried from vim (which I use), from Emacs (Stephen has started looking into that for ada-mode, as per a discussion two weeks ago), from GPS (where the Ada language server comes from), Visual Studio Code, and a lot of others.