bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#14533: 24.3.50; Documentation for icomplete.el (ido style completion


From: Jambunathan K
Subject: bug#14533: 24.3.50; Documentation for icomplete.el (ido style completions)
Date: Sun, 02 Jun 2013 15:12:09 +0530

Document following keybindings.

    (defvar icomplete-minibuffer-map
      (let ((map (make-sparse-keymap)))
        (define-key map [?\M-\t] 'minibuffer-force-complete)
        (define-key map [?\C-j]  'minibuffer-force-complete-and-exit)
        (define-key map [?\C-.]  'icomplete-forward-completions)
        (define-key map [?\C-,]  'icomplete-backward-completions)
        map))

revno: 111793 introduces C-. and C-, bindings for both ido and iswitchb
so that all the "incremental completion" libraries share the same
prefix.

Document following user options:

    icomplete-hide-common-prefix
    icomplete-first-match
    icomplete-separator

Explicitly mention the following setting.

        (setq icomplete-with-completion-tables t)

so that one can get incremental completion for bookmarks etc.

    (custom-set-variables
     '(completion-category-overrides
       (quote
        ((buffer
          (styles basic substring))
         (bookmark
          (styles substring))))))


In GNU Emacs 24.3.50.4 (i686-pc-linux-gnu, GTK+ Version 2.20.1)
 of 2013-05-28 on debian-6.05
Bzr revision: 112750 xfq.free@gmail.com-20130528010541-pm5k3k6hy16k12w4
Windowing system distributor `The X.Org Foundation', version 11.0.10707000
Important settings:
  value of $LANG: en_IN
  locale-coding-system: iso-latin-1-unix
  default enable-multibyte-characters: t






reply via email to

[Prev in Thread] Current Thread [Next in Thread]