编程语言
首页 > 编程语言> > 在PHP的Atom编辑器中启用自动完成或智能感知

在PHP的Atom编辑器中启用自动完成或智能感知

作者:互联网

我是PHP代码的Atom编辑器的第一次用户. Atom可以自动完成PHP的内置函数.是否可以使编辑器自动完成我在单独文件中编写的自定义函数?

function.php

<?php
function printSomething() {
   echo "Hello World";
}

的index.php

<?php
require_once "function.php";
printSomething(); // autocompleted by Atom editor while typing

提前致谢.

解决方法:

%userprofile%.atom中有一个名为snippets.cson的文本文件.在那里你可以添加一个片段.

更多关于这个:http://flight-manual.atom.io/using-atom/sections/snippets/

但是你需要考虑以后可以在其他文件上使用它.否则你需要复制和粘贴.

标签:php,autocomplete,atom-editor,intellisense
来源: https://codeday.me/bug/20190711/1432063.html