chinese-word-at-point.el icon indicating copy to clipboard operation
chinese-word-at-point.el copied to clipboard

how to move cursor between chinese word.

Open lhrkkk opened this issue 9 years ago • 1 comments

Is there any method to move cursor using the function backward-word but with chinese word split way?

lhrkkk avatar Mar 03 '15 08:03 lhrkkk

Technically possible, but the process is very very inefficient.

Because chinese-word-at-point.el uses external Chinese word segmentation tool, such as 结巴分词,

  • usually, 结巴分词 (written in Python) itself may be quite slow and
  • the communication between Emacs and 结巴分词, i.e., shell-command-to-string, is slow too

Currently, I only use chinese-word-at-point.el in youdao-dictionary.el and osx-dictionary.el written by myself.

xuchunyang avatar Mar 03 '15 08:03 xuchunyang