Comment #2 on issue 209 by noword.forever: 功能请求:自动高亮选中单词,允许 每个运行的Shell使用独立的进程
http://code.google.com/p/ulipad/issues/detail?id=209

自动高亮选中单词的功能在Notepad++中,是这么实现的:

                        case ProcessMarkAll_2:
                        {
                                (*_ppEditView)->execute(SCI_SETINDICATORCURRENT,
SCE_UNIVERSAL_FOUND_STYLE_2);
                                (*_ppEditView)->execute(SCI_INDICATORFILLRANGE,
targetStart, foundTextLen);
                                break;
                        }

也许可以用stc的SendMsg来做。

事前还要分析选中的是否是单独的某个词,选中的区域的前后都没有字母出现。

--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

Reply via email to