zokugun / vscode-explicit-folding

Customize your Folding for Visual Studio Code
MIT License
99 stars 14 forks source link

Folding not working after updating config #49

Closed zacksmash closed 3 years ago

zacksmash commented 3 years ago

Describe the issue

Not able to get folding keyboard shortcut to execute. Folding in general doesn't seem to be working with new configuration.

To reproduce

Code Example

//|>   Block

//$variable: #fff;

//<|

Settings

"explicitFolding.rules": {
    "scss": [
      {
        "begin": "|>",
        "end": "<|"
      },
      {
        "begin": "region",
        "end": "endregion"
      }
    ]
  },

Expected behavior

Items between the specified begin and end params should fold, either with the gutter controls or with the keyboard shortcut.

HolyBlackCat commented 3 years ago

I have this problem too. "folding" works, but the suggested "explicitFolding.rules" doesn't.

daiyam commented 3 years ago

I'm sorry! I've just published an update fixing the issue. It should be available in 5 minutes in the store.

daiyam commented 3 years ago

I've been able to update it from the store. The issue is fixed. Sorry again.

zacksmash commented 3 years ago

@daiyam This works great after updating! Definitely the quickest issue-to-fix I've ever experienced. haha Thanks!