VSCode regions in Cursor

Before i switched to Cursor AI i was used to marking regions of my code with custom folds markers like:

// #region my piece of code
const a = 3;
const b = 2;
const result = a+ b;

const rareOps = () => {
    return a + result * b;
}
//#endregion 

This would give me a great and custom code folding experience. I would like to have this in cursor as a lot of my code is marked and organized this way. Thanks!