Tautvydas Šidlauskas

Results 48 comments of Tautvydas Šidlauskas

Hi, @akinsho, thanks for the great plugin! I am using flutter daily, so I am willing to help to maintain the plugin too :)

I am also interested in this functionality. I found that flutter has built-in command for this: `flutter debug_adapter --test` https://github.com/flutter/flutter/tree/master/packages/flutter_tools/lib/src/debug_adapters#debug-adapter-protocol-dap I was able to stop at breakpoint at test, with...

I just made my dotfiles public, the relevant part I think is: https://github.com/sidlatau/dotfiles/blob/e7f95739dcff5b121fb92904240e96753164287e/nvim/.config/nvim/lua/user/test.lua#L1 There is also one catch to be aware of with test names - if the test name...

Sorry, did not manage to prepare a minimum working example, so not sure if this is a problem in my config or in the plugin. I am still have cropped...

These are Visual Studio Code snippets. Here is the full grammar: https://code.visualstudio.com/docs/editor/userdefinedsnippets#_grammar

@ww-daniel-mora you may also check https://github.com/sidlatau/neotest-dart, it works for me when I need to debug tests.

I added logging: ```lua before = function(config) dap.listeners.after.event_output[handler_id] = function(_, body) vim.pretty_print("output-------", body) if vim.tbl_contains({ "stdout", "stderr" }, body.category) then async.run(function() data_accum:push(body.output) end) end end dap.listeners.after.event_exited[handler_id] = function(_, info) vim.pretty_print("exit----------",...

@IgorKhramtsov are you using a debugger? Looks like I can make it work if I disable the debugger in settings: ```lua debugger = { enabled = false, run_via_dap = false...

Individual fixes are already supported by the analyzer, they are visible in code actions (see "Rename to 'bodyMedium'"):

I am unable to reproduce this issue for a while, so closing it.