Hi all,

  There is a new branch in our git repository called minibuffer-watch,
which is a reworking of how editing works in the minibuffer.  If anybody
would like to try this branch out before I merge it, extra pairs of eyes
would be appreciated.

  This branch allows regular text editing commands to be used in the
minibuffer.  As such, all of the special editing commands that have the
"minibuffer-" prefix have been removed.  Also, there is now only one
keymap, called text_keymap, in which all of the basic editing commands are
bound.  I mention this for those who have made bindings in their rc for
editing commands --- you will need to update your rc.  For example,
bindings like this:

  define_key(minibuffer_base_keymap, "C-l", "minibuffer-forward-char");
  define_key(content_buffer_text_keymap, "C-l", "forward-char");

would be changed to this:

  define_key(text_keymap, "C-l", "forward-char");


  This branch also includes preliminary support for editing the text in
the hints minibuffer state.  Somebody mentioned they wanted to be able to
hit 'C-a C-k' and such while using the hinting system.  Now you will be
able to.

-- 
John Foerch
_______________________________________________
Conkeror mailing list
[email protected]
https://www.mozdev.org/mailman/listinfo/conkeror

Reply via email to