From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: David Engster Newsgroups: gmane.emacs.devel Subject: Re: IDE Date: Sun, 11 Oct 2015 14:37:47 +0200 Message-ID: <87zizpmvhg.fsf@isaac.fritz.box> References: <5612E996.7090700@yandex.ru> <83bnc7tavr.fsf@gnu.org> <5618C92A.3040207@yandex.ru> <83a8rrt9ag.fsf@gnu.org> <5618D376.1080700@yandex.ru> <831td3t62e.fsf@gnu.org> <5618E51D.4070800@yandex.ru> <83twpzrp05.fsf@gnu.org> <5618ED93.8000001@yandex.ru> <83lhbbrnn7.fsf@gnu.org> <56191D6B.8040405@yandex.ru> <838u7assvj.fsf@gnu.org> <5619506B.3050303@gmx.at> <561A382E.6050008@yandex.ru> <561A390E.9020709@gmx.at> <561A3A1D.700@yandex.ru> <878u79ob0m.fsf@isaac.fritz.box> <561A5471.4080406@yandex.ru> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1444567098 23305 80.91.229.3 (11 Oct 2015 12:38:18 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 11 Oct 2015 12:38:18 +0000 (UTC) Cc: martin rudalics , Eli Zaretskii , adatgyujto@gmail.com, emacs-devel@gnu.org To: Dmitry Gutov Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Oct 11 14:38:07 2015 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1ZlFt8-0001pY-Bh for ged-emacs-devel@m.gmane.org; Sun, 11 Oct 2015 14:38:06 +0200 Original-Received: from localhost ([::1]:48245 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZlFt7-0007cR-Fq for ged-emacs-devel@m.gmane.org; Sun, 11 Oct 2015 08:38:05 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:54209) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZlFsv-0007cB-8M for emacs-devel@gnu.org; Sun, 11 Oct 2015 08:37:54 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZlFsr-0001Lg-7z for emacs-devel@gnu.org; Sun, 11 Oct 2015 08:37:53 -0400 Original-Received: from randomsample.de ([5.45.97.173]:56748) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZlFsq-0001LZ-Vx; Sun, 11 Oct 2015 08:37:49 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=randomsample.de; s=a; h=Content-Type:MIME-Version:Message-ID:Date:References:In-Reply-To:Subject:Cc:To:From; bh=803zyx7DRGFl7Zf1dVRojbR6SKz06X8Lz0kJQX7d1iA=; b=g1CKGh/thKffSpj5458yk1/yY2jawc8dzOkhpOmXgyMl8AIdAowPOXBEa2CxxOy602PbE2IADHsmkfRcn45JJZ1feJMxQPBuCx2v1fhV7VZCELM6u1J3ACVQnIRT0j8H; Original-Received: from ip4d1645ea.dynamic.kabel-deutschland.de ([77.22.69.234] helo=isaac.fritz.box) by randomsample.de with esmtpsa (TLS1.2:RSA_AES_128_CBC_SHA1:128) (Exim 4.80) (envelope-from ) id 1ZlFsq-0003RI-61; Sun, 11 Oct 2015 14:37:48 +0200 In-Reply-To: <561A5471.4080406@yandex.ru> (Dmitry Gutov's message of "Sun, 11 Oct 2015 15:22:09 +0300") User-Agent: Gnus/5.13001 (Ma Gnus v0.10) Emacs/24.5 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 5.45.97.173 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:191216 Archived-At: Dmitry Gutov writes: > On 10/11/2015 03:16 PM, David Engster wrote: > >>> I tried (setq semantic-complete-inline-analyzer-displayor-class >>> 'semantic-displayor-tooltip), with no apparent result. >> >> Make sure you call semantic-complete-analyze-inline to display >> completions. > > Tried that. No dice. Works for me from 'emacs -Q' (emacs 24.5, lucid toolkit): - M-x semantic-mode - eval '(setq semantic-complete-inline-analyzer-displayor-class 'semantic-displayor-tooltip)' - Load empty file 'test.c' and insert void foo(); void foo2(); int main() { fo } - Put cursor behind 'fo' and do M-x semantic-complete-analyze-inline. >> Personally, I don't use the tooltip displayor. I don't know if this >> is a >> general problem or one with the implementation in CEDET, but I find >> them >> too slow, and they don't play well with keyboard navigation. > > I thought tooltips don't affect the keyboard input? I mean I cannot choose completions with the keyboard with up/down. But this is a problem with how it is done in CEDET, which was never my cup of tea, but I also didn't work on it because as I said, I found it to be too slow to display in the first place (that was years ago though, and I guess it also depends on the toolkit, plus I often times worked over a remote X connection). -David