如何实施“CodeIgniter 2.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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
步骤如下:
用户定义语言
,因为 Code Igniter 是一个 PHP 框架。External Lexer
就是您的最佳选择。它是一种模仿内置语言功能的特定插件。安装它。自动完成是基于语言的,每种语言都有不同的 API 文件。
Notepad++ 提供两种类型的自动完成功能:
要触发它们,您必须分别选择:
Edit- >自动完成->函数完成
编辑->自动完成->单词完成
Notepad++ 开发社区是一个充满活力的社区,希望如此您可以在网上找到相关的深入材料。
Here are the steps:
User Defined Language
derived from the PHP language given that Code Igniter is a PHP Framework.External Lexer
is the way to go. It's a kind of specificPlugin
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:
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.
这是一个链接,它应该解释您创建自己的用户定义语言所需了解的所有信息 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