all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Andreas Politz <politza@fh-trier.de>
To: help-gnu-emacs@gnu.org
Subject: Re: Selecting default prompt text
Date: Thu, 12 Feb 2009 13:27:35 +0100	[thread overview]
Message-ID: <1234441717.125678@arno.fh-trier.de> (raw)
In-Reply-To: <gn0rl6$69q$1@rileyrgdev.motzarella.org>

Richard Riley wrote:
> Kevin Rodgers <kevin.d.rodgers@gmail.com> writes:
> 
>> 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))
> 
> Hi Kevin,
> 
> Sorry if I was not clear. I don't mean a default value - I mean
> pre-selected as in "in region". e.g when you tab to a field in a web
> form for example - The data in the field is highlighted/selected. I
> already had a default value set as "url" in the code above.
> 
> e.g
> 
> goto www.Google.com 
> 
> enter some text and tab to a button then tab back. The text in the
> search field is selected.
> 
> 
> 

Something like this ?

(defun minibuffer-select-inital-input ()
   (let ((start (next-single-char-property-change 1 'read-only)))
     (when (< start (point-max))
       (set-mark start)
       (setq mark-active t))))

(add-hook 'minibuffer-setup-hook 'minibuffer-select-inital-input)
(read-string "> " "Hallo")

-ap


  reply	other threads:[~2009-02-12 12:27 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
     [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 [this message]
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=1234441717.125678@arno.fh-trier.de \
    --to=politza@fh-trier.de \
    --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.