From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Oleksandr Gavenko Newsgroups: gmane.emacs.help Subject: Editing TCL files. As always need a code completion and docstring viewing... Date: Sat, 23 Feb 2013 17:24:36 +0200 Organization: Oleksandr Gavenko , http://gavenkoa.users.sf.net Message-ID: <87obfbt5mz.fsf@gavenkoa.example.com> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1361633113 30551 80.91.229.3 (23 Feb 2013 15:25:13 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 23 Feb 2013 15:25:13 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sat Feb 23 16:25:36 2013 Return-path: Envelope-to: geh-help-gnu-emacs@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 1U9Gye-0006Xg-0C for geh-help-gnu-emacs@m.gmane.org; Sat, 23 Feb 2013 16:25:28 +0100 Original-Received: from localhost ([::1]:39004 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U9GyJ-0004GH-CZ for geh-help-gnu-emacs@m.gmane.org; Sat, 23 Feb 2013 10:25:07 -0500 Original-Received: from eggs.gnu.org ([208.118.235.92]:45719) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U9GyB-0004F2-Ex for help-gnu-emacs@gnu.org; Sat, 23 Feb 2013 10:25:02 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1U9Gy4-00038V-R2 for help-gnu-emacs@gnu.org; Sat, 23 Feb 2013 10:24:59 -0500 Original-Received: from plane.gmane.org ([80.91.229.3]:49900) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U9Gy4-00038Q-KV for help-gnu-emacs@gnu.org; Sat, 23 Feb 2013 10:24:52 -0500 Original-Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1U9GyL-0005J4-Q0 for help-gnu-emacs@gnu.org; Sat, 23 Feb 2013 16:25:09 +0100 Original-Received: from 37.229.4.200 ([37.229.4.200]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 23 Feb 2013 16:25:09 +0100 Original-Received: from gavenkoa by 37.229.4.200 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 23 Feb 2013 16:25:09 +0100 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 49 Original-X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: 37.229.4.200 User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.2 (gnu/linux) Cancel-Lock: sha1:DHj+prxjpu13HJMg8eb8Gr+GiTA= X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 80.91.229.3 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:89242 Archived-At: I work with Expect test scripts (hand written simplified DegaGnu analog). I am newbie on TCL and want some "help" from Emacs when work with Expect scripts. As always this include (hard parts for Emacs): * code completion * in place documentation viewing I read: /usr/share/emacs/24.2/lisp/progmodes/tcl.el.gz http://emacswiki.org/emacs/TclMode http://www.rgrjr.com/emacs/advanced.html#tcl-mode tcl-mode short commands list http://www.oocities.org/gchen275/tcl-info/index.html Emacs Info Files for Tcl/Tk Manuals http://daapp.livejournal.com/2569.html (defun my-tcl-show-doc (&optional command) ... Most frustrated from tcl.el: ;; BEFORE USE: ;; ;; If you plan to use the interface to the TclX help files, you must ;; set the variable tcl-help-directory-list to point to the topmost ;; directories containing the TclX help files. Eg: ;; ;; (setq tcl-help-directory-list '("/usr/local/lib/tclx/help")) I try find something similar without success in today Debian: $ apt-file search -x tclx.*help General web search "TclX help files" doesn't give me result. I have installed "tcl8.6-doc": /usr/share/man/man3/*.3tcl.gz It is possible write code completion and documentation viewing based on these files... What tcl mode to use for TCL8.6/Expect to get completion and documentation integration in Emacs? -- Best regards!