如何将源目录包含到 Padre IDE 中?
如何将源目录包含到 Padre IDE 中以进行自动完成和运行脚本。
How do you include source directory to Padre IDE for autocomplete and for running the script.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
a) 有一个用于设置 Perl 解释器参数的配置选项。
b) 将 PERL5LIB 环境变量设置为包含路径
c) 在项目主目录中创建一个空的 padre.yml 文件,Padre 将使用它作为工作目录,否则它是文件的目录。
自动完成功能使用当前文件和 perltags 文件(如果存在)。
a) there is a configuration option for setting the Perl interpreter arguments.
b) Set the PERL5LIB environment variable to your include paths
c) Create an empty padre.yml file in your project home dir, Padre will use this as the working dir, otherwise it's the file's dir.
The autocomplete function is using the current file and a perltags file (if one exists).