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

时间:2016-02-04 17:03:00

标签: php autocomplete intellisense atom-editor

我是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

提前致谢。

1 个答案:

答案 0 :(得分:0)

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

有关此内容的更多信息:http://flight-manual.atom.io/using-atom/sections/snippets/

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