I love the editor and it really helps my coding experience.
One question about isolating the code block feature is when writing some tests.
Currently, isolating the test code scrolls to the point very far bottom. (could be a bug)
eg)
env: nodejs, mocha,
describe('some tests', function() {
it('dummy test1', function() {
// ...
})
it('can isolate the test', function() {
//
// I would like to isolate this test block only but it is not working.
//
})
it('dummy test2', function() {
// ...
})
})
I love the editor and it really helps my coding experience.
One question about isolating the code block feature is when writing some tests.
Currently, isolating the test code scrolls to the point very far bottom. (could be a bug)
eg) env: nodejs, mocha,