Something like Ctrp of Vim for Emacs?

I'm looking for a tool or plugin that allows me to navigate through my files, directories and tags, such as Vim Ctrlp, but for Emacs, any suggestions ?.

+5
source share
4 answers

I am not a Vim user, but after searching for the CtrlP functionality it seems that you are looking ido-mode.

ido-mode comes with emacs and you can enable it by putting it in your .emacs

(require 'ido)
(ido-mode t)

There ido-modeare many possibilities, but this video is a good introduction to some basic functions. Note that fuzzy matching is now not enabled by default ido-mode, but the video assumes that you must enable it yourself.

http://www.youtube.com/watch?v=lsgPNVIMkIE

: http://emacswiki.org/emacs/InteractivelyDoThings

+4

textmate, :)...

https://github.com/defunkt/textmate.el

, , "Ctrl + P", "Command + T"... ( - "Alt + T" )...:)

0

fipler projectile helm. .

fipler , git (dotfiles), . fipler.

0

, project-root-find-file project-root.el

Please see: http://solovyov.net/project-root/

-1
source

All Articles