虽然已经开发过两个简单的插件。
但是我还是不清楚如何如何安装本地开发中的插件。
目前的做法是用比较工具或者手工拷贝到 ~/.atom/packages 目录中。
不知道有没有 apm
的命令可方便安装本地目录中的插件呢?
虽然已经开发过两个简单的插件。
但是我还是不清楚如何如何安装本地开发中的插件。
目前的做法是用比较工具或者手工拷贝到 ~/.atom/packages 目录中。
不知道有没有 apm
的命令可方便安装本地目录中的插件呢?
apm link --dev
可以将当前目录作为一个正在开发中的插件加载到 Atom 中,其实是在 ~/.atom/packages
中建了一个符号链接。
Usage: apm link [<package_path>]
Create a symlink for the package in ~/.atom/packages. The package in the
current working directory is linked if no path is given.
Run `apm links` to view all the currently linked packages.
Options:
--help, -h Print this usage message
--dev, -d Link to ~/.atom/dev/packages [boolean]
Prefix an option with `no-` to set it to false such as --no-color to disable
colored output.