rafalglowacz

Results 7 comments of rafalglowacz

I have a similar issue, except with Vue 2.7 and jumping from a method to another method's definition also doesn't work, unlike in OP's case. I've created a simple [repro...

What about 2.7, is it expected to work when defining components with `export default {...}`? I'm trying to investigate it but I'm new to language servers, it might take a...

For Laravel devs who run into this issue despite having the newest version of the plugin - try `transformAssetUrlsOptions: {...}` instead of `transformAssetUrls: {...}`. The latter is from current Laravel...

I was able to make my build work by commenting out the devtools import after building: ```shell node_modules/.bin/esbuild src/index.js \ ... --external:react-devtools-core \ --external:yoga-wasm-web \ --define:process.env.NODE_ENV=\"production\" sed -i '' 's#^import...

As a workaround, you can install `fd`. It has `--no-ignore` option so it won't cause this error. And it's known for good performance, so it's preferred anyway. See here: https://github.com/sharkdp/fd#on-ubuntu...

I've run into a limitation though. I have a repo with a large number of files and not all directories are displayed. I don't know what exactly is limiting me...

I'm pretty happy with the following workaround: ```lua return { 'Weissle/persistent-breakpoints.nvim', -- ... keys = { { 'd,', function() require('persistent-breakpoints.api').reload_breakpoints() -- Reopen DAP UI to update breakpoint list (it won't...