docs(termux): add workaround for search
This commit is contained in:
parent
02beb9b4cf
commit
dd0d7d5645
|
@ -10,6 +10,7 @@
|
||||||
- [Fedora, CentOS, RHEL, SUSE](#fedora-centos-rhel-suse)
|
- [Fedora, CentOS, RHEL, SUSE](#fedora-centos-rhel-suse)
|
||||||
- [Arch Linux](#arch-linux)
|
- [Arch Linux](#arch-linux)
|
||||||
- [Termux](#termux)
|
- [Termux](#termux)
|
||||||
|
- [Known Search Issue](#known-search-issue)
|
||||||
- [yarn, npm](#yarn-npm)
|
- [yarn, npm](#yarn-npm)
|
||||||
- [macOS](#macos)
|
- [macOS](#macos)
|
||||||
- [Standalone Releases](#standalone-releases)
|
- [Standalone Releases](#standalone-releases)
|
||||||
|
@ -134,6 +135,23 @@ Termux is an Android terminal application and Linux environment, which can also
|
||||||
|
|
||||||
To upgrade run: `yarn global upgrade code-server --latest`
|
To upgrade run: `yarn global upgrade code-server --latest`
|
||||||
|
|
||||||
|
### Known Search Issue
|
||||||
|
|
||||||
|
There is a known issue with search not working on Android because it's missing `bin/rg`. To fix:
|
||||||
|
|
||||||
|
1. Install `ripgrep` with `pkg`
|
||||||
|
```sh
|
||||||
|
pkg install ripgrep
|
||||||
|
```
|
||||||
|
2. Make a soft link using `ln -s`
|
||||||
|
|
||||||
|
```sh
|
||||||
|
# run this command inside the code-server directory
|
||||||
|
ln -s $PREFIX/bin/rg ./lib/vscode/node_modules/vscode-ripgrep/bin/rg
|
||||||
|
```
|
||||||
|
|
||||||
|
For more context, see [comment](https://github.com/cdr/code-server/issues/1730#issuecomment-721515979).
|
||||||
|
|
||||||
## yarn, npm
|
## yarn, npm
|
||||||
|
|
||||||
We recommend installing with `yarn` or `npm` when:
|
We recommend installing with `yarn` or `npm` when:
|
||||||
|
|
Loading…
Reference in New Issue