GitXplorerGitXplorer
b

magit-find-file.el

public
16 stars
2 forks
0 issues

Commits

List of commits on branch master.
Unverified
c3ea91bab37d10a814a829728ec972811f728d60

Merge pull request #6 from syohex/update-url

bbradwright committed 9 years ago
Unverified
368aa6cddba2b113e913410448e881859b6e47d6

Update MELPA URL

ssyohex committed 9 years ago
Unverified
035da838b1a19e7a5ee135b4ca8475f4e235b61e

Merge pull request #4 from tarsius/magit-next

bbradwright committed 9 years ago
Unverified
b2c9fee0725f2ec4593093b36c9c20f5282f52a1

Adapt to changes in Magit v2.1.0

ttarsius committed 9 years ago
Unverified
de6fdd7da438b3d7fce09b93a187ee8eade69608

Add Melpa badges

bbradwright committed 10 years ago
Unverified
bc49cbcf8432728216f6571bb7efca7fb1f524e1

Version 2.0.1

bbradwright committed 10 years ago

README

The README file for this repository.

Melpa Status Melpa Stable Status

magit-find-file

magit powered equivalent of TextMate's cmd-t functionality (or ctrlp.vim, if that's your bag).

Depends on Magit.

Installation

Install it from Melpa, or drop magit-find-file.el into your load path and add:

(require 'magit-find-file)

into your init.el. The Melpa version uses autoload, so once installed you won't need to add anything to your init.el.

Finding files

Invoking magit-find-file-completing-read will give you a list of candidates as ascertained by git ls-files. So basically all the files you should care about. It includes staged and not-yet-added files in the list.

You may want to add it as a key command:

(global-set-key (kbd "C-c p") 'magit-find-file-completing-read)

Contributors

Licence

This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.