Lukas B.

Results 44 comments of Lukas B.

Maybe display it instead of the input editor because changing the options only affects the output editor.

Have you tried to use other variations of the `args` array? e.g. ```json "args": [ "-param1 value1", "-param2 param2" ] ``` or everything split up? ``` "args": [ "-param1", "value1",...

You can try and change the "File System Watcher" in the settings to something else. It even says: > but may help prevent crashes or freezes. So give it a...

Unfortunately I have no ubuntu available at the moment. This "File System Watcher" is in the settings of atom itself (ctrl + , or via command palette `Settings view: Open`)....

This seems highly specific to your use case. I haven't found any debug session that could not be solved using proper https://github.com/lloiser/go-debug#configuration settings. Feel free to share more details about...

Are talking about configuration? https://github.com/lloiser/go-debug#examples If you are talking about the plugin itself.. well I thought it's pretty much self explanatory, if not pls be more specific about your problem...

Unfortunately this is a limitation of delve itself... I have just tried your code in the terminal using `dlv debug` ``` $ dlv debug Type 'help' for list of commands....

It seems there was an issue in go-debug. Please open the developer tools of atom using the `Toggle Dev Tools` command and check the `Console` tab for errors/warnings if this...

You can try to run delve in your terminal/bash too. just `cd` to your package folder and run `dlv debug`. Have a look at https://github.com/derekparker/delve/tree/master/Documentation/usage to see how to use...

Sry but I'm still not able to reproduce this problem. Do you have some golang code that you can share with me that causes this problem? Or at least provide...