如何实施“CodeIgniter 2.0”记事本的代码完成功能++ ?

发布于 2024-12-25 06:24:26 字数 75 浏览 3 评论 0原文

如何使 Notepad++ 具有 CodeIgniter 2.0 的智能感知功能,以便在按键盘上的 Ctrl + 空格键时显示代码建议?

How could I make Notepad++ have an intellisense for CodeIgniter 2.0 so that if I press Ctrl + SpaceBar on the keyboard code suggestions would be shown?

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

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

发布评论

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

评论(2

提赋 2025-01-01 06:24:26

步骤如下:

  • 使用从 PHP 语言派生的用户定义语言,因为 Code Igniter 是一个 PHP 框架
  • 如果您想要更多高级功能并且能够轻松编码External Lexer 就是您的最佳选择。它是一种模仿内置语言功能的特定插件。安装它。

自动完成是基于语言的,每种语言都有不同的 API 文件。

Notepad++ 提供两种类型的自动完成功能:

  • 函数完成(根据已知关键字列表提供提示)
  • 单词完成(提供从当前文件检索的单词提示)

要触发它们,您必须分别选择:

  • Edit- >自动完成->函数完成
  • 编辑->自动完成->单词完成

Notepad++ 开发社区是一个充满活力的社区,希望如此您可以在网上找到相关的深入材料。

Here are the steps:

  • Use a User Defined Language derived from the PHP language given that Code Igniter is a PHP Framework.
  • If you want more advanced features and feel comfortable at coding, External Lexer is the way to go. It's a kind of specific Plugin mimicking built-in languages features. Install it.

Autocompletion is language based and has distinct API files for each language.

Notepad++ offers two types of auto completion:

  • Function Completion (providing a hint based on a list of well known keywords)
  • Word Completion (providing hint on words retrieved from the current file)

To trigger them, you must respectively select:

  • Edit->Auto-Completion->Function Completion
  • Edit->Auto-Completion->Word Completion

Notepad++ development community is a vibrant one, hopefully you find relevant indepth materials on the web.

失眠症患者 2025-01-01 06:24:26

这是一个链接,它应该解释您创建自己的用户定义语言所需了解的所有信息 wiki

这是用户定义语言的列表用户创建的语言存储库

Here is a link that should explain everything you need to know to make your own user defined language wiki

And Here is a list of user defined languages repository of user created languages

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