简体   繁体   中英

How do I get rid of this window in Atom/Typescript?

How do I get rid of this window in Atom when working with Typescript? What is that window called?

在此处输入图片说明

What is that window called

You can call it the main panel view for TypeScript .

How do I get rid of this window?

There isn't an official way (and I don't recommend it). But you can put the following in your atom styles.less file to hide it:

.atomts-main-panel-view{
    display: none !important;
}

Note: this class name will work starting from v5.0.17 which I just pushed.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM