Atom琳琅满目的插件中,为您推荐一些实用的插件。
sync-settings
首先,这是一个配置备份插件,方便以后的迁移,配合gist实用快捷。
atom-beautify
使你的代码一键格式化,支持多种语言,相对较全。
autoclose-html
html代码自动化闭合,更加便捷的写div.
autocomplete-paths
更加智能的补全你的资源路径。
autoprefixer
为CSS和SCSS增加浏览器前缀。
color-picker
在编辑器选择你想要的颜色,找到颜色,点击就OK.
docblockr
辅助编写你的注释,让你爱上写注释。
elastic-tabstops
弹性制表符,适用于对于tab有强迫症的coder。
emmet
前端神器多年,前端必备,配合快捷键更个性化。
file-icons
指定文件扩展名的图标和颜色,改善视觉。
git-control
提供了一个GUI界面来管理所有常用的git命令。(如果你不喜欢命令行)
gulp-control
显示gulp任务的列表,在atom里实现GUI执行。
highlight-selected
双击时高亮当前选择的词。
jquery-snippets
支持jquery代码编写。
language-vue
高亮显示Vue代码,支持Vue组件.
linter-csslint
检测你的CSS是否基本规范,减少你的错误,提高代码质量。
linter-jshint
看你上面的,我想你也了解这个是干嘛的了。
linter-sass-lint
如果你使用SASS/SCSS,这个检测是必要的。
minimap
一个完整源代码的预览,让你看到代码地图。(不建议在一个文件里写很长的代码)
minimap-highlight-selected
在你代码概览地图上高亮显示你的选择。
npm-install
自动安装并保存任何npm模块,你只要require你的包,然后在atom里执行npm,你的包就会被下载。
open-in-browsers
你想在哪个浏览器里运行你的代码,安装这个吧。
regex-railroad-diagram
如果你经常要写正则表达式,这个插件可以显示光标下的正则表达式铁路图。
simplified-chinese-menu
Atom 的简体中文语言包,完整汉化,兼容所有已发布版本 Atom.
tree-view-git-status
树形文件视图中显示Git存储库状态。
Tips:之前找了很久atom的自动保存插件,没找到,原来骑驴找驴,在自带的核心扩展里面就有。autosave,把里面的配置settings里的"Enabled"勾选中,就可以在当前编辑页面失去焦点的时候自动保存。
这个链接是我的配置gist:
https://gist.github.com/AlenQi/e84eca296c2a5f274234e3212f8a6736(包含上面所有的插件,还有我自己的配置,可以直接导入扩展)
如果你想更改atom-beautify里的换行符,LF or CRLF ,see:
Retrieves the default line ending based upon the Atom configuration
line-ending-selector.defaultLineEnding
. If the Atom configuration
indicates “OS Default”, the process.platform
is queried, returning
CRLF for Windows systems and LF for all other systems.
Code modified from atom/line-ending-selector
returns: The correct line-ending character sequence based upon the Atom
configuration, or null
if the Atom line ending configuration was not
recognized.
see: https://github.com/atom/line-ending-selector/blob/master/lib/main.js
在下面的路径下修改你想要的:
packages\atom-beautify\src\beautifiers\js-beautify.coffee
getDefaultLineEnding= ->
switch atom.config.get(‘line-ending-selector.defaultLineEnding’)
when ‘LF’
return ‘\n’
when ‘CRLF’
return ‘\r\n’
when ‘OS Default’
return if process.platform is ‘win32’ then ‘\r\n’ else ‘\n’
else
return null加粗示例