TinyMCE自定义插件,如何根据当前光标位置自动选择单词?

TinyMCE custom plugin, how to make a word automatically selected based on current cursor position?

为 TinyMCE 制作自定义插件,我想知道如何根据当前光标位置自动选择单词,就像在 Wordpress "Add link" 插件中一样。

我已经搜索了 Wordpress TinyMCe Wplink 代码和 TinyMCE 文档,但没有任何参考....

你可以像下面那样做

if (editor.selection.isCollapsed()) {
    var selRng = editor.selection.getRng();
    selRng.expand("word"); //expands the DOM range to the current word
    editor.selection.setRng(selRng);
}

下面是一个JSFiddle同样

https://jsfiddle.net/t9qhmguo/