aboutsummaryrefslogtreecommitdiff
path: root/doc/modules
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@batsov.dev>2022-10-27 10:49:49 +0300
committerBozhidar Batsov <bozhidar@batsov.dev>2022-10-27 10:49:49 +0300
commita0105e7c40d30f10bc42fd271e2583587a1f5ae4 (patch)
tree2284d99d226ed2584f0602ee83cde74cc60e50fa /doc/modules
parentc8eee2199a8cf5d7dccc1d9acb04a10e20944dc8 (diff)
[Fix #1591] Add project.el integration
Diffstat (limited to 'doc/modules')
-rw-r--r--doc/modules/ROOT/pages/usage.adoc14
1 files changed, 14 insertions, 0 deletions
diff --git a/doc/modules/ROOT/pages/usage.adoc b/doc/modules/ROOT/pages/usage.adoc
index ac1b8e6..4178f95 100644
--- a/doc/modules/ROOT/pages/usage.adoc
+++ b/doc/modules/ROOT/pages/usage.adoc
@@ -379,3 +379,17 @@ You can add additional commands to the commander like this:
----
Place such snippets after ``projectile-mode``'s init code.
+
+== Using Projectile with project.el
+
+Starting with version 2.7 Projectile bundles some integration with
+`project.el` that makes `project.el` use by default Projectile's
+project lookup function (`projectile-project-root`) and project file
+lookup function (`projectile-project-files`).
+
+That's useful as some packages (e.g. `eglot`) support natively only
+`project.el`'s API for project discovery. Fortunately, `project.el`
+makes it easy to install additional project lookup functions and that's
+exactly what Projectile does.
+
+TIP: You can read more about the integration https://github.com/bbatsov/projectile/issues/1591[here].