sainnhe / gruvbox-material-vscode

Gruvbox Material for Visual Studio Code
https://marketplace.visualstudio.com/items?itemName=sainnhe.gruvbox-material
MIT License
224 stars 21 forks source link

When opening a C# project, syntax highlighting changes when the project loads #268

Open Esildor opened 1 year ago

Esildor commented 1 year ago

Settings

{
    "editor.minimap.enabled": false,
    "workbench.sideBar.location": "right",
    "window.titleBarStyle": "custom",
    "editor.formatOnPaste": true,
    "editor.rulers": [
        80,
        120
    ],
    "terminal.integrated.shell.windows": "C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
    "explorer.confirmDelete": false,
    "editor.renderWhitespace": "all",
    "breadcrumbs.enabled": true,
    "git.autofetch": true,
    "sync.gist": "82fe8fa512a574bcd3337662e4e49a2d",
    "sync.autoUpload": true,
    "todo.embedded.exclude": [
        "**/.*",
        "**/.*/**",
        "**/*.{3ds,3g2,3gp,7z,a,aac,adp,ai,aif,aiff,alz,ape,apk,ar,arj,asf,au,avi,bak,baml,bh,bin,bk,bmp,btif,bz2,bzip2,cab,caf,cgm,class,cmx,cpio,cr2,csv,cur,dat,dcm,deb,dex,djvu,dll,dmg,dng,doc,docm,docx,dot,dotm,dra,DS_Store,dsk,dts,dtshd,dvb,dwg,dxf,ecelp4800,ecelp7470,ecelp9600,egg,eol,eot,epub,exe,f4v,fbs,fh,fla,flac,fli,flv,fpx,fst,fvt,g3,gif,graffle,gz,gzip,h261,h263,h264,icns,ico,ief,img,ipa,iso,jar,jpeg,jpg,jpgv,jpm,jxr,key,ktx,lha,lib,lvp,lz,lzh,lzma,lzo,m3u,m4a,m4v,mar,mdi,mht,mid,midi,mj2,mka,mkv,mmr,mng,mobi,mov,movie,mp3,mp4,mp4a,mpeg,mpg,mpga,mxu,nef,npx,numbers,o,oga,ogg,ogv,otf,pages,pbm,pcx,pdb,pdf,pea,pgm,pic,png,pnm,pot,potm,potx,ppa,ppam,ppm,pps,ppsm,ppsx,ppt,pptm,pptx,psd,pya,pyc,pyo,pyv,qt,rar,ras,raw,resources,rgb,rip,rlc,rmf,rmvb,rtf,rz,s3m,s7z,scpt,sgi,shar,sil,sketch,slk,smv,so,sub,swf,tar,tbz,tbz2,tga,tgz,thmx,tif,tiff,tlz,ttc,ttf,txz,udf,uvh,uvi,uvm,uvp,uvs,uvu,viv,vob,war,wav,wax,wbmp,wdp,weba,webm,webp,whl,wim,wm,wma,wmv,wmx,woff,woff2,wvx,xbm,xif,xla,xlam,xls,xlsb,xlsm,xlsx,xlt,xltm,xltx,xm,xmind,xpi,xpm,xwd,xz,z,zip,zipx}",
        "**/Library/**",
        "**/Assets/3rd-Party/**",
        "**/Assets/ThirdParty Assets/**",
        "**/Assets/Third Party Misc/**",
        "**/Assets/ThirdParty Misc/**",
        "**Assets/GameBase/ThirdParty/**"
    ],
    "todo.embedded.providers.ag.regex": "(?:#|//|/\\*+|<!--|--|\\* @|\\{!|\\{\\{!--|\\{\\{!) *(TODO|FIXME|FIX|BUG|UGLY|HACK|MUST|IDEA|REVIEW|OPTIMIZE)",
    "todo.embedded.providers.rg.regex": "(?:#|//|/\\*+|<!--|--|\\* @|\\{!|\\{\\{!--|\\{\\{!) *(TODO|FIXME|FIX|BUG|UGLY|HACK|MUST|IDEA|REVIEW|OPTIMIZE)",
    "todo.embedded.regex": "(?:<!-- *)?(?:#|//|/\\*+|<!--|--|\\* @|\\{!|\\{\\{!--|\\{\\{!) *(TODO|FIXME|FIX|BUG|UGLY|HACK|MUST|IDEA|REVIEW|OPTIMIZE)(?:\\s*\\([^)]+\\))?:?(?!\\w)(?: *-->| *\\*/| *!}| *--}}| *}}|(?= *(?:[^:]//|/\\*+|<!--|@|--|\\{!|\\{\\{!--|\\{\\{!))|((?: +[^\\n@]*?)(?= *(?:[^:]//|/\\*+|<!--|@|--(?!>)|\\{!|\\{\\{!--|\\{\\{!))|(?: +[^@\\n]+)?))",
    "todo.file.exclude": [
        "**/.!(todo|todos|task|tasks)/**",
        "**/_output/**",
        "**/bower_components/**",
        "**/build/**",
        "**/dist/**",
        "**/node_modules/**",
        "**/out/**",
        "**/output/**",
        "**/release/**",
        "**/releases/**",
        "**/static/**",
        "**/target/**",
        "**/third_party/**",
        "**/vendor/**"
    ],
    "cSpell.userWords": [
        REDACTED
    ],
    "sync.autoDownload": true,
    "sync.removeExtensions": false,
    "sync.quietSync": true,
    "sync.forceUpload": true,
    "[csharp]": {
        "editor.defaultFormatter": "ms-dotnettools.csharp"
    },
    "git.confirmSync": false,
    "extensions.ignoreRecommendations": true,
    "git.ignoreWindowsGit27Warning": true,
    "editor.suggestSelection": "first",
    "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
    "editor.tabSize": 2,
    "editor.formatOnSave": true,
    "editor.formatOnSaveMode": "modifications",
    "javascript.format.placeOpenBraceOnNewLineForFunctions": true,
    "javascript.format.placeOpenBraceOnNewLineForControlBlocks": true,
    "typescript.format.placeOpenBraceOnNewLineForFunctions": true,
    "typescript.format.placeOpenBraceOnNewLineForControlBlocks": true,
    "workbench.editor.enablePreview": false,
    "workbench.startupEditor": "newUntitledFile",
    "git.decorations.enabled": false,
    "json.maxItemsComputed": 15000,
    "workbench.editor.untitled.hint": "hidden",
    "omnisharp.useGlobalMono": "always",
    "security.workspace.trust.untrustedFiles": "open",
    "security.workspace.trust.enabled": false,
    "explorer.confirmDragAndDrop": false,
    "csharpsortusings.sort.usings.splitGroups": false,
    "editor.cursorSmoothCaretAnimation": "on",
    "workbench.list.smoothScrolling": true,
    "editor.smoothScrolling": true,
    "workbench.editor.showTabs": false,
    "workbench.colorTheme": "Gruvbox Material Dark",
    "dotnet.codeLens.enableReferencesCodeLens": false,
    "csharp.semanticHighlighting.enabled": false,
    "git.openRepositoryInParentFolders": "never"
}

Steps to reproduce this bug

Actual behaviour

Expected behaviour

Video: issue

Esildor commented 1 year ago

I'd like to note, per this issue mentioning:

Try disable semantic highlighting.

This suggestion no longer fixes the issue!

Esildor commented 1 year ago

bump

Esildor commented 7 months ago

bump