Rosen Stoyanov
Rosen Stoyanov
+1 for absolute coordinates. The tools I use return coordinates that are relative to the root window. It took me a while to double (and triple) check my coordinate calculation...
I have a few different monitor configurations that I'm using with my laptop (home and work configs) and `lemonbar` doesn't handle them all too graciously even though I'm supplying all...
@jcubic thank you for noticing! I'm not the owner of that website, so I will prepare a demo and publish it with GH pages in a few days!
Sorry, my mistake. I just checked the process list and the typescript lang server seems to be working. I thought it crashed because all the functionality provided by the language...
When the unreadable file is present in a project, no matter what .js file I open, the typescript server throws the error and LanguageClient-neovim stops working normally and just echoes...
It's a new project we inherited. The setup is "interesting". When running a dev environment, a ton of docker containers run and create a bunch of folders which are unreadable...
I've created a [small plugin](https://github.com/pockata/harpoon-highlight-current-file) that adds this functionality. The actual code is so small that you can copy it to your config and save yourself a dependency.
The `UI_CREATE` event provides a `current_file` context field (introduced in #457). You can see it in action [here](https://github.com/pockata/harpoon-highlight-current-file/blob/223fc03c48c881340952c54bc8c63b9d27d67219/lua/harpoon-highlight-current-file/init.lua#L12). Perhaps it can be of service?
Ah, I see. This is also fine. The query in the PR is consistent with the other `@assignment` queries so it should be good to go. Let me know if...
> In order for `@assignment.inner` to work properly, we need one more query like this: > > ``` > (declaration > (property_name) @assignment.inner > ) > ``` I'm a bit...