September 07, 2016 Re: workspace-d 2.7.2 & code-d 0.10.14 | ||||
---|---|---|---|---|
| ||||
Posted in reply to Suliman | On Wednesday, 7 September 2016 at 18:14:29 UTC, Suliman wrote: > You could look my PC with TeamViewer Ok problem fixed. The config was invalid, it needs to look like this: { "d.stdlibPath": [ "C:\\D\\dmd2\\src\\phobos", "C:\\D\\dmd2\\src\\druntime\\import" ] } Just forgot these braces {} to make it valid json |
September 08, 2016 Re: workspace-d 2.7.2 & code-d 0.10.14 | ||||
---|---|---|---|---|
| ||||
Posted in reply to WebFreak001 | On Wednesday, 7 September 2016 at 18:27:41 UTC, WebFreak001 wrote:
> On Wednesday, 7 September 2016 at 18:14:29 UTC, Suliman wrote:
>> You could look my PC with TeamViewer
>
> Ok problem fixed. The config was invalid, it needs to look like this:
>
> {
> "d.stdlibPath": [
> "C:\\D\\dmd2\\src\\phobos",
> "C:\\D\\dmd2\\src\\druntime\\import"
> ]
> }
>
> Just forgot these braces {} to make it valid json
It's possible to integrate workspace-d with Sublime?
|
September 08, 2016 Re: workspace-d 2.7.2 & code-d 0.10.14 | ||||
---|---|---|---|---|
| ||||
Posted in reply to Suliman Attachments:
| On Thu, Sep 8, 2016 at 8:50 AM, Suliman via Digitalmars-d-announce < digitalmars-d-announce@puremagic.com> wrote: > On Wednesday, 7 September 2016 at 18:27:41 UTC, WebFreak001 wrote: > >> On Wednesday, 7 September 2016 at 18:14:29 UTC, Suliman wrote: >> >>> You could look my PC with TeamViewer >>> >> >> Ok problem fixed. The config was invalid, it needs to look like this: >> >> { >> "d.stdlibPath": [ >> "C:\\D\\dmd2\\src\\phobos", >> "C:\\D\\dmd2\\src\\druntime\\import" >> ] >> } >> >> Just forgot these braces {} to make it valid json >> > > It's possible to integrate workspace-d with Sublime? > +1 |
September 08, 2016 Re: workspace-d 2.7.2 & code-d 0.10.14 | ||||
---|---|---|---|---|
| ||||
Posted in reply to Suliman | On Thursday, 8 September 2016 at 06:50:58 UTC, Suliman wrote: > It's possible to integrate workspace-d with Sublime? Yes, as long as you can start a process and read its output & write to its input in binary, you can do it. Message format is available here: https://github.com/Pure-D/workspace-d Documentation of all modules is available here: https://workspaced.webfreak.org/ |
September 09, 2016 Re: workspace-d 2.7.2 & code-d 0.10.14 | ||||
---|---|---|---|---|
| ||||
Posted in reply to WebFreak001 | On Tuesday, 6 September 2016 at 21:05:43 UTC, WebFreak001 wrote:
> I just pushed a new release of workspace-d (bridge between DCD, DScanner, dfmt and dub with some utility stuff) and code-d (my vscode D extension using workspace-d).
>
> [...]
With OSX. I can't seem to get the debug and autocompletion (import std.a..). I just have a bit of text highlighting working. I've installed the programs and have them in the PATH.
|
September 09, 2016 Re: workspace-d 2.7.2 & code-d 0.10.14 | ||||
---|---|---|---|---|
| ||||
Posted in reply to Joel | On Friday, 9 September 2016 at 09:39:23 UTC, Joel wrote:
> On Tuesday, 6 September 2016 at 21:05:43 UTC, WebFreak001 wrote:
>> I just pushed a new release of workspace-d (bridge between DCD, DScanner, dfmt and dub with some utility stuff) and code-d (my vscode D extension using workspace-d).
>>
>> [...]
>
> With OSX. I can't seem to get the debug and autocompletion (import std.a..). I just have a bit of text highlighting working. I've installed the programs and have them in the PATH.
Forgot to mention. I installed the `D Programming Language (code-d)`, as well as the `Native Debug` (gdb).
With the debuging, I just get `Debug adapter process has terminated unexpectedly` (clicking the green arrow).
|
September 09, 2016 Re: workspace-d 2.7.2 & code-d 0.10.14 | ||||
---|---|---|---|---|
| ||||
Posted in reply to Joel | On Friday, 9 September 2016 at 09:39:23 UTC, Joel wrote: > On Tuesday, 6 September 2016 at 21:05:43 UTC, WebFreak001 wrote: >> I just pushed a new release of workspace-d (bridge between DCD, DScanner, dfmt and dub with some utility stuff) and code-d (my vscode D extension using workspace-d). >> >> [...] > > With OSX. I can't seem to get the debug and autocompletion (import std.a..). I just have a bit of text highlighting working. I've installed the programs and have them in the PATH. OSX is known to not work because it hangs up somewhere in workspace-d. See this issue for more infos: https://github.com/Pure-D/code-d/issues/29 However debug (using native debug -> ext install webfreak.debug) should work because it just uses gdb or lldb-mi |
September 10, 2016 Re: workspace-d 2.7.2 & code-d 0.10.14 | ||||
---|---|---|---|---|
| ||||
Posted in reply to WebFreak001 | On Friday, 9 September 2016 at 19:45:37 UTC, WebFreak001 wrote:
> On Friday, 9 September 2016 at 09:39:23 UTC, Joel wrote:
>> On Tuesday, 6 September 2016 at 21:05:43 UTC, WebFreak001 wrote:
>>> I just pushed a new release of workspace-d (bridge between DCD, DScanner, dfmt and dub with some utility stuff) and code-d (my vscode D extension using workspace-d).
>>>
>>> [...]
>>
>> With OSX. I can't seem to get the debug and autocompletion (import std.a..). I just have a bit of text highlighting working. I've installed the programs and have them in the PATH.
>
> OSX is known to not work because it hangs up somewhere in workspace-d. See this issue for more infos: https://github.com/Pure-D/code-d/issues/29
>
> However debug (using native debug -> ext install webfreak.debug) should work because it just uses gdb or lldb-mi
Thanks webfreak, I'll try that.
|
September 11, 2016 Re: workspace-d 2.7.2 & code-d 0.10.14 | ||||
---|---|---|---|---|
| ||||
Posted in reply to WebFreak001 | On Friday, 9 September 2016 at 19:45:37 UTC, WebFreak001 wrote:
> On Friday, 9 September 2016 at 09:39:23 UTC, Joel wrote:
>> On Tuesday, 6 September 2016 at 21:05:43 UTC, WebFreak001 wrote:
>>> I just pushed a new release of workspace-d (bridge between DCD, DScanner, dfmt and dub with some utility stuff) and code-d (my vscode D extension using workspace-d).
>>>
>>> [...]
>>
>> With OSX. I can't seem to get the debug and autocompletion (import std.a..). I just have a bit of text highlighting working. I've installed the programs and have them in the PATH.
>
> OSX is known to not work because it hangs up somewhere in workspace-d. See this issue for more infos: https://github.com/Pure-D/code-d/issues/29
>
> However debug (using native debug -> ext install webfreak.debug) should work because it just uses gdb or lldb-mi
I just get this: Debug adapter process has terminated unexpectedly
|
September 11, 2016 Re: workspace-d 2.7.2 & code-d 0.10.14 | ||||
---|---|---|---|---|
| ||||
Posted in reply to Joel | On Sunday, 11 September 2016 at 06:01:45 UTC, Joel wrote:
> I just get this: Debug adapter process has terminated unexpectedly
can you run `gdb --interpreter=mi2` from the console? Or if you use lldb, can you run `lldb-mi` from the console? If not then vscode won't be able to. To be sure that it isn't anything because of the PATH, run vscode from the console where gdb and lldb-mi works and try again. If its crashing unexpectedly its didnt even run gdb or lldb. It might also be the unix domain sockets, but I don't think they should be the issue. Also check the debug console (console icon in debug menu) if there is any output at all
|
Copyright © 1999-2021 by the D Language Foundation