实用atom 插件 及 如何编写C/C++

实用atom 插件 及 如何编写C/C++_第1张图片
atom

效率类

1. minimap

类似于sublime text的略缩图,很实用,atom初始没有集成开发时却必不可少


实用atom 插件 及 如何编写C/C++_第2张图片
minimap

要实现如图的效果需要同时安装下面两个插件

2. highlit-selected

也是sublime text中的功能,高亮选中的词,十分实用

实用atom 插件 及 如何编写C/C++_第3张图片
highlight-selected

3. minimap-highlit-selected

在略缩图图高亮显示选中词,效果见图一

4. minimap-codeglance

实用atom 插件 及 如何编写C/C++_第4张图片
minimap-codeglance

5. platformio-ide-terminal

集成终端

实用atom 插件 及 如何编写C/C++_第5张图片
platformio-ide-terminal

6. markdown-img-paste

在markdown中粘贴图片

实用atom 插件 及 如何编写C/C++_第6张图片
markdown-img-paste

7. markdown-scroll-sync

markdown-scroll-sync

8. file-icons

实用atom 插件 及 如何编写C/C++_第7张图片
file-icons

9. toolbar

实用atom 插件 及 如何编写C/C++_第8张图片
tool bar

10. linter

语法错误检查。需要配合具体的语言插件,比如 linter-gcc

linter

11. minimap-linter

在略缩图中显示linter检测到的错误的位置


实用atom 插件 及 如何编写C/C++_第9张图片
minimap-linter

12. build

实用atom 插件 及 如何编写C/C++_第10张图片
build

For C/C++ developer

要想atom变得和IDE一样好用还是挺难的。我现在也木有用atom,用vscode,嘘~

    1. 编写时提示、补全
    • 简单的工程可以用插件linter+linter-gcc来实现代码补全和错误提示。当需要include文件夹时,在linter-gcc插件设置中设置

      实用atom 插件 及 如何编写C/C++_第11张图片
      linter-gcc添加头文件目录

    • 也可以使用autocomplete-clang工具(电脑需要先安装clang)来实现代码补全,但是添加头文件都是一件麻烦的事:
      在工程简单的时候可以手动添加include地址,但是工程复杂了就很难用了,往往一个SDK都有无数include地址,会用makefile进行组织,还要继续用这个插件也许有更好的方法。
      手动添加include地址的方法:工程根目录创建一个文件,如下:

      实用atom 插件 及 如何编写C/C++_第12张图片
      添加include

注意-I和地址之间没有空格

    1. 编写时goto definition
      可以用goto-definition插件,原理同sublime自带的功能,字符匹配。也可以用插件autocomplete-clang的功能,默认快捷键是f3与其它功能冲突,需要自己自定义
      file->keymap,添加
'atom-workspace':
  'f12': 'autocomplete-clang:go-declaration'
  'alt-f1': 'autocomplete-clang:go-declaration'

即定义f12和alt+f1键为goto definition,也可以右键

实用atom 插件 及 如何编写C/C++_第13张图片
goto definition
    1. 编译
      小工程当然可以;对于makefile工程,编译和错误定位还是能做到的,装好 build+build-make+linter+linter-ui-default这几个插件(安装时插件有依赖的插件会提示,点击确认同意安装就行了),
      编写好代码
      实用atom 插件 及 如何编写C/C++_第14张图片
      makefile project demo

      然后F7选择target运行即可,F9是运行上一次运行的target
实用atom 插件 及 如何编写C/C++_第15张图片
F7 to run make
实用atom 插件 及 如何编写C/C++_第16张图片
make成功
实用atom 插件 及 如何编写C/C++_第17张图片
make出现错误,因为有linter,可以快速定位

炫酷类

1. activate-power-mode

activate-power-mode
实用atom 插件 及 如何编写C/C++_第18张图片
activate-power-mode

你可能感兴趣的:(实用atom 插件 及 如何编写C/C++)