Atom의 시작 화면을 제거하는 방법
인터넷을 검색했는데 솔루션이 너무 복잡합니다. "Welcome Guide"화면을 쉽게 제거 할 수있는 방법이 있습니까?
두 가지 해결책이 있습니다. 나는 당신이 "제거하기 위해"라고 말할 때 두 번째가 최고라고 생각한다.
- 플러그인
Show On Startup
구성Welcome
(Settings
»Packages
»welcome
) 의 옵션을 선택 취소하면 시작할 때 (또는 새 창을 열 때) 화면이Atom
표시되지 않지만 여전히 플러그인을로드합니다.Welcome
Atom
Welcome
플러그인 (Settings
»Packages
»welcome
) 을 비활성화하면Atom
로드하지 않고 (메모리 절약)Welcome
화면을 표시하지 않습니다 (어떤 상황에서도).
On OS X, you go to menu Atom → Preferences → Packages and then you have to either find Welcome in the Core Packages or use the filter. You can't get there by going directly to packages
in the top nav. Crazy.
The easiest way that worked for me is when the welcome page appears, uncheck the Show welcome guide when open
. For clarification Here is the image
I am running Linux Mint and I deselected to "show on startup" and turned off telemetry, but for some reason was never saved and always showed. Even going through preferences did nothing for me to fix the issue. This was the only thing that fixed it for me was creating a config file for it in my home directory under the .atom
directory.
cat ~/.atom/config.cson "*": core: telemetryConsent: "no" welcome: showOnStartup: false
There are other values for this file, but these should turn off the Welcome screen
and Telemetry
if it keeps showing up for you.
It sounds pretty trivial, but after disabling the welcome guide from the welcome page,
and restarting Atom you may still see the welcome guide if you didn't close the page and have the "Restore Previous Windows On Start" (under Settings → Core) set to "yes" or "always":
Simply make sure to close the welcome guide before you restart Atom (or if you do not want to have windows restored you can also change that option to "no").
참고URL : https://stackoverflow.com/questions/41342121/how-to-get-rid-of-atoms-welcome-screen
'Development Tip' 카테고리의 다른 글
자바 스크립트 객체에 메소드 추가 (0) | 2020.11.23 |
---|---|
Java에서 db 리스너를 구현하는 방법 (0) | 2020.11.21 |
MVC의 대안 (0) | 2020.11.21 |
MySQL에서 열과 테이블 이름이 대소 문자를 구분합니까? (0) | 2020.11.21 |
JSON을 IEnumerable로 역 직렬화하는 방법 (0) | 2020.11.21 |