是否可以设置一个正则表达式,以便 NSTextView 可以与代码完成一起使用?

发布于 2024-12-19 04:28:18 字数 533 浏览 2 评论 0原文

我已经使用 clang 使用 NSTextView 实现了 Objective-C 的代码完成。我使用 NSTextViewDelegate- textView:completions:forPartialWordRange:indexOfSelectedItem: 方法来执行此操作。问题是,当用户输入类似这样的内容时:

struct a {
  int some_member;
} *c;
c->

并点击 escF5 进行自动补全,NSTextView 会将 > 字符视为如果它是要完成的单词的一部分。结果如下所示:

screenshot

如何让 NSTextView 只处理 @?[_a-zA-Z ][_a-zA-Z0-9]* 作为完整的单词?

I have implemented code completion for Objective-C with NSTextView using clang. I use the - textView:completions:forPartialWordRange:indexOfSelectedItem: method of NSTextViewDelegate to do this. The problem is that when the user types something like this:

struct a {
  int some_member;
} *c;
c->

and hits esc or F5 to do the autocompletion, NSTextView treats the > character as if it were part of the word to be completed. The result would look like this:

screenshot

How can I make NSTextView only treat @?[_a-zA-Z][_a-zA-Z0-9]* as completable words?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

爱她像谁 2024-12-26 04:28:19

您可以覆盖 -[NSTextView rangeForUserCompletion] 并返回要完成的单词的范围。

You can override -[NSTextView rangeForUserCompletion] and return the range of the word to be completed.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文