From unknown Fri Jun 20 07:13:05 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#29398 <29398@debbugs.gnu.org> To: bug#29398 <29398@debbugs.gnu.org> Subject: Status: company-minimum-prefix-length Reply-To: bug#29398 <29398@debbugs.gnu.org> Date: Fri, 20 Jun 2025 14:13:05 +0000 retitle 29398 company-minimum-prefix-length reassign 29398 auctex submitter 29398 Frederik Beaujean severity 29398 normal thanks From debbugs-submit-bounces@debbugs.gnu.org Wed Nov 22 11:21:45 2017 Received: (at submit) by debbugs.gnu.org; 22 Nov 2017 16:21:45 +0000 Received: from localhost ([127.0.0.1]:52932 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1eHXmT-0000LQ-7I for submit@debbugs.gnu.org; Wed, 22 Nov 2017 11:21:45 -0500 Received: from eggs.gnu.org ([208.118.235.92]:51617) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1eHR30-0004Mx-4Q for submit@debbugs.gnu.org; Wed, 22 Nov 2017 04:10:22 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eHR2q-0008MJ-Si for submit@debbugs.gnu.org; Wed, 22 Nov 2017 04:10:16 -0500 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: ** X-Spam-Status: No, score=2.1 required=5.0 tests=BAYES_50,HTML_MESSAGE, TRACKER_ID autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:52548) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1eHR2q-0008MF-Pa for submit@debbugs.gnu.org; Wed, 22 Nov 2017 04:10:12 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:42575) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eHR2k-0005xT-PC for bug-auctex@gnu.org; Wed, 22 Nov 2017 04:10:12 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eHR2h-0008Fg-I6 for bug-auctex@gnu.org; Wed, 22 Nov 2017 04:10:06 -0500 Received: from mail.physik.uni-muenchen.de ([192.54.42.129]:55742) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1eHR2h-00089G-Aw for bug-auctex@gnu.org; Wed, 22 Nov 2017 04:10:03 -0500 X-Virus-Scanned: amavisd-new at physik.uni-muenchen.de To: bug-auctex@gnu.org From: Frederik Beaujean Subject: company-minimum-prefix-length Message-ID: <6baea62e-4925-3208-84cf-826bc7423c21@lmu.de> Date: Wed, 22 Nov 2017 10:11:36 +0100 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="------------D1C3FA8F085B3704E48166B4" Content-Language: en-US X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x [fuzzy] X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -3.9 (---) X-Debbugs-Envelope-To: submit X-Mailman-Approved-At: Wed, 22 Nov 2017 11:21:44 -0500 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.9 (---) This is a multi-part message in MIME format. --------------D1C3FA8F085B3704E48166B4 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Dear auctex developers, I'm using auctex with the company completion system. The problem is that company-minimum-prefix-length is ignored in tex files. This is annoying when typesetting math with the usual single-character symbols like |i| or |n| because I have to press C-g multiple times to turn of the completion overlay. I had initially posted this issue on github with spacemacs and company-auctex, it affects several people as well https://github.com/syl20bnr/spacemacs/issues/9388 https://github.com/alexeyr/company-auctex/issues/18 The root of the problems seems this code in auctex/tex.el in v11.91 |;; By default, company completions kick in after a prefix of 3 chars has= ;; been typed. Since we don't have too many completions, that's too ;; much. (set (make-local-variable 'company-minimum-prefix-length) 1))) | |I don't |understand the explanation given for creating this local variable. I request that it be removed or done in such a way that it doesn't override global user settings. bye Fred || --------------D1C3FA8F085B3704E48166B4 Content-Type: text/html; charset=utf-8 Content-Transfer-Encoding: quoted-printable

Dear auctex developers,

I'm using auctex with the company completion system. The problem is that

company-minimum-prefix-length

is ignored in tex files. This is annoying when typesetting math with the usual single-character symbols like i or n because I have to press C-g multiple times to turn of the completion overlay.

I had initially posted this issue on github with spacemacs and company-auctex, it affects several people as well

https://github.com/syl20bnr/spacemacs/issues/= 9388

https://github.com/alexeyr/company-auctex/i= ssues/18

The root of the problems seems this code in auctex/tex.el in v11.91

;; By default, company completions kick in after a prefix =
of 3 chars has
;; been typed.  Since we don't have too many completions, that's too
;; much.
(set (make-local-variable 'company-minimum-prefix-length) 1)))

I don't understand the explanation given for creating this local variable. I request that it be removed or done in such a way that it doesn't override global user settings.

bye

Fred
--------------D1C3FA8F085B3704E48166B4-- From debbugs-submit-bounces@debbugs.gnu.org Wed Nov 22 17:32:18 2017 Received: (at 29398) by debbugs.gnu.org; 22 Nov 2017 22:32:18 +0000 Received: from localhost ([127.0.0.1]:53186 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1eHdZ3-0002tI-Uh for submit@debbugs.gnu.org; Wed, 22 Nov 2017 17:32:18 -0500 Received: from eggs.gnu.org ([208.118.235.92]:46316) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1eHdZ0-0002t4-G3 for 29398@debbugs.gnu.org; Wed, 22 Nov 2017 17:32:14 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eHdYq-0005ql-OR for 29398@debbugs.gnu.org; Wed, 22 Nov 2017 17:32:09 -0500 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.8 required=5.0 tests=BAYES_50,T_RP_MATCHES_RCVD autolearn=disabled version=3.3.2 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:42883) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eHdYq-0005pz-Ew for 29398@debbugs.gnu.org; Wed, 22 Nov 2017 17:32:04 -0500 Received: from mail-it0-f47.google.com ([209.85.214.47]:39361) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_128_CBC_SHA1:128) (Exim 4.82) (envelope-from ) id 1eHdYq-0008Ga-4t for 29398@debbugs.gnu.org; Wed, 22 Nov 2017 17:32:04 -0500 Received: by mail-it0-f47.google.com with SMTP id x13so8163331iti.4 for <29398@debbugs.gnu.org>; Wed, 22 Nov 2017 14:32:04 -0800 (PST) X-Gm-Message-State: AJaThX6kHmdfWN4782SyOiRZjfB8mSMQk/CAYHS9YOB/NFyosrDr/TpC onkZFrR5lbXUeVvRb040WF8X1aOxKI0arR0NMUk= X-Google-Smtp-Source: AGs4zMa+/G3837VHEdLciYobAi1IzOFYu01O7eofIkHtIwiOBP4LsBYUEdo3aMLzlNb6GKFvvp23iKDRRRBwa0EiN38= X-Received: by 10.36.37.2 with SMTP id g2mr8976331itg.107.1511389923361; Wed, 22 Nov 2017 14:32:03 -0800 (PST) MIME-Version: 1.0 Received: by 10.2.138.98 with HTTP; Wed, 22 Nov 2017 14:31:22 -0800 (PST) In-Reply-To: <6baea62e-4925-3208-84cf-826bc7423c21@lmu.de> References: <6baea62e-4925-3208-84cf-826bc7423c21@lmu.de> From: =?UTF-8?Q?Mos=C3=A8_Giordano?= Date: Wed, 22 Nov 2017 23:31:22 +0100 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: bug#29398: company-minimum-prefix-length To: Frederik Beaujean , Tassilo Horn Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e X-Spam-Score: -5.0 (-----) X-Debbugs-Envelope-To: 29398 Cc: 29398@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -5.0 (-----) Hi Fred, 2017-11-22 10:11 GMT+01:00 Frederik Beaujean : > Dear auctex developers, > > I'm using auctex with the company completion system. The problem is that > > company-minimum-prefix-length > > is ignored in tex files. This is annoying when typesetting math with the > usual single-character symbols like i or n because I have to press C-g > multiple times to turn of the completion overlay. > > I had initially posted this issue on github with spacemacs and > company-auctex, it affects several people as well > > https://github.com/syl20bnr/spacemacs/issues/9388 > > https://github.com/alexeyr/company-auctex/issues/18 > > The root of the problems seems this code in auctex/tex.el in v11.91 > > ;; By default, company completions kick in after a prefix of 3 chars has > ;; been typed. Since we don't have too many completions, that's too > ;; much. > (set (make-local-variable 'company-minimum-prefix-length) 1))) > > I don't understand the explanation given for creating this local variable= . I > request that it be removed or done in such a way that it doesn't override > global user settings. You can override this setting with (add-hook 'TeX-mode-hook '(lambda () (setq company-minimum-prefix-length 3))) However, I see that you'd like to avoid setting again the option. Tassilo, could you please give a look at this? Bye, Mos=C3=A8 From debbugs-submit-bounces@debbugs.gnu.org Thu Nov 23 02:15:21 2017 Received: (at 29398) by debbugs.gnu.org; 23 Nov 2017 07:15:21 +0000 Received: from localhost ([127.0.0.1]:53285 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1eHljF-0000a2-22 for submit@debbugs.gnu.org; Thu, 23 Nov 2017 02:15:21 -0500 Received: from out4-smtp.messagingengine.com ([66.111.4.28]:56189) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1eHljB-0000Zt-JA for 29398@debbugs.gnu.org; Thu, 23 Nov 2017 02:15:17 -0500 Received: from compute7.internal (compute7.nyi.internal [10.202.2.47]) by mailout.nyi.internal (Postfix) with ESMTP id 0276F207F5; Thu, 23 Nov 2017 02:15:16 -0500 (EST) Received: from frontend1 ([10.202.2.160]) by compute7.internal (MEProxy); Thu, 23 Nov 2017 02:15:16 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-sender:x-me-sender:x-sasl-enc; s=fm1; bh=ZbLVAL 3uY7C8tHo8o4jIOKZ0PTvIlNH4qJ4YmWk1XLA=; b=Aj4lDnaQC15JHEfTmc5vFE 7Xqn79Uj3nd4L2Fwt816VeaSf0iLIpsfxKdJr2gm6tHUeeicY1LwDjf5U7w0wV3T ztTWFxotnxl288Of8R1Of5ynYdKcSdVVfr3jXl3AQVHXUKeevueb+8Ay/CGv5193 g/4p6Dj1DHf1fN/EIWze0V0xGbxGGlvD2jyg5bqW04TAcjmQEYuVjEDv3G/l/2et cNJhwoE9XSWJhr1+G5Qz/RDV8oV04vO/0yMiK9jiJKnOoCuLKYS0Db1vsftMKYrB JdhJIA9G+cFs7IPJtndz9v6zQGLDBT+YFSDmKyr3H0txCIGcCyO++nM+J3e/nFrg == X-ME-Sender: Received: from thinkpad-t440p (p5dec838f.dip0.t-ipconnect.de [93.236.131.143]) by mail.messagingengine.com (Postfix) with ESMTPA id E9D167F7F2; Thu, 23 Nov 2017 02:15:04 -0500 (EST) From: Tassilo Horn To: =?utf-8?Q?Mos=C3=A8?= Giordano Subject: Re: bug#29398: company-minimum-prefix-length References: <6baea62e-4925-3208-84cf-826bc7423c21@lmu.de> Date: Thu, 23 Nov 2017 08:14:58 +0100 In-Reply-To: (=?utf-8?Q?=22Mos=C3=A8?= Giordano"'s message of "Wed, 22 Nov 2017 23:31:22 +0100") Message-ID: <8760a1xy8d.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: 0.3 (/) X-Debbugs-Envelope-To: 29398 Cc: Frederik Beaujean , 29398@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 0.3 (/) Mos=C3=A8 Giordano writes: Hi Fred and Mos=C3=A8, >> The root of the problems seems this code in auctex/tex.el in v11.91 >> >> ;; By default, company completions kick in after a prefix of 3 chars has >> ;; been typed. Since we don't have too many completions, that's too >> ;; much. >> (set (make-local-variable 'company-minimum-prefix-length) 1))) >> >> I don't understand the explanation given for creating this local >> variable. The explanation is that usually there are not too many TeX completions, so if the completion popup would kick not before three characters are typed, in many cases there would only be one single completion candidate left over. \alpha, \beta, \cite, and \label are typical examples. If the standard `company-minimum-prefix-length' of 3 was used, you would need to type \alp, \bet, \cit, and \lab before the completion would kick in, and then there would only be one single candidate left, so that wouldn't be very helpful. (Of course, if you use many packages in a document, the number of available completions might be larger and with more overlay, so a higher prefix length might be reasonable.) >> I request that it be removed or done in such a way that it doesn't >> override global user settings. > > You can override this setting with > > (add-hook 'TeX-mode-hook > '(lambda () > (setq company-minimum-prefix-length 3))) > > However, I see that you'd like to avoid setting again the option. > Tassilo, could you please give a look at this? Well, I can simply remove it and add some docs explaining how users can override the standard value for TeX modes for users who actually like the current behavior (like myself). Should I? Bye, Tassilo From debbugs-submit-bounces@debbugs.gnu.org Thu Nov 23 03:04:51 2017 Received: (at 29398-done) by debbugs.gnu.org; 23 Nov 2017 08:04:51 +0000 Received: from localhost ([127.0.0.1]:53326 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1eHmV9-0001oW-6q for submit@debbugs.gnu.org; Thu, 23 Nov 2017 03:04:51 -0500 Received: from out4-smtp.messagingengine.com ([66.111.4.28]:43407) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1eHmV6-0001oO-Rd for 29398-done@debbugs.gnu.org; Thu, 23 Nov 2017 03:04:49 -0500 Received: from compute7.internal (compute7.nyi.internal [10.202.2.47]) by mailout.nyi.internal (Postfix) with ESMTP id 5EBA420A52; Thu, 23 Nov 2017 03:04:48 -0500 (EST) Received: from frontend2 ([10.202.2.161]) by compute7.internal (MEProxy); Thu, 23 Nov 2017 03:04:48 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-sender :x-me-sender:x-sasl-enc; s=fm1; bh=YQe5v+gEbLv7eKzvwcC8asE+EjAup GvsAIMNf7nr6Hk=; b=mAvCJmyqnJajeAlIkBd9y6FtZ9VOJ7fKc7lJWWGOH5FXE zXWZM9umvq23xnnv8JHr439K4IWaLgap475D5XuYAN/nFGN5MdtJF/XYCp59RqPg etEQWV7CQYxgvymCWlAlMG5ct8BagZ02U1x3Q/yYvvKZQqstevOHf4YMV3welSZP w1Km8ma7kqhdIdeyJqJXoiG8azYfI2erf/1qIAZAJcKBWnWxxBAvTo5GwMJCuVZz w21JxCWA3/l+eqBSjgXZONSllf0EezjXQBWdyQaxgqTbNIcBVYyNNcStA6bDsISL x+QrcBTAGrRcKrTjimVYENWvPtCZGOfJj+LDFFzzA== X-ME-Sender: Received: from thinkpad-t440p (p5dec838f.dip0.t-ipconnect.de [93.236.131.143]) by mail.messagingengine.com (Postfix) with ESMTPA id 8A02724731; Thu, 23 Nov 2017 03:04:44 -0500 (EST) From: Tassilo Horn To: =?utf-8?Q?Mos=C3=A8?= Giordano Subject: Re: bug#29398: company-minimum-prefix-length References: <6baea62e-4925-3208-84cf-826bc7423c21@lmu.de> <8760a1xy8d.fsf@gnu.org> Date: Thu, 23 Nov 2017 09:04:42 +0100 In-Reply-To: <8760a1xy8d.fsf@gnu.org> (Tassilo Horn's message of "Thu, 23 Nov 2017 08:14:58 +0100") Message-ID: <871skpxvxh.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.3 (/) X-Debbugs-Envelope-To: 29398-done Cc: Frederik Beaujean , 29398-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 0.3 (/) Hi all, I've removed the code. The argument that many users also use the dabbrev company backend in combination with the native completion of the mode made sense. In that case, you might have thousands of completions with a too short prefix length. Bye, Tassilo From debbugs-submit-bounces@debbugs.gnu.org Thu Nov 23 10:25:36 2017 Received: (at 29398-done) by debbugs.gnu.org; 23 Nov 2017 15:25:36 +0000 Received: from localhost ([127.0.0.1]:54018 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1eHtNg-00064D-BD for submit@debbugs.gnu.org; Thu, 23 Nov 2017 10:25:36 -0500 Received: from eggs.gnu.org ([208.118.235.92]:56152) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1eHtNe-000640-Tw for 29398-done@debbugs.gnu.org; Thu, 23 Nov 2017 10:25:35 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eHtNX-0002A1-1S for 29398-done@debbugs.gnu.org; Thu, 23 Nov 2017 10:25:29 -0500 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.8 required=5.0 tests=BAYES_50,T_RP_MATCHES_RCVD autolearn=disabled version=3.3.2 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:60485) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eHtNW-00029p-Nj for 29398-done@debbugs.gnu.org; Thu, 23 Nov 2017 10:25:26 -0500 Received: from mail-io0-f181.google.com ([209.85.223.181]:37858) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_128_CBC_SHA1:128) (Exim 4.82) (envelope-from ) id 1eHtNW-0004Qp-BR for 29398-done@debbugs.gnu.org; Thu, 23 Nov 2017 10:25:26 -0500 Received: by mail-io0-f181.google.com with SMTP id v21so27003564ioi.4 for <29398-done@debbugs.gnu.org>; Thu, 23 Nov 2017 07:25:26 -0800 (PST) X-Gm-Message-State: AJaThX7NepElmZUfCCYPb2Dkbet2c90xzMTlwu/uKQ2wOu8vs2kj1GMt reLEZMBOfJoej8RbQT2dkOxrldnsfXiWcLr3B1A= X-Google-Smtp-Source: AGs4zMaFhajxWpfhE8BcmRtYucNOdsjk2/qZaD+6+6DYRPhuSgoDbUbvWruuitSbJrriaQJpP4UnjQHhARuu00agyPo= X-Received: by 10.107.157.212 with SMTP id g203mr25933148ioe.182.1511450725723; Thu, 23 Nov 2017 07:25:25 -0800 (PST) MIME-Version: 1.0 Received: by 10.2.138.98 with HTTP; Thu, 23 Nov 2017 07:24:45 -0800 (PST) In-Reply-To: <871skpxvxh.fsf@gnu.org> References: <6baea62e-4925-3208-84cf-826bc7423c21@lmu.de> <8760a1xy8d.fsf@gnu.org> <871skpxvxh.fsf@gnu.org> From: =?UTF-8?Q?Mos=C3=A8_Giordano?= Date: Thu, 23 Nov 2017 16:24:45 +0100 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: bug#29398: company-minimum-prefix-length To: Tassilo Horn Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e X-Spam-Score: -5.0 (-----) X-Debbugs-Envelope-To: 29398-done Cc: Frederik Beaujean , 29398-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -5.0 (-----) Hi Tassilo, 2017-11-23 9:04 GMT+01:00 Tassilo Horn : > Hi all, > > I've removed the code. The argument that many users also use the > dabbrev company backend in combination with the native completion of the > mode made sense. In that case, you might have thousands of completions > with a too short prefix length. Great! Thanks for taking care of this. Bye, Mos=C3=A8 From debbugs-submit-bounces@debbugs.gnu.org Thu Nov 23 12:14:03 2017 Received: (at 29398) by debbugs.gnu.org; 23 Nov 2017 17:14:03 +0000 Received: from localhost ([127.0.0.1]:54087 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1eHv4a-00009i-Ts for submit@debbugs.gnu.org; Thu, 23 Nov 2017 12:14:03 -0500 Received: from mail.physik.uni-muenchen.de ([192.54.42.129]:46380) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1eHmXD-0001rp-RK for 29398@debbugs.gnu.org; Thu, 23 Nov 2017 03:07:02 -0500 X-Virus-Scanned: amavisd-new at physik.uni-muenchen.de Subject: Re: bug#29398: closed (Re: bug#29398: company-minimum-prefix-length) To: 29398@debbugs.gnu.org References: <871skpxvxh.fsf@gnu.org> <6baea62e-4925-3208-84cf-826bc7423c21@lmu.de> From: Frederik Beaujean Message-ID: <6b7137f0-040b-e949-3b08-a104d7136ee6@lmu.de> Date: Thu, 23 Nov 2017 09:08:42 +0100 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Content-Language: en-US X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 29398 X-Mailman-Approved-At: Thu, 23 Nov 2017 12:13:58 -0500 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.3 (--) Thanks a lot for the quick fix. I think the behavior is much more consistent now as it respects the user setting. I very much appreciate your readiness to change this setting even though you liked it the way it was before! Best regards Fred Am 23.11.2017 um 09:05 schrieb GNU bug Tracking System: > Your bug report > > #29398: company-minimum-prefix-length > > which was filed against the auctex package, has been closed. > > The explanation is attached below, along with your original report. > If you require more details, please reply to 29398@debbugs.gnu.org. > From unknown Fri Jun 20 07:13:05 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Fri, 22 Dec 2017 12:24:06 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator