From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Pascal Bourguignon Newsgroups: gmane.emacs.help Subject: Re: How to get current filename and absolute path of the file in emacs? Date: Mon, 16 Apr 2007 13:39:00 +0200 Organization: Informatimago Message-ID: <87wt0cft0r.fsf@voyager.informatimago.com> References: <87r6qkhpqd.fsf@voyager.informatimago.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Trace: sea.gmane.org 1176726955 9162 80.91.229.12 (16 Apr 2007 12:35:55 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 16 Apr 2007 12:35:55 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Mon Apr 16 14:35:48 2007 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1HdQQu-00036q-Ld for geh-help-gnu-emacs@m.gmane.org; Mon, 16 Apr 2007 14:35:48 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HdQVV-0000fF-W2 for geh-help-gnu-emacs@m.gmane.org; Mon, 16 Apr 2007 08:40:34 -0400 Original-Path: shelby.stanford.edu!headwall.stanford.edu!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 57 Original-X-Trace: individual.net qFW0l1OJa1Dw30cLvTIfjQigBjbqH0IteZ7nLlh+vPvPovA4cU Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwAQMAAABtzGvEAAAABlBMVEUAAAD///+l2Z/dAAAA oElEQVR4nK3OsRHCMAwF0O8YQufUNIQRGIAja9CxSA55AxZgFO4coMgYrEDDQZWPIlNAjwq9 033pbOBPtbXuB6PKNBn5gZkhGa86Z4x2wE67O+06WxGD/HCOGR0deY3f9Ijwwt7rNGNf6Oac l/GuZTF1wFGKiYYHKSFAkjIo1b6sCYS1sVmFhhhahKQssRjRT90ITWUk6vvK3RsPGs+M1RuR mV+hO/VvFAAAAABJRU5ErkJggg== X-Accept-Language: fr, es, en X-Disabled: X-No-Archive: no User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.94 (gnu/linux) Cancel-Lock: sha1:ji/DCLxJAbmbzg+R/mWqZRLZTn0= Original-Xref: shelby.stanford.edu gnu.emacs.help:147121 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:42725 Archived-At: Matthew Flaschen writes: > Pascal Bourguignon wrote: >> QinGW writes: >> >>> I want to put current filename and file path to clipboard and I cant >>> get it by short key.how can I implement it? >>> Thank a lot. >> >> M-x apropos RET file name RET >> >> We find a buffer-file-name function... interesting! >> > I'd kind of just like to make buffer-file-name an interactive function > (not create a wrapper function with a different name). Anyone know how > to do this? Well, you can call all function with: M-: (fun args...) RET like: M-: (buffer-file-name) RET So it's hardly worth it. If you want to bind it to a key: (global-set-key (kbd "") (lambda () (interactive) (buffer-file-name))) If you really want a command: (defun command-buffer-file-name () (interactive) (buffer-file-name)) and: M-x command-buffer-file-name RET or: (global-set-key (kbd "") 'command-buffer-file-name) and: If the function takes arguments read the doc of interactive and add them to the command. -- __Pascal Bourguignon__ http://www.informatimago.com/ Pour moi, la grande question n'a jamais été: «Qui suis-je? Où vais-je?» comme l'a formulé si adroitement notre ami Pascal, mais plutôt: «Comment vais-je m'en tirer?» -- Jean Yanne