Difference between revisions of "Ido"

From WikEmacs
Jump to navigation Jump to search
Line 10: Line 10:
 
'''Ido''' - Interactively do things is a very convenient way to find files and switch buffers.
 
'''Ido''' - Interactively do things is a very convenient way to find files and switch buffers.
  
= Basic setup =
+
== Basic setup ==
  
 
<source lang="lisp">
 
<source lang="lisp">
Line 17: Line 17:
 
</source>
 
</source>
  
= Helpful keybindings =
+
== Helpful keybindings ==
  
 
; {{Keys|C-s}}
 
; {{Keys|C-s}}
Line 25: Line 25:
 
: Move to previous ido suggestion.
 
: Move to previous ido suggestion.
  
= Common Customization =
+
== Common Customization ==
  
== Enable Fuzzy Matching ==
+
=== Enable Fuzzy Matching ===
  
 
<syntaxhighlight lang="lisp">
 
<syntaxhighlight lang="lisp">
Line 33: Line 33:
 
</syntaxhighlight>
 
</syntaxhighlight>
  
= See Also =
+
== See Also ==
  
 
[[Helm]]
 
[[Helm]]
  
= Project Pages =
+
[[Category:Completion]] [[Category:Native Package]]
 
+
[[Category:MiniBuffer]][[Category:Convenience]] [[Category:Minor modes]]
= Tutorial Pages =
 
 
 
[[Category:Completion]] [[Category:MiniBuffer]][[Category:Convenience]]
 

Revision as of 14:56, 31 March 2012

Ido
Description Interactive Do MiniBuffer Enhancement
Author name of author
Maintainer FSF
Source http://git.savannah.gnu.org/cgit/emacs.git/tree/lisp/ido.el
Part of Emacs yes

Ido - Interactively do things is a very convenient way to find files and switch buffers.

Basic setup

(ido-mode)
(ido-everywhere 1)

Helpful keybindings

[C-s]
Move to next ido suggestion.
[C-r]
Move to previous ido suggestion.

Common Customization

Enable Fuzzy Matching

(setq ido-enable-flex-matching t)

See Also

Helm