all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Kevin Rodgers <kevin.d.rodgers@gmail.com>
To: help-gnu-emacs@gnu.org
Subject: Re: Selecting default prompt text
Date: Wed, 11 Feb 2009 19:53:36 -0700	[thread overview]
Message-ID: <gn02vc$dq6$1@ger.gmane.org> (raw)
In-Reply-To: <gmvn1c$frv$1@rileyrgdev.motzarella.org>

Richard Riley wrote:
> I like my interactive functions to generally use the word or region at
> point as a default. Is there a way to make the read-string mini buffer
> input to pre-select the default value?
> 
> e.g
> 
> consider
> 
> (setq url (read-string (format "Url (%s) :" url) url nil url))
> 
> Here I would like to see at the input prompt
> 
> Url (xyz): xyz
> 
> with the default value of "xyz" already selected. In other words
> the same behaviour as when you tab into a populated  entry field in most
> of applications.

(let ((url-at-point (thing-at-point 'url)))
   (read-string (if url-at-point
		   (format "URL (%s): " url-at-point)
		 "URL: ")
	       nil nil url-at-point))

-- 
Kevin Rodgers
Denver, Colorado, USA





  reply	other threads:[~2009-02-12  2:53 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-02-11 23:29 Selecting default prompt text Richard Riley
2009-02-12  2:53 ` Kevin Rodgers [this message]
     [not found] ` <mailman.497.1234407233.31690.help-gnu-emacs@gnu.org>
2009-02-12  9:54   ` Richard Riley
2009-02-12 12:27     ` Andreas Politz
2009-02-12 13:35       ` Richard Riley
2009-02-12 17:34         ` Drew Adams
2009-02-12 17:48           ` Richard Riley
     [not found]           ` <mailman.573.1234460908.31690.help-gnu-emacs@gnu.org>
2009-02-12 19:02             ` Richard Riley

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='gn02vc$dq6$1@ger.gmane.org' \
    --to=kevin.d.rodgers@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.