Mouinul Hossain
Mouinul Hossain
https://github.com/declancm/cinnamon.nvim/assets/122956967/7288f951-d9d9-492c-abf6-1229bb818fc4 As you can see, if I attempt to scroll with the cursor in the top 2 or the bottom 2 lines of the buffer the plugin doesn't do anything....
I accidentally clicked the wrong button, my bad 😅.
Well, that explains the issue. But, I kinda stopped using the plugin(due to plugins with animations not liking each others). Last I checked the plugin used `sleep` for the animations....
That fixed the issue. But this is weird. There was a merged PR that added Termux support. And `browser.go` file seem to have `chromium-browser` in it. So, why wasn't it...
Relevant line: [browser.go#L222](https://github.com/go-rod/rod/blob/main/lib/launcher/browser.go#L222). Relevant PR: #808
The problem is, the PR *should've* solved the problem. To check where chromium is I ran this, ```shell > whereis chromium-browser chromium-browser: /data/data/com.termux/files/usr/bin/chromium-browser ``` This path is already in [here](https://github.com/go-rod/rod/blob/main/lib/launcher/browser.go#L227)....
Unless there is any significant change in what currently is used and the integration, there is no need to set it to `true`. The plugin uses `tree-sitter` highlight groups so...
@sgoudham Also, there has been significant changes to highlight groups. So the original comment is outdated. https://github.com/user-attachments/assets/ae3d2912-65d4-4dd7-a8bb-614c4406c4e3
@phanen, if you want to use the parser right now, you can just drop [these lines](https://github.com/OXY2DEV/nvim/blob/fa1682b2d600bbb29f16d1670fa5573e4a5ffac3/after/ftplugin/qf.lua#L12-L25) into `after/ftplugin/qf.lua`.
I have finally managed to get it to work.  You can find the source code [here](https://github.com/OXY2DEV/nvim/blob/054c729587175833e41bc580f1115d3db4a822ce/lua/plugins/lsp.lua#L137-L200). >[!NOTE] > You have to use `defer_fn` or `timers`, if you need to...