From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: What a modern collaboration toolkit looks like Date: Sat, 05 Jan 2008 12:48:47 +0200 Message-ID: References: <20071230122217.3CA84830B9A@snark.thyrsus.com> <20071231130712.GB8641@thyrsus.com> <20071231214108.GD26639@thyrsus.com> <200801010027.m010R74P025484@oogie-boogie.ics.uci.edu> <200801020417.m024HaJw006930@oogie-boogie.ics.uci.edu> Reply-To: Eli Zaretskii NNTP-Posting-Host: lo.gmane.org X-Trace: ger.gmane.org 1199530131 25287 80.91.229.12 (5 Jan 2008 10:48:51 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 5 Jan 2008 10:48:51 +0000 (UTC) Cc: emacs-devel@gnu.org To: Dan Nicolaescu Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Jan 05 11:49:12 2008 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1JB6aU-0008Fw-Jj for ged-emacs-devel@m.gmane.org; Sat, 05 Jan 2008 11:49:10 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JB6a8-0004iF-2H for ged-emacs-devel@m.gmane.org; Sat, 05 Jan 2008 05:48:48 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JB6a3-0004eB-P8 for emacs-devel@gnu.org; Sat, 05 Jan 2008 05:48:43 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JB6a2-0004an-AI for emacs-devel@gnu.org; Sat, 05 Jan 2008 05:48:43 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JB6a2-0004aa-0k for emacs-devel@gnu.org; Sat, 05 Jan 2008 05:48:42 -0500 Original-Received: from heller.inter.net.il ([213.8.233.23]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JB6a1-0005pa-Is for emacs-devel@gnu.org; Sat, 05 Jan 2008 05:48:41 -0500 Original-Received: from HOME-C4E4A596F7 (IGLD-80-230-71-78.inter.net.il [80.230.71.78]) by heller.inter.net.il (MOS 3.7.3a-GA) with ESMTP id EOF04255 (AUTH halo1); Sat, 5 Jan 2008 12:48:39 +0200 (IST) In-reply-to: <200801020417.m024HaJw006930@oogie-boogie.ics.uci.edu> (message from Dan Nicolaescu on Tue, 01 Jan 2008 20:17:36 -0800) X-detected-kernel: by monty-python.gnu.org: FreeBSD 4.7-5.2 (or MacOS X 10.2-10.4) (2) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:86136 Archived-At: > From: Dan Nicolaescu > Cc: emacs-devel@gnu.org > Date: Tue, 01 Jan 2008 20:17:36 -0800 > > > (defun ez-clcheckout () > > "Checkout from ClearCase the file visited by current buffer." > > (interactive) > > (shell-command (format "cleartool co %s" buffer-file-name)) > > (revert-buffer nil t)) > > (global-set-key (kbd "") 'ez-clcheckout) > > (defun ez-clcheckin () > > "Checkin to ClearCase the file visited by current buffer." > > (interactive) > > (shell-command > > (format "cleartool ci %s" buffer-file-name)) > > (revert-buffer nil t)) > > (global-set-key (kbd "") 'ez-clcheckin) > > Maybe this should use vc-clearcase (if such a thing exists). It exists, but the users for whom I made these customizations weren't used to having any interface to ClearCase in the IDE besides checkout/checkin commands. So I didn't bother installing vc-clearcase, because doing so would need to make global changes on our several dozen lab computers. > Are the f9 and C-f9 the usual keys for this type of functionality in > one some platforms? AFAIU, they are in Visual Studio. > Would be useful for us to add some default extra bindings to the > functions keys for the VC functions? Probably. > > (global-set-key (kbd "") 'next-error) > > We already use f4, so this can't be bound by default :-( Yeah, and I'd be damned if I understand why it's important.