clarify flx performance based on recent changes
This commit is contained in:
parent
fb39a6e0b5
commit
a7b44525ba
1 changed files with 12 additions and 4 deletions
16
README.md
16
README.md
|
@ -434,10 +434,18 @@ you don't like that simply add this to your personal config:
|
||||||
### Poor ido matching performance on large datasets
|
### Poor ido matching performance on large datasets
|
||||||
|
|
||||||
Prelude swaps the default `ido` flex matching with the more powerful
|
Prelude swaps the default `ido` flex matching with the more powerful
|
||||||
[ido-flx](https://github.com/lewang/flx). This might introduce some
|
[ido-flx](https://github.com/lewang/flx).
|
||||||
performance problems with huge datasets. If you experience lag in
|
|
||||||
`ido`, please, report an issue upstream. You can always disable the
|
The sorting algorithm `flx` uses is more complex, but yields better results.
|
||||||
improved matching algorithm like this:
|
|
||||||
|
On slower machines, it may be necessary to lower `flx-ido-threshhold` to
|
||||||
|
ensure a smooth experience.
|
||||||
|
|
||||||
|
```lisp
|
||||||
|
(setq flx-ido-threshhold 1000)
|
||||||
|
```
|
||||||
|
|
||||||
|
You can always disable the improved sorting algorithm all together like this:
|
||||||
|
|
||||||
```lisp
|
```lisp
|
||||||
(flx-ido-mode -1)
|
(flx-ido-mode -1)
|
||||||
|
|
Loading…
Reference in a new issue