Hi all, I just merged the minibuffer-watch branch into master. The breaking changes associated with this are as follows:
* Editing in the minibuffer is now done with the normal editing commands instead of a special set of editing commands. All of the editing commands which begin with the prefix "minibuffer-" have been removed. Also, editing commands are now bound in the keymap text_keymap instead of content_buffer_text_keymap and minibuffer_base_keymap. If you have written custom bindings for editing in your rc, you will need to change [pairs of] bindings like this: define_key(minibuffer_base_keymap, "C-l", "minibuffer-forward-char"); define_key(content_buffer_text_keymap, "C-l", "forward-char"); to this: define_key(text_keymap, "C-l", "forward-char"); * In hinting mode, right and left are no longer bound to next/previous-hint. Hinting mode now supports editing in the minibuffer, so right and left move the cursor. Down, up, C-n, C-p, C-s, and C-r are all bound to next/previous-hint. If anybody has questions about this, needs help updating their rc, or finds a problem with editing in the minibuffer that didn't exist before, just ask on this list, by email, or in channel #conkeror on irc. Thanks! -- John Foerch _______________________________________________ Conkeror mailing list [email protected] https://www.mozdev.org/mailman/listinfo/conkeror
