atom遇到的问题及解决方法

Posted windmissing

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了atom遇到的问题及解决方法相关的知识,希望对你有一定的参考价值。

问题一:git push不成功,又没有任何错误提示

在atom中push不成功,又没有任何错误提示。
在git bash中push,提示输入用户名和密码。
原因是使用了https协议,改成ssh协议可以解决此问题。

1.把~/.ssh/id_rsa.pub加到git的工程中
2.改协议

git remote -v
origin  https://github.com/windmissing/windmissing.github.io.git (fetch)
origin  https://github.com/windmissing/windmissing.github.io.git (push)

git remote rm origin

git remote add origin git@github.com:windmissi
ng/windmissing.github.io.git

git remote -v
origin  git@github.com:windmissing/windmissing.github.io.git (fetch)
origin  git@github.com:windmissing/windmissing.github.io.git (push)

问题二:安装package

参考《atom安装package遇到的问题》

问题三、中文不会自动换行

Settings -> Editor
勾选Soft Wrap

问题四、markdown文件保存后行尾的空格自动消失

markdown文件的行尾增加两个空格表示一行结束需要换行。
但保存文件后,行尾的空格自动消失,导致不换行。
Settings -> Packages -> whitespace
whitespace Settings -> Keep Markdown Line Break Whitespace勾选
若还不能解决,直接把这个插件禁用掉

问题五、一些实用的插件

名字作用git repo
Activate Power Modesubline的拉动效果https://github.com/JoelBesada/activate-power-mode.git
atom-beautify代码格式化https://github.com/Glavin001/atom-beautify.git
Atom html Preview实时预览html
file icons使左边的树形目录很好看
git plus更方便地使用git
markdown-scroll-sync Atom editor packagemarkdown的预览可以同步滚动
minimap缩略图

以上是关于atom遇到的问题及解决方法的主要内容,如果未能解决你的问题,请参考以下文章

JUC框架之——CAS及Atomic类

atom无法安装插件的解决方法之一

Flutter项目遇到的问题及解决方法记录

007-atomic包的原理及分析

python 使用中遇到的问题,记录及解决方法

mac 安装 python mysqlclient 遇到的问题及解决方法