custom-tutcode.scm 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. (define tutcode-dic-filename "/usr/share/tc/mazegaki.dic")
  2. (define tutcode-personal-dic-filename "/usr/home/haelwenn/.mazegaki.dic")
  3. (define tutcode-rule-filename "/usr/share/uim/tutcode-rule.scm")
  4. (define tutcode-enable-mazegaki-learning? #t)
  5. (define tutcode-mazegaki-fixed-priority-count 0)
  6. (define tutcode-use-recursive-learning? #t)
  7. (define tutcode-use-with-vi? #f)
  8. (define tutcode-show-pending-rk? #f)
  9. (define tutcode-use-dvorak? #f)
  10. (define tutcode-use-kigou2-mode? #f)
  11. (define tutcode-enable-fallback-surrounding-text? #f)
  12. (define tutcode-keep-illegal-sequence? #f)
  13. (define tutcode-delete-leading-delimiter-on-postfix-kanji2seq? #f)
  14. (define tutcode-history-size 0)
  15. (define tutcode-mazegaki-yomi-max 10)
  16. (define tutcode-mazegaki-enable-inflection? #f)
  17. (define tutcode-mazegaki-suffix-max 4)
  18. (define tutcode-bushu-conversion-algorithm 'tc-2.1+ml1925)
  19. (define tutcode-use-interactive-bushu-conversion? #f)
  20. (define tutcode-bushu-index2-filename "/usr/share/tc/bushu.index2")
  21. (define tutcode-bushu-expand-filename "/usr/share/tc/bushu.expand")
  22. (define tutcode-bushu-help-filename "")
  23. (define tutcode-use-candidate-window? #t)
  24. (define tutcode-use-pseudo-table-style? #f)
  25. (define tutcode-candidate-window-table-layout 'qwerty-jis)
  26. (define tutcode-commit-candidate-by-label-key 'always)
  27. (define tutcode-candidate-op-count 5)
  28. (define tutcode-nr-candidate-max 10)
  29. (define tutcode-nr-candidate-max-for-kigou-mode 10)
  30. (define tutcode-nr-candidate-max-for-prediction 10)
  31. (define tutcode-nr-candidate-max-for-guide 10)
  32. (define tutcode-nr-candidate-max-for-history 10)
  33. (define tutcode-use-stroke-help-window? #f)
  34. (define tutcode-show-stroke-help-window-on-no-input? #t)
  35. (define tutcode-use-auto-help-window? #f)
  36. (define tutcode-auto-help-with-real-keys? #f)
  37. (define tutcode-candidate-window-use-delay? #f)
  38. (define tutcode-candidate-window-activate-delay-for-mazegaki 0)
  39. (define tutcode-candidate-window-activate-delay-for-stroke-help 2)
  40. (define tutcode-candidate-window-activate-delay-for-auto-help 1)
  41. (define tutcode-candidate-window-activate-delay-for-completion 2)
  42. (define tutcode-candidate-window-activate-delay-for-prediction 2)
  43. (define tutcode-candidate-window-activate-delay-for-bushu-prediction 2)
  44. (define tutcode-candidate-window-activate-delay-for-interactive-bushu 1)
  45. (define tutcode-use-completion? #f)
  46. (define tutcode-completion-chars-min 2)
  47. (define tutcode-completion-chars-max 5)
  48. (define tutcode-use-prediction? #f)
  49. (define tutcode-prediction-start-char-count 2)
  50. (define tutcode-use-kanji-combination-guide? #f)
  51. (define tutcode-stroke-help-with-kanji-combination-guide 'disable)
  52. (define tutcode-use-bushu-prediction? #f)