diff options
| author | Bozhidar Batsov <bozhidar@batsov.com> | 2021-05-26 09:30:05 +0300 |
|---|---|---|
| committer | Bozhidar Batsov <bozhidar@batsov.com> | 2021-05-26 09:30:05 +0300 |
| commit | ea5f4adc1823e5568a3d4fe1d6ec714a8f4967e2 (patch) | |
| tree | 1cb2495987604ea7069f7630423b3ea4f672512a | |
| parent | af68a585d66e78795aaf7ba6d0bd6d4f23b8fe16 (diff) | |
[Docs] Add a note about fish-related problems
See #1668 for more details.
| -rw-r--r-- | README.md | 1 | ||||
| -rw-r--r-- | doc/modules/ROOT/pages/troubleshooting.adoc | 11 |
2 files changed, 12 insertions, 0 deletions
@@ -109,6 +109,7 @@ See the [online documentation](https://docs.projectile.mx) for more details. * Some operations like search (grep) depend (presently) on external utilities such as `find`. +* Commands depending on external utilities might misbehave on the `fish` shell. * 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 diff --git a/doc/modules/ROOT/pages/troubleshooting.adoc b/doc/modules/ROOT/pages/troubleshooting.adoc index 4b4857d..cbe95df 100644 --- a/doc/modules/ROOT/pages/troubleshooting.adoc +++ b/doc/modules/ROOT/pages/troubleshooting.adoc @@ -61,3 +61,14 @@ least what's being required). Emacs doesn't load the new files, it only installs them on disk. To see the effect of changes you have to restart Emacs. + +=== Some commands not working properly with the fish shell + +I'm not sure what's causing this (likely different quoting rules), but it's easy to fix it: + +[source,elisp] +---- +(setq shell-file-name "/bin/bash") +---- + +In general, I've noticed that Emacs doesn't play very well with fish. |
