aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@batsov.dev>2025-02-04 15:00:25 +0200
committerBozhidar Batsov <bozhidar@batsov.dev>2025-02-04 15:00:25 +0200
commit3c60b323172df7afa855a585d8088499300820e7 (patch)
tree0c6d18b6c16d0cfd7294edd1ccb9d0ad121ed8f6
parenta43f3eab8b95a30fa97d139c43b6db68bc94fd00 (diff)
[Docs] Remove mentions of selectrum
It was deprecated in favor of vertico.
-rw-r--r--README.md14
-rw-r--r--doc/modules/ROOT/pages/configuration.adoc2
-rw-r--r--doc/modules/ROOT/pages/usage.adoc4
3 files changed, 14 insertions, 6 deletions
diff --git a/README.md b/README.md
index 31c8c32..21ee756 100644
--- a/README.md
+++ b/README.md
@@ -40,7 +40,7 @@ Here are some of Projectile's features:
* replace in project
* find references in project (using `xref` internally)
* run shell commands in a project (e.g. `make`, `lein`)
-* support for multiple minibuffer completion/selection libraries (`ido`, `ivy`, `helm` and the default completion system)
+* support for multiple minibuffer completion/selection libraries (`ido`, `ivy`, `helm`, and the default completion system)
* automatic project discovery (see `projectile-project-search-path`)
* integration with the built-in `project.el` library
@@ -112,7 +112,11 @@ Enable `projectile-mode`, open a file in one of your projects and type a command
See the [online documentation](https://docs.projectile.mx) for more details.
-To get the most of Projectile you also need to enable (and potentially install) some minibuffer completion framework (e.g. `ido`, `ivy` or `selectrum`). See [this section](https://docs.projectile.mx/projectile/configuration.html#completion-options) of the documentation for more details.
+To get the most of Projectile you also need to enable (and potentially install)
+some minibuffer completion framework (e.g. `ido`, `ivy` or `vertico`). See
+[this
+section](https://docs.projectile.mx/projectile/configuration.html#completion-options)
+of the documentation for more details.
> [!CAUTION]
>
@@ -129,7 +133,11 @@ To get the most of Projectile you also need to enable (and potentially install)
* Using Projectile over TRAMP might be slow in certain cases.
* Some commands might misbehave on complex project setups (e.g. a git project with submodules).
* Projectile was mostly tested on Unix OS-es (e.g. GNU/Linux and macOS), so some functionality might not work well on Windows.
-* In Git repositories, deleted files are still shown in `projectile-find-file` until their deletions are staged, due to a limitation of `git ls-files`. If you install [fd](https://github.com/sharkdp/fd) then it is automatically used instead, and does not have this problem. (You can inhibit the use of `fd` by setting `projectile-git-use-fd` to nil.)
+* In Git repositories, deleted files are still shown in `projectile-find-file`
+ until their deletions are staged, due to a limitation of `git ls-files`. If
+ you install [fd](https://github.com/sharkdp/fd) then it is automatically used
+ instead, and does not have this problem. (You can inhibit the use of `fd` by
+ setting `projectile-git-use-fd` to `nil`.)
## Known issues
diff --git a/doc/modules/ROOT/pages/configuration.adoc b/doc/modules/ROOT/pages/configuration.adoc
index 135d771..e9e58a6 100644
--- a/doc/modules/ROOT/pages/configuration.adoc
+++ b/doc/modules/ROOT/pages/configuration.adoc
@@ -433,7 +433,7 @@ TIP: You might want to combine default completion with `icomplete-mode` for opti
Emacs 27 added `fido-mode` to `icomplete`.
If you are using `fido-mode`, Projectile will
-use the `default` completion system. The same holds for `selectrum` and `vertico` which also rely
+use the `default` completion system. The same holds for `vertico` which also rely
on the `default` completion system.
=== Ido
diff --git a/doc/modules/ROOT/pages/usage.adoc b/doc/modules/ROOT/pages/usage.adoc
index 5ae1084..9d60755 100644
--- a/doc/modules/ROOT/pages/usage.adoc
+++ b/doc/modules/ROOT/pages/usage.adoc
@@ -88,11 +88,11 @@ and cleanup projects, as the file operations are slower there.
=== Minibuffer Completion
While Projectile works fine with Emacs's default minibuffer completion system you're highly encouraged to use some
-powerful alternative like `ido`, `ivy`, `selectrum` or `vertico`.
+powerful alternative like `ido`, `ivy`, `vertico`.
TIP: If you're going to use the `ido` completion it's **highly** recommended that you install the optional
https://github.com/lewang/flx[flx-ido package], which provides a much more powerful
-alternative to ``ido``'s built-in `flex` matching. Similarly, for `selectrum` it's
+alternative to ``ido``'s built-in `flex` matching. Similarly, for `ivy` and `vertico` it's
a good idea to enable `prescient` (a package similar to `flx`).
=== Installing External Tools