From: "Drew Adams" <drew.adams@oracle.com>
To: "'XeCycle'" <XeCycle@Gmail.com>, <help-gnu-emacs@gnu.org>
Subject: RE: yasnippet to expand abbreviation in dired/fileopen command?
Date: Thu, 10 May 2012 09:04:02 -0700 [thread overview]
Message-ID: <D8F854525C4042EEA490D179762D026F@us.oracle.com> (raw)
In-Reply-To: <87obpwgldq.fsf@xc.laptop>
> > I want to open a file on the remote machine. I've setup tramp to use
> > abbrev to expand an abbreviation to full path, e.g.:
> > xhs -> //ssh:xxx@xxxx#1222:/mnt/mp3/
As Andrea suggested, creating a bookmark is one (good) approach.
Here are two other approaches -
1. Option `directory-abbrev-alist'.
E.g., include an entry like this in the alist:
("\`xhs" . "//ssh:xxx@xxxx#1222:/mnt/mp3/")
Or in Customize:
INS DEL From: \`xhs
To: //ssh:xxx@xxxx#1222:/mnt/mp3/
Note that the doc for `directory-abbrev-alist' shows only examples where the
resulting directory names are shorter, but the reverse relation can be useful as
well: expand instead of contract - which is your case here. The point is to
substitute one directory name for another that is more convenient in some way.
The symlink case is only one use case.
In vanilla Emacs, `C-x C-f xhs RET' will correctly expand the abbreviation if it
is in `directory-abbrev-alist'. However, completion (`TAB') will not expand it.
If you use Icicles then completion will expand it, just like `RET' will.
See also: http://lists.gnu.org/archive/html/emacs-devel/2007-10/msg00666.html
2. Environment variables. They are expanded even by vanilla Emacs during
completion (`TAB'). So you would define a variable `xhs' and then use `$xhs
TAB' in the minibuffer.
If you use Emacs on more than one machine, then using a bookmark or
`directory-abbrev-alist' is probably easier than using environment vars. They
keep the customization within Emacs, not at the machine/OS level.
HTH - Drew
next prev parent reply other threads:[~2012-05-10 16:04 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-05-10 8:44 yasnippet to expand abbreviation in dired/fileopen command? David Belohrad
2012-05-10 14:10 ` Andrea Crotti
2012-05-10 14:29 ` XeCycle
2012-05-10 16:04 ` Drew Adams [this message]
2012-05-11 9:31 ` David Belohrad
[not found] <mailman.889.1336639663.855.help-gnu-emacs@gnu.org>
2012-05-10 11:31 ` Xah Lee
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=D8F854525C4042EEA490D179762D026F@us.oracle.com \
--to=drew.adams@oracle.com \
--cc=XeCycle@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.