美文网首页开源工具
atom在mac上频繁崩溃问题(atom:The editor

atom在mac上频繁崩溃问题(atom:The editor

作者: 侬姝沁儿 | 来源:发表于2019-07-25 18:10 被阅读0次

不知是何原因,atom在我mac上频繁崩溃,折腾了我一天,查看了github上相应的错误:https://github.com/atom/atom/issues/13280

这里把我的步骤教给大家:

1、先将atom移出应用程序

2、然后执行下面的命令

rm -rf ~/.atom
rm /usr/local/bin/atom
rm /usr/local/bin/apm
rm ~/Library/Preferences/com.github.atom.plist
rm ~/Library/Application Support/com.github.atom.ShipIt
rm -rf ~/Library/Application Support/Atom/
rm -rf /Applications/Atom.app
rm -rf ~/Library/Caches/com.github.atom
rm -rf ~/Library/Caches/Atom
rm -rf ~/Library/Saved Application State/com.github.atom.savedState

详细内容请参考这里:How to Completely Uninstall Atom for Mac?

3、打开这个地址下载最新的atom:Atom release,并安装。
4、你通过分别使用atom --safe或atom --clear-window-state启动Atom来进行判断是不是由于某个安装包导致的问题:

如果 atom --safe 启动了,而 atom --clear-window-state 崩溃了,则很有可能是由你用的某个社区包或错误的序列化状态引起的。

你可通过当每安装一个插件后,重启atom,查看是否崩溃来进行判断。

apm 安装的方法如下:

# 安装指定包
apm install <package_name>
# 安装指定版本的包
apm install <package_name>@<package_version>
# 查找包
apm search <package_name>
# 查看包更多详情
apm view <packge_name>
# 查看当前已安装包(包含atom里面自带的一些包和你自己安装的包)
apm list

其他的安装方式:Atom安装插件的几种方式

相关文章

  • atom在mac上频繁崩溃问题(atom:The editor

    不知是何原因,atom在我mac上频繁崩溃,折腾了我一天,查看了github上相应的错误:https://gith...

  • 简单打开gem文件

    需要设置:$EDITOR,我用的是atom。export EDITOR="atom"然后bundle open r...

  • Atom Editor

    remote-sync 远程同步文件夹/文件, 适合远程调试, 不需要本地改完后手动上传使用scp/sftp, f...

  • Visual Studio Code更为轻松好用让你飞起来的编辑

    种草给大家,我的Atom在windows上最近老闪退,所以换VScode喽。在Mac上Atom还是蛮好用的。 去官...

  • Atom编写Markdown

    Atom编写Markdown Atom简介 Atom是GitHub开发的一款跨平台(Windows、Mac、Lin...

  • git permission deny 问题解决

    针对ATOM 的git plus, Mac电脑,git 配置完成后,atom 内的git-push无效问题的解决方...

  • Mac下vscode 终端打开文件夹

    Mac下vscode 终端打开文件夹 在终端使用 atom . 命令使得 Atom 打开当前目录 使用 ...

  • 2017-08-31

    为我最爱的text editor-----Atom打 call

  • Atom

    Atom : A hackable text editor for the 21st Century Why At...

  • 安装Atom

    安装Atom要开始使用Atom,我们需要在您的系统上。 本节将讨论在系统上安装Atom以及如何从源代码构建Atom...

网友评论

    本文标题:atom在mac上频繁崩溃问题(atom:The editor

    本文链接:https://www.haomeiwen.com/subject/qlhkrctx.html