You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It is a cool plugin and I like it. I use docker container as the development environment as well, which is easy to share and manage. How can I run the code in this docker container and can consume put the result in the quick-fix list as well. Maybe, I can be done by substitute the command to command with prefix “docker exec [args]". Where can I change the command actually run by this plugin? The other thing is how to get the result generated in docker container can copy it back to the host and set it in quick-fix list.
Thank you in advance!
The text was updated successfully, but these errors were encountered:
you can define a new modifier in a standalone script in ~/.vim/autoload/asyncrun/program or any sub-directory named autoload/asyncrun/program inside a runtime-path.
I don't think it is that straightforward. I use a compiler to deal with my python traceback and I have to use the same file directory between host and container. Can this be solved to provide something like path_mapping in neovim dap debugger remote? We can sed the result and replace with the right file path of the trace back result. I think it is quite common and helpful if we can support running code in docker easily. Path mapping and helper function can be one of the solutions to this. I know little about the vim script and can this done using lua? How should we put the result in the quickfix list using neovim api or lua function?
It is a cool plugin and I like it. I use docker container as the development environment as well, which is easy to share and manage. How can I run the code in this docker container and can consume put the result in the quick-fix list as well. Maybe, I can be done by substitute the command to command with prefix “docker exec [args]". Where can I change the command actually run by this plugin? The other thing is how to get the result generated in docker container can copy it back to the host and set it in quick-fix list.
Thank you in advance!
The text was updated successfully, but these errors were encountered: