custom-predict.scm 502 B

1234567891011
  1. (define predict-custom-enable? #f)
  2. (define predict-custom-methods '())
  3. (define predict-custom-look-dict "/usr/share/dict/words")
  4. (define predict-custom-look-candidates-max 10)
  5. (define predict-custom-look-skk-jisyo "/usr/share/skk/SKK-JISYO.L")
  6. (define predict-custom-look-skk-candidates-max 10)
  7. (define predict-custom-sqlite3-candidates-max 5)
  8. (define predict-custom-google-suggest-candidates-max 5)
  9. (define predict-custom-google-suggest-language 'en)
  10. (define predict-custom-google-suggest-use-ssl #t)