From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Original-To: caml-list@sympa.inria.fr Delivered-To: caml-list@sympa.inria.fr Received: from mail3-relais-sop.national.inria.fr (mail3-relais-sop.national.inria.fr [192.134.164.104]) by sympa.inria.fr (Postfix) with ESMTPS id D49377F6CB for ; Fri, 30 Jan 2015 13:48:57 +0100 (CET) Received-SPF: None (mail3-smtp-sop.national.inria.fr: no sender authenticity information available from domain of mads379@gmail.com) identity=pra; client-ip=209.85.212.170; receiver=mail3-smtp-sop.national.inria.fr; envelope-from="mads379@gmail.com"; x-sender="mads379@gmail.com"; x-conformance=sidf_compatible Received-SPF: Pass (mail3-smtp-sop.national.inria.fr: domain of mads379@gmail.com designates 209.85.212.170 as permitted sender) identity=mailfrom; client-ip=209.85.212.170; receiver=mail3-smtp-sop.national.inria.fr; envelope-from="mads379@gmail.com"; x-sender="mads379@gmail.com"; x-conformance=sidf_compatible; x-record-type="v=spf1" Received-SPF: None (mail3-smtp-sop.national.inria.fr: no sender authenticity information available from domain of postmaster@mail-wi0-f170.google.com) identity=helo; client-ip=209.85.212.170; receiver=mail3-smtp-sop.national.inria.fr; envelope-from="mads379@gmail.com"; x-sender="postmaster@mail-wi0-f170.google.com"; x-conformance=sidf_compatible X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: A0CgAQAbfctUm6rUVdFag1hOCwSCfbIhK403gWmFcQKBFgdDAQEBAQERAQEBAQEGCwsJFC6EDQEBAwESER0BGxILAQMBCwYFBAcaHQICIQEBEQEFAQoSBhMSEId1AQMJCA20QD4xiy6Ba4J3im4KGScDClSEfgEBAQEBAQQBAQEBAQEBFQEFDo1AgiYEB4JogUEFhEYKjXeEEYFGgU2LCIQyEiOBDAmEET0xAYJBAQEB X-IPAS-Result: A0CgAQAbfctUm6rUVdFag1hOCwSCfbIhK403gWmFcQKBFgdDAQEBAQERAQEBAQEGCwsJFC6EDQEBAwESER0BGxILAQMBCwYFBAcaHQICIQEBEQEFAQoSBhMSEId1AQMJCA20QD4xiy6Ba4J3im4KGScDClSEfgEBAQEBAQQBAQEBAQEBFQEFDo1AgiYEB4JogUEFhEYKjXeEEYFGgU2LCIQyEiOBDAmEET0xAYJBAQEB X-IronPort-AV: E=Sophos;i="5.09,491,1418079600"; d="scan'208";a="98259442" Received: from mail-wi0-f170.google.com ([209.85.212.170]) by mail3-smtp-sop.national.inria.fr with ESMTP/TLS/RC4-SHA; 30 Jan 2015 13:48:57 +0100 Received: by mail-wi0-f170.google.com with SMTP id bs8so2697011wib.1 for ; Fri, 30 Jan 2015 04:48:57 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=Dyf0UtM3TNnduKhou0s1nG7pAoUEQZR9/51IYBzXnXg=; b=QZZbTz9dd+FwLbnl3C8r6C3ZPRwjdFruriIkg1mqCbqVblnSGsXU/FNwN3yH2/u+sg t0pjkUvsYrLxgVBwv+/8/eL0+9vkAj+Yu5eHalcrAcCz8SiKY9lhimkp5CPQ3G1hpIqi 7CKmS21kX6ehJtlE4sQyj5p362mR/QxpTePAZUa4EZ/9mgHbmyLRAwh4Yhvew/hqED9v H7SfyRE2y3CNPSl21vmtddP1Z5URIR6YiBQHhnhrXMHe7I1VWYiIBJt+wYGNCqHPYhU3 869x9R1n7TNa8vSFNcBAG7KAHoVwXKKfJh5kTOvZswT3eqLLA2CRTG9hiq2sk5vEqsyN iiKA== MIME-Version: 1.0 X-Received: by 10.194.94.1 with SMTP id cy1mr11273479wjb.127.1422622136960; Fri, 30 Jan 2015 04:48:56 -0800 (PST) Received: by 10.27.98.69 with HTTP; Fri, 30 Jan 2015 04:48:56 -0800 (PST) In-Reply-To: References: Date: Fri, 30 Jan 2015 13:48:56 +0100 Message-ID: From: Mads Jensen To: Thomas Refis Cc: caml users Content-Type: multipart/alternative; boundary=047d7bf0c39a1f8ebe050dde07f5 Subject: Re: [Caml-list] [ANN] Merlin 2.1 released --047d7bf0c39a1f8ebe050dde07f5 Content-Type: text/plain; charset=UTF-8 Awesome work! The destruct command is my new favourite command. Keep up the good work! /Mads On Thu, Jan 29, 2015 at 11:01 AM, Thomas Refis wrote: > Merlin is an editor-independent tool to ease the developement of > programs in OCaml. It aims at providing features available in modern > IDEs such as: "as you type" error reporting, auto completion, source > browsing ("jump to definition"), extraction of type, ... > > > Merlin is available on opam and can be installed with `opam install > merlin`. It can also be built from sources, which are available at > http://github.com/the-lambda-church/merlin . > > > As always you can find a full changelog at > https://github.com/the-lambda-church/merlin/blob/master/CHANGELOG , > but the highlights are : > > - The introduction of support for PPX syntax extensions. > > - The introduction of a "destruct" command for automatic match pattern > generation, as demonstrated on : > http://the-lambda-church.github.io/merlin/destruct.ogv > > - Major changes to the vim plugin, introducing (among other things) a > type history buffer allowing one to navigate the history of printed > types and copy/paste them. > > We want to thank: Geoff Gole, Rudi Grinberg, Markus Mottl, Roman > Vorobets and Arthur Wendling, who all contributed to this release. > We also thank JaneStreet for their continued support. > > The Merlin team > > -- > Caml-list mailing list. Subscription management and archives: > https://sympa.inria.fr/sympa/arc/caml-list > Beginner's list: http://groups.yahoo.com/group/ocaml_beginners > Bug reports: http://caml.inria.fr/bin/caml-bugs > -- /Mads --047d7bf0c39a1f8ebe050dde07f5 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable
Awesome work! The destruct command is my new favourite com= mand. Keep up the good work!

/Mads

On Thu, Jan 29, 2015 at 11:01 AM,= Thomas Refis <thomas.refis@gmail.com> wrote:
Merlin is an editor-independent tool to ease the d= evelopement of
programs in OCaml. It aims at providing features available in modern
IDEs such as: "as you type" error reporting, auto completion, sou= rce
browsing ("jump to definition"), extraction of type, ...


Merlin is available on opam and can be installed with `opam install
merlin`. It can also be built from sources, which are available at
ht= tp://github.com/the-lambda-church/merlin .


As always you can find a full changelog at
https://github.com/the-lambda-church/merlin/blob/maste= r/CHANGELOG ,
but the highlights are :

- The introduction of support for PPX syntax extensions.

- The introduction of a "destruct" command for automatic match pa= ttern
generation, as demonstrated on :
http://the-lambda-church.github.io/merlin/destruct.ogv

- Major changes to the vim plugin, introducing (among other things) a
type history buffer allowing one to navigate the history of printed
types and copy/paste them.

We want to thank: Geoff Gole, Rudi Grinberg, Markus Mottl, Roman
Vorobets and Arthur Wendling, who all contributed to this release.
We also thank JaneStreet for their continued support.

The Merlin team

--
Caml-list mailing list.=C2=A0 Subscription management and archives:
ht= tps://sympa.inria.fr/sympa/arc/caml-list
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
Bug reports: http://caml.inria.fr/bin/caml-bugs



--
/Mads
--047d7bf0c39a1f8ebe050dde07f5--