R3D9477

Results 48 comments of R3D9477

@kobi2187, @RSDuck wich versions are you used? I'm tried with lldb-5.0, vscode 1.20.1, gdb 7.11.1 Both extensions (LLDB and NativeDebug) But can't read/evaluate variables/expressions: ![1](https://user-images.githubusercontent.com/15020827/36476703-ae45a61e-170f-11e8-9f5e-81fafa2bdf48.png) Here is sample for NativeDebug+LLDB:...

@brjohnsn Thanks for hint! I'll play with it

@brjohnsn Btw, what is "Variables -> Local"? As I understand, there must be displayed two local variables with values 1 and 2, or no?

@brjohnsn it works, I tried 2 extensions, here is results: --- [vscode-lldb](https://github.com/vadimcn/vscode-lldb) LLDB ![example_1_lldb](https://user-images.githubusercontent.com/15020827/36521366-8a4815d8-17a7-11e8-9302-180030b57a5a.png) ![example_2_lldb](https://user-images.githubusercontent.com/15020827/36521367-8a6ee9b0-17a7-11e8-93a0-e49f0f624a06.png) --- [nativedebug](https://github.com/WebFreak001/code-debug) GDB ![example_1_gdb](https://user-images.githubusercontent.com/15020827/36521404-af6c5932-17a7-11e8-8a40-fe8d86f6a602.png) ![example_2_gdb](https://user-images.githubusercontent.com/15020827/36521405-af91820c-17a7-11e8-81cd-b7c32e7f89d7.png) LLDB-MI ![example_3_lldb-mi](https://user-images.githubusercontent.com/15020827/36521416-b6b2fe12-17a7-11e8-8ad8-a69dbf985ead.png) ![example_4_lldb-mi](https://user-images.githubusercontent.com/15020827/36521417-b6d743d0-17a7-11e8-841c-6bb1cfc6ae84.png) Also I tried MSCppTools for VSCode, but...

Note: plugin vscode-lldb doesn't support input stream. main.nim ``` echo "Enter your name:" let name = readLine(stdin) ``` output: ``` Enter your name: *enter* name error: 'name' is not a...

Another bad situations: * booleans and strings displays ugly :( * datatypes doesn't displays ![screenshot at 2018-06-09 15-30-54](https://user-images.githubusercontent.com/15020827/41191574-69750206-6bfa-11e8-9f07-4bb95a0df536.png)

Another discussion for this theme https://github.com/pragmagic/vscode-nim/issues/65

Related discussion here: https://github.com/haxeui/haxeui-core/issues/171

@dom96 well, what I trying to do: 1) to start server: ``` ... proc btnStartClicked*(self: MainWindowHandler, serverPort: int) {.slot.} = self.chatServer.start(serverPort) serverStartedChanged(self, self.chatServer.started) ... ``` 2) to call procedure 'start'...

@filcuc thanks for hint, I'll try to play with threading. but I'll leave this issue to be open, yet