Stevan Milic

Results 29 comments of Stevan Milic

These are the colors I use, looks fine (taken from the plugins @matu3ba mentioned): ```lua local colors = { bg = '#073642', yellow = '#b58900', cyan = '#2aa198', darkblue =...

@ruifm I've made a PR for this feature, I hope you find the time to review it 😄

@kevinhwang91 the issue still occurs, it isn't fixed with latest commit.

Will provide the log 👍🏻 I'm using sumneko_lua formatter in this case, but also happens with black (null-ls) formatter. BTW I remember having this issue with _default_ tree-sitter foldexpr, it...

log: ``` [22-07-29 09:12:42] [INFO] manager.lua:195 : apply fold ranges: { { endLine = 3, startLine = 1 } } [22-07-29 09:12:42] [INFO] manager.lua:196 : apply fold rowPairs: {} [22-07-29...

@kevinhwang91 do you have in-mind any workaround that I can use, to make the folds _stable_? The one that comes to my mind is saving and restoring the view –...

Got it, thanks for the input! I hope the issue gets fixed upstream soon 🤞🏻

https://github.com/kevinhwang91/nvim-ufo/commit/65af01fe5efecf005dc33a6d6afe4469c5be467c it does fix the issue I'm having, looks neat so far 👌🏻 the only drawback is that it would open all the folds after the line that has been...

Just wanted to let you know I've added [neotest-scala](https://github.com/stevanmilic/neotest-scala) adapter for `neotest`. It uses `treesitter` to discover positions and sbt/bloop CLI to run tests. But in case of debugging it...

I had the same problem, first three lines of dist/template-app/app.js should be changed to: ``` // const {app, BrowserWindow} = require('electron') var app = require('app'); var BrowserWindow = require('browser-window'); ```