diff options
author | Kyle Meyer <kyle@kyleam.com> | 2013-12-04 15:58:45 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2013-12-04 15:58:45 -0500 |
commit | 66ae93f47bb0f623de3af8e2e2ca816928458aaf (patch) | |
tree | e26a444b989e29cd263476140ede6413218edd8e | |
parent | c8427dc3b4077cbc19f089001f403ea7578c86cc (diff) | |
download | emacs.d-66ae93f47bb0f623de3af8e2e2ca816928458aaf.tar.gz |
Rewrite km/projectile-switch-to-project-file doc
-rw-r--r-- | init/km-projectile.el | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/init/km-projectile.el b/init/km-projectile.el index a5f3b3e..59f20ad 100644 --- a/init/km-projectile.el +++ b/init/km-projectile.el @@ -6,9 +6,11 @@ (magit-status (projectile-project-root))) (defun km/projectile-switch-project-to-file () - "I have set `projectile-switch-project-action' to - `km/projectile-magit-status'. This function gives access to the - of default `projectile-find-file'" + "Provide access to the of default `projectile-find-file'. + +I have set `projectile-switch-project-action' to +`km/projectile-magit-status' but would still like quick access to +`projectile-find-file'" (interactive) (let ((projectile-switch-project-action 'projectile-find-file)) (projectile-switch-project))) |