all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: rusi <rustompmody@gmail.com>
To: help-gnu-emacs@gnu.org
Subject: Re: Passing current buffer to compile command
Date: Sun, 16 Jan 2011 19:29:50 -0800 (PST)	[thread overview]
Message-ID: <113f82c8-b020-4405-b0b3-6f77df748f4b@l17g2000yqe.googlegroups.com> (raw)
In-Reply-To: ba521a16-3fe8-43e1-8061-dead51b295c6@q35g2000vbb.googlegroups.com

On Jan 17, 12:12 am, duke <sidney.reilley...@gmail.com> wrote:
> How do I do that? I'm not using make, but another compiler. So I need
> to pass a filename. Instead of inputing the filename, how do I pass
> the current buffer file name? %f ?
> --
> duke

In vi '%' at the colon prompt gives the file name. (Like your %f)
The following will give that to you in the minibuffer
[But beware of using it with buffers that have no file associated)

(define-key minibuffer-local-map "%"
  (function
   (lambda ()
     (interactive)
     (insert (file-name-nondirectory
              (buffer-file-name
               (window-buffer (minibuffer-selected-window))))))))


  parent reply	other threads:[~2011-01-17  3:29 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-01-16 19:12 Passing current buffer to compile command duke
2011-01-16 20:50 ` Peter Dyballa
2011-01-16 21:12 ` Pascal J. Bourguignon
     [not found] ` <mailman.12.1295211063.24679.help-gnu-emacs@gnu.org>
2011-01-16 21:54   ` duke
2011-01-16 22:53     ` Eli Zaretskii
2011-01-19  4:41       ` Kevin Rodgers
2011-01-16 23:42     ` Peter Dyballa
     [not found]     ` <mailman.1.1295218445.29897.help-gnu-emacs@gnu.org>
2011-01-17  1:29       ` duke
2011-01-17 12:44         ` Eli Zaretskii
     [not found]         ` <mailman.2.1295268672.1793.help-gnu-emacs@gnu.org>
2011-01-17 19:08           ` duke
2011-01-16 21:58 ` despen
2011-01-17  5:48   ` despen
2011-01-17 19:09     ` duke
2011-01-17  3:29 ` rusi [this message]
2011-01-17  3:49   ` rusi
2011-01-17 19:07     ` duke
2011-01-18  3:42       ` rusi
2011-01-18  4:05         ` rusi
2011-01-18 16:06           ` Le Wang
     [not found]           ` <mailman.0.1295366801.24998.help-gnu-emacs@gnu.org>
2011-01-19 20:12             ` duke
2011-01-18  5:14         ` duke
2011-01-21  1:08     ` Drew Adams

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=113f82c8-b020-4405-b0b3-6f77df748f4b@l17g2000yqe.googlegroups.com \
    --to=rustompmody@gmail.com \
    --cc=help-gnu-emacs@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.