zoukankan      html  css  js  c++  java
  • Atom 插件

    用了挺长时间的Atom编辑器,但是却一直没想过用它的插件。这段看到有些编辑器带有terminal和取色功能,就想找Atom的相关插件,没想到还真有。

    不过使用编辑器自带的插件安装功能(settings/install)老是报错,于是又找了手动安装的方案,记录一下,方便以后安装。

    我安装了四个插件:

    1. atom-terminal-panel (git 地址:https://github.com/isis97/atom-terminal-panel.git)

    就是说可以在编辑器中直接打开terminal面板并使用啦!看图

    2. file-icon (git 地址: https://github.com/DanBrooker/file-icons.git)

    文件前面加上图标,这个其实没什么用,纯粹是为了好看...

    3. emmet (git 地址:https://github.com/emmetio/emmet-atom)

    这个插件很实用!看下面的操作:

    4. color-picker (git 地址: https://github.com/thomaslindstrom/color-picker.git)

    取色工具,安装好后按ctrl+shift+c

     

    安装方法

    在命令行输入:

    cd ~/.atom/packages

    找到插件所在的git地址,并输入:

    git clone <插件所在的git地址>
    cd <插件名>
    npm install 
    

    先把插件clone到~/.atom/packages目录下,然后cd进入插件目录,执行npm install。

    比如,我要安装取色插件。

    git clone https://github.com/thomaslindstrom/color-picker.git
    

    进入插件目录:

    cd color-picker
    

    执行npm install。

    完成!

    每次安装完插件后,需要重启Atom编辑器,才能使用。

    文小白滴笔记~~
  • 相关阅读:
    基于摸板匹配的目標跟蹤算法
    spoj 2713 Can you answer these queries IV
    zoj 3633 Alice's present
    hdu 3642 Get The Treasury
    poj 1195 Mobile phones
    poj 2760 End of Windless Days
    zoj 3540 Adding New Machine
    spoj 1716 Can you answer these queries III
    spoj 1043 Can you answer these queries I
    spoj 2916 Can you answer these queries V
  • 原文地址:https://www.cnblogs.com/lwl0812/p/5424419.html
Copyright © 2011-2022 走看看