Return-Path: X-Original-To: notmuch@notmuchmail.org Delivered-To: notmuch@notmuchmail.org Received: from localhost (localhost [127.0.0.1]) by olra.theworths.org (Postfix) with ESMTP id B0654431FBC for ; Sat, 20 Feb 2010 09:34:04 -0800 (PST) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: 0.001 X-Spam-Level: X-Spam-Status: No, score=0.001 tagged_above=-999 required=5 tests=[BAYES_50=0.001] autolearn=ham Received: from olra.theworths.org ([127.0.0.1]) by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 56ZzBLxv4zJt for ; Sat, 20 Feb 2010 09:34:03 -0800 (PST) Received: from mail-vw0-f53.google.com (mail-vw0-f53.google.com [209.85.212.53]) by olra.theworths.org (Postfix) with ESMTP id BE192431FAE for ; Sat, 20 Feb 2010 09:34:03 -0800 (PST) Received: by vws8 with SMTP id 8so183629vws.26 for ; Sat, 20 Feb 2010 09:34:03 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:content-type:subject:from:to :in-reply-to:references:date:message-id:user-agent :content-transfer-encoding; bh=+sV0R0OLTTT/I0ynff6LSeAIeEfLtkCQiBEfF7U7Hdc=; b=gQTV4g0vVXo4UmN3Ec/tAEHg/SOU61WSK73iozcFR1K8820xT1QTgeCpGvYr38OkQq hDEURTvV5Ox1kyq8dhzA0Yy7/cgHM7idmz0jQo0m9hxfWwxE5hSl3YLg06OOKkv9NKsE AmyaekIjlXDNQgF1nDueWpQYs1axXTRcFFCvI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=content-type:subject:from:to:in-reply-to:references:date:message-id :user-agent:content-transfer-encoding; b=rvXmHqxtDVkquTKhZNf8J0cIJNgOA7CUVWIHJp/OcHgDepHz+TXr8ehEVDNp39cOgb NBXiDI25xU3Jlosqnl4jhE9pOfnHLP3DxdMdw58sslCsAXNZJ39Y8fsRFoL51L6c78Q9 Z2a+mNk8j/gYPj9YJw4Tt/vR++Dzvbn1en1Og= Received: by 10.220.121.229 with SMTP id i37mr5561469vcr.95.1266687243125; Sat, 20 Feb 2010 09:34:03 -0800 (PST) Received: from localhost (208-58-69-114.c3-0.161-ubr2.lnh-161.md.cable.rcn.com [208.58.69.114]) by mx.google.com with ESMTPS id 26sm13011251vws.16.2010.02.20.09.34.01 (version=TLSv1/SSLv3 cipher=RC4-MD5); Sat, 20 Feb 2010 09:34:02 -0800 (PST) Content-Type: text/plain; charset=UTF-8 From: Ben Gamari To: notmuch In-reply-to: <20100219164924.GA17997@localhost> References: <20100219164924.GA17997@localhost> Date: Sat, 20 Feb 2010 12:34:00 -0500 Message-Id: <1266684499-sup-8107@ben-laptop> User-Agent: Sup/git Content-Transfer-Encoding: 8bit Subject: Re: [notmuch] vim client X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Feb 2010 17:34:04 -0000 Excerpts from Arian Kuschki's message of Fri Feb 19 11:49:25 -0500 2010: > Hi all > thank you for notmuch, it is a great project. I have been watching > progress for a while but then I could no longer restrain myself and > started using notmuch's vim client even though it is still a bit rough > around the edges. Unfortunately there are some quirks that > prevent me from switching over completely. > questions: > > 1. will there be a usable ncurses or mutt version that supports notmuch > anytime soon? Not that I know of. I've thought of starting something before. I really want to start using notmuch full-time myself, but I agree, the vim client is far from usable. > 2. is anybody working on the vim client? I have a small patch and might > have couple more as time passes. Is this mailing list the right place to > discuss this? From what I can gather the discussion seems to be centred > mainly on the emacs client. I don't believe there is anyone working actively on the vim frontend at the moment. I looked at it not so long ago and the code is pretty good. The real problem is all notmuch calls are synchronous. Vim unfortunately lacks the excellent asynchronous subprocess interface that emacs has. Therefore, I'm afraid the vim client is going to be just as unuable until someone has implemented asynchronous subprocess support. I have a tree starting this sitting around somewhere, but it still has a ways to go and I won't have time to finish until midterms are over at the earliest. If someone else wants to take a stab at it, the code is available git://goldnerlab.physics.umass.edu/vim7.git (the async-process branch). I'd love to know if anyone makes any progress and I'll keep you all in the loop if I find any time to invest in it. I have considered starting work on an ncurses frontend, but I think ultimately that time would be better used in working on the async vim code. Vim gives us a whole lot of functionality for free that would take time to get working on a new ncurses client (e.g. windowing) and I would far prefer to use notmuch from within vim than from another specialized application. Cheers, - Ben