From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.comp.tex.context/25810 Path: news.gmane.org!not-for-mail From: Hans Hagen Newsgroups: gmane.comp.tex.context Subject: Re: Identifying context files Date: Fri, 03 Feb 2006 09:15:08 +0100 Message-ID: <43E3110C.3030205@wxs.nl> References: <9ABF20CA-1E6F-45ED-B523-B338876050D9@uni-bonn.de> Reply-To: mailing list for ConTeXt users NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1138954518 18022 80.91.229.2 (3 Feb 2006 08:15:18 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 3 Feb 2006 08:15:18 +0000 (UTC) Original-X-From: ntg-context-bounces@ntg.nl Fri Feb 03 09:15:15 2006 Return-path: Envelope-to: gctc-ntg-context-518@m.gmane.org Original-Received: from ronja.vet.uu.nl ([131.211.172.88] helo=ronja.ntg.nl) by ciao.gmane.org with esmtp (Exim 4.43) id 1F4w67-0003x9-0D for gctc-ntg-context-518@m.gmane.org; Fri, 03 Feb 2006 09:15:15 +0100 Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 7655A12820; Fri, 3 Feb 2006 09:15:14 +0100 (CET) Original-Received: from ronja.ntg.nl ([127.0.0.1]) by localhost (smtp.ntg.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 23692-05; Fri, 3 Feb 2006 09:15:11 +0100 (CET) Original-Received: from ronja.vet.uu.nl (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 33F0B127B0; Fri, 3 Feb 2006 09:15:11 +0100 (CET) Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id E7B1D127B0 for ; Fri, 3 Feb 2006 09:15:09 +0100 (CET) Original-Received: from ronja.ntg.nl ([127.0.0.1]) by localhost (smtp.ntg.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 23571-07-2 for ; Fri, 3 Feb 2006 09:15:08 +0100 (CET) Original-Received: from mail.pragma-ade.net (dsl-212-84-128-085.solcon.nl [212.84.128.85]) by ronja.ntg.nl (Postfix) with SMTP id 4257012798 for ; Fri, 3 Feb 2006 09:15:07 +0100 (CET) Original-Received: from [10.100.1.102] (unverified [10.100.1.102]) by controller-1 (SurgeMail 3.5b3) with ESMTP id 4182 for ; Fri, 03 Feb 2006 03:28:00 +0300 User-Agent: Thunderbird 1.5 (Windows/20051201) Original-To: mailing list for ConTeXt users In-Reply-To: <9ABF20CA-1E6F-45ED-B523-B338876050D9@uni-bonn.de> X-Server: High Performance Mail Server - http://surgemail.com r=-274017400 X-Authenticated-User: hagen@controller-1 X-Virus-Scanned: amavisd-new at ntg.nl X-BeenThere: ntg-context@ntg.nl X-Mailman-Version: 2.1.7 Precedence: list List-Id: mailing list for ConTeXt users List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: ntg-context-bounces@ntg.nl Errors-To: ntg-context-bounces@ntg.nl X-Virus-Scanned: amavisd-new at ntg.nl Xref: news.gmane.org gmane.comp.tex.context:25810 Archived-At: Thomas A. Schmitz wrote: > That sounds like an excellent idea, and I'd be very grateful to have > such a detector. As to keywords: most of my ConTeXt files start with > \enableregime; you may want to add this to your list. > > Best > > Thomas > > > On Feb 3, 2006, at 3:17 AM, Aditya Mahajan wrote: > > >> I use (g)vim to edit both context and latex files. Unfortunately, both >> of them usually have *.tex extension. This mean that detecting >> filetype from extension is not possible, so one should look into the >> contents of the file to see if it a context file or not. >> >> I am planning to submit a ftdetect for context to vim. Right now, I >> check if the first six lines of the file contain any of >> '\\start\|\\enablemode\|\\unprotect\|\\setvariables\|\\module\|\ >> \usemodule' >> and if so, set the filetype to context, otherwise it is set to tex >> (that loads latex plugins). >> >> This works for my context writing style. I would like to know about >> other people's preference. >> >> 1. Do you write some keyword unique to context in the first few lines >> of the file. Should I also check the last few line lines. >> convention: % interface=en language=nl program=pdfetex etc, the following are understood by texexec ['tex','texengine'], ['program','texengine'], ['translate','tcxfilter'], ['tcx','tcxfilter'], ['output','backend'], ['mode','mode'], ['ctx','ctxfile'], ['version','contextversion'], ['format','texformats'], ['interface','texformats'] >> 2. Are there any other keywords that you will like to include. >> >> 3. Is it enough to check the first 6 line or should I check more. I do >> not want to check more lines as this will make the detection slower >> (by a few mili secs). >> >> checking does not take much time, for instance in scite, i check till i know; also (probably goes unnoticed), texexec does soem checking: it needs to figure out the interface: Hans