From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail1-relais-roc.national.inria.fr (mail1-relais-roc.national.inria.fr [192.134.164.82]) by walapai.inria.fr (8.13.6/8.13.6) with ESMTP id q48BAMn5011346 for ; Tue, 8 May 2012 13:10:23 +0200 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AlYCAN7+qE9KN1ZKnGdsb2JhbABEhXKtVQEBAQEBCAsJCRQnggwBAQQBI1YFCwsaAhgOAgI9ChAGG4gBBQSne5MggS+ORTVjBJthjUo X-IronPort-AV: E=Sophos;i="4.75,549,1330902000"; d="scan'208";a="157149664" Received: from mail6.webfaction.com (HELO smtp.webfaction.com) ([74.55.86.74]) by mail1-smtp-roc.national.inria.fr with ESMTP; 08 May 2012 13:10:17 +0200 Received: from heyho.local (121-232.197-178.cust.bluewin.ch [178.197.232.121]) by smtp.webfaction.com (Postfix) with ESMTP id A9E4220D60D8; Tue, 8 May 2012 06:10:15 -0500 (CDT) Date: Tue, 8 May 2012 13:10:12 +0200 From: =?utf-8?Q?Daniel_B=C3=BCnzli?= To: Joel Reymont Cc: caml-list@inria.fr Message-ID: <0E9E732C958C4E9A860FEA1B02497060@erratique.ch> In-Reply-To: References: X-Mailer: sparrow 1.5 (build 1043.1) MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: Re: [Caml-list] lag when using typerex > Is it just me or is there a significant lag when using TypeRex in Emacs? > > This is particularly noticeable when deleting by using the backspace key. Here, the lag was due to auto complete mode. Don't invoke it automatically. That's what I have : (add-to-list 'load-path "/Users/dbuenzli/.emacs.d/auto-complete-mode") (require 'auto-complete-config) (add-to-list 'ac-dictionary-directories "/Users/dbuenzli/.emacs.d/auto-complete-mode/ac-dict") (ac-config-default) (global-set-key (kbd "S-") 'auto-complete) (setq ac-auto-start nil) ;;;; I want immediate menu pop-up ;;(setq ac-auto-show-menu 0.) ;;;; Short delay before showing help ;;(setq ac-quick-help-delay 0.3) ;;;; Number of characters required to start (nil to disable) ;;(setq ac-auto-start 0) Best, Daniel