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 mail2-relais-roc.national.inria.fr (mail2-relais-roc.national.inria.fr [192.134.164.83]) by sympa.inria.fr (Postfix) with ESMTPS id 72EC47F02D for ; Wed, 8 Oct 2014 16:27:18 +0200 (CEST) Received-SPF: None (mail2-smtp-roc.national.inria.fr: no sender authenticity information available from domain of ygrek@autistici.org) identity=pra; client-ip=82.94.249.234; receiver=mail2-smtp-roc.national.inria.fr; envelope-from="ygrek@autistici.org"; x-sender="ygrek@autistici.org"; x-conformance=sidf_compatible Received-SPF: Pass (mail2-smtp-roc.national.inria.fr: domain of ygrek@autistici.org designates 82.94.249.234 as permitted sender) identity=mailfrom; client-ip=82.94.249.234; receiver=mail2-smtp-roc.national.inria.fr; envelope-from="ygrek@autistici.org"; x-sender="ygrek@autistici.org"; x-conformance=sidf_compatible; x-record-type="v=spf1" Received-SPF: Pass (mail2-smtp-roc.national.inria.fr: domain of postmaster@latitanza.investici.org designates 82.94.249.234 as permitted sender) identity=helo; client-ip=82.94.249.234; receiver=mail2-smtp-roc.national.inria.fr; envelope-from="ygrek@autistici.org"; x-sender="postmaster@latitanza.investici.org"; x-conformance=sidf_compatible; x-record-type="v=spf1" X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AsYBAAtJNVRSXvnqlWdsb2JhbABf1xYCgQoWAREBAQEBCQsJCRIuhAQBAQMBOj8FCwsJGCUPSAaISQzCOBiQRAeESwWLWocjikYBh2KSGIMpAQEB X-IPAS-Result: AsYBAAtJNVRSXvnqlWdsb2JhbABf1xYCgQoWAREBAQEBCQsJCRIuhAQBAQMBOj8FCwsJGCUPSAaISQzCOBiQRAeESwWLWocjikYBh2KSGIMpAQEB X-IronPort-AV: E=Sophos;i="5.04,677,1406584800"; d="scan'208";a="100035776" Received: from latitanza.investici.org ([82.94.249.234]) by mail2-smtp-roc.national.inria.fr with ESMTP/TLS/DHE-RSA-AES256-SHA; 08 Oct 2014 16:27:18 +0200 Received: from [82.94.249.234] (latitanza [82.94.249.234]) (Authenticated sender: ygrek@autistici.org) by localhost (Postfix) with ESMTPSA id BA7441208A0; Wed, 8 Oct 2014 14:27:15 +0000 (UTC) Date: Wed, 8 Oct 2014 22:27:09 +0800 From: ygrek To: Matej Kosik <5764c029b688c1c0d24a2e97cd764f@gmail.com> Cc: Caml List Message-ID: <20141008222709.50c876a3@kiwi.local.tld> In-Reply-To: <54354874.5090109@gmail.com> References: <54354874.5090109@gmail.com> X-Mailer: Claws Mail 3.10.1 (GTK+ 2.24.23; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: [Caml-list] questions about merlin, vim and the Locate command Hi, > Is backtracking supported? > E.g., if you make 10 jumps forward, is it possible to gradually return where you started? > (something similar to the "tag stack" maintained "ctags" / "otags") The usual vim's Ctrl-O Ctrl-I works. > Is there a way to prevent this window splitting? > That is, an appropriate buffer at appropriate position would be displayed in the current window? Put in ~/.vimrc let g:merlin_split_method = 'never' --