cyberbiont / vscode-profiles

vscode plugin to easily manage multiple extensions / settings configurations
ISC License
26 stars 2 forks source link

a question #3

Open xiangmengpan opened 3 years ago

xiangmengpan commented 3 years ago

When my extension has a file icon, it will be very slow to switch (sometimes up to a minute)

cyberbiont commented 3 years ago

Hmm, I am not aware of any problems connected to extensions file icons. In essence, the extension just switches symlinks, so its functionality cannot possibly be deterred in this way. Can you please give more details about how to reproduce this problem?

xiangmengpan commented 3 years ago

It recovered the next day, and I did not find the problem. I use the icon pkief.material-icon-theme-4.9.0, it seems that it does not use links but a copy of each environment.

xiangmengpan commented 3 years ago

1. This is my java extension:

image

2. This is my python extension:

image

3. This is my json:

{
...
"profiles.extensions.common": [
        "vscodevim.vim",
        "kiteco.kite",
        "fisheva.eva-theme",
        "cyberbiont.vscode-profiles",
        "ms-ceintl.vscode-language-pack-zh-hans",
        "pkief.material-icon-theme",
        // "aaron-bond.better-comments",
        // "svenzhao.var-translation",
        // "formulahendry.auto-rename-tag",
        // "esbenp.prettier-vscode",
    ],
    "profiles.extensions.symlinkify": true,
    "workbench.iconTheme": "material-icon-theme",
}

4. vscode 1.59.0

When switching between the two environments, the lower left corner always displays the analyzing profile...

image

image

This extension doesn’t seem to use conforming links When I removed the icon extension, the speed returned to normal