lewang / flx

Fuzzy matching for Emacs ... a la Sublime Text.
GNU General Public License v3.0
518 stars 37 forks source link

Error on find file #79

Closed wedens closed 8 years ago

wedens commented 8 years ago

flx-find-best-match: Variable binding depth exceeds max-specpdl-size I use flx with helm-flx. /cc @PythonNut

PythonNut commented 8 years ago

The simple solution is to throw this into your init.el:

(setq max-lisp-eval-depth 5000
      max-specpdl-size 10000)

In general, those values are very reasonable on modern hardware.

The hard solution is to make flx do this for you automatically in an isolated manner.