Re: DLS (D Language Server) v0.20

2019-03-08 Thread walker via Digitalmars-d-announce

This is awesome!
It works really well.
Thank you very much!



Re: DLS (D Language Server) v0.20

2019-03-07 Thread ADEV via Digitalmars-d-announce

This is the best plugin for VSCode !!!

Amazing work thanks !

And it is light on ram usage, i have a big project, with many 
subpackages, and it only uses 100~mb, unlike code-d wich uses one 
server per project, wich result in 1gb + of usage


So thanks a lot !!!


Re: DLS (D Language Server) v0.20

2018-12-31 Thread IM via Digitalmars-d-announce
On Friday, 28 December 2018 at 20:35:44 UTC, Paolo Invernizzi 
wrote:
On Friday, 28 December 2018 at 18:50:39 UTC, David Gileadi 
wrote:

On 12/28/18 4:14 AM, Laurent Tréguier wrote:

Hello, and merry Christmas! (a bit late, but whatever)


This is an excellent update--the update Just Works™ with 
VSCode on my mac, and functions very nicely too. Thanks!


I might suggest that you perhaps rename the VSCode extension 
to remove "VSCode" from the name (as it's redundant) and add 
"D Language" (because the current name makes it a bit hard to 
discover).


+1, It's a great piece of software, so thank you.



+100, Thank you very much!

I'm using it  on Mac also, when I'm not using vim: works like a 
charm!


--- Paolo





Re: DLS (D Language Server) v0.20

2018-12-31 Thread Soulsbane via Digitalmars-d-announce
On Monday, 31 December 2018 at 10:19:58 UTC, Laurent Tréguier 
wrote:

On Monday, 31 December 2018 at 04:06:30 UTC, Soulsbane wrote:
Can dfmt be disabled completely? I think I tried this before 
way back and it couldn't. I don't really want auto formatting 
of my code.


It can be disabled in the initialization options. You can set 
`d.init.capabilities.documentFormatting` to `false` in the 
configuration settings for VSCode and Atom; for other editors 
it depends on the language client extension that's used.


Cool! Thanks a lot!


Re: DLS (D Language Server) v0.20

2018-12-31 Thread Laurent Tréguier via Digitalmars-d-announce

On Monday, 31 December 2018 at 04:06:30 UTC, Soulsbane wrote:
Can dfmt be disabled completely? I think I tried this before 
way back and it couldn't. I don't really want auto formatting 
of my code.


It can be disabled in the initialization options. You can set 
`d.init.capabilities.documentFormatting` to `false` in the 
configuration settings for VSCode and Atom; for other editors it 
depends on the language client extension that's used.


Re: DLS (D Language Server) v0.20

2018-12-30 Thread Soulsbane via Digitalmars-d-announce
On Friday, 28 December 2018 at 11:14:01 UTC, Laurent Tréguier 
wrote:

Hello, and merry Christmas! (a bit late, but whatever)

At the end of March of this year, I had made a post [1] about 
this project, aimed at helping with D development on various 
editors (VSCode, Atom, Sublime text, vim...) [2].
In a nutshell, it's a bit like serve-d [3], albeit with fewer 
features, and focused more on being 'plug and play': a single 
binary with no dependencies, can be installed without being 
compiled on most OS's, automatically updates itself and tries 
to adapt to different dmd/ldc installations.


[...]


Can dfmt be disabled completely? I think I tried this before way 
back and it couldn't. I don't really want auto formatting of my 
code.


Re: DLS (D Language Server) v0.20

2018-12-30 Thread Markus via Digitalmars-d-announce
On Friday, 28 December 2018 at 11:14:01 UTC, Laurent Tréguier 
wrote:

[...]


Wow, just awesome! I really love this language server. It just 
works!


Re: DLS (D Language Server) v0.20

2018-12-29 Thread Laurent Tréguier via Digitalmars-d-announce

On Friday, 28 December 2018 at 20:44:30 UTC, Per Nordlöw wrote:
I'm using DCD through my beloved Emacs. Is there a more 
powerful Emacs+DLS-solution ready for use?


I looked into lsp-mode a bit more, and actually, after installing 
it, its dependencies and d-mode, a few lines of configuration in 
Emacs' init file are enough apparently:


(require 'lsp)
(add-hook 'd-mode-hook #'lsp)
(lsp-register-client
  (make-lsp-client
:new-connection (lsp-stdio-connection 
'("~/.dub/packages/.bin/dls-latest/dls"))

:major-modes '(d-mode)
:server-id 'dls))

After adding this, and installing DLS (`dub fetch dls; dub run 
dls:bootstrap`), it should be working.


Re: DLS (D Language Server) v0.20

2018-12-29 Thread Per Nordlöw via Digitalmars-d-announce
On Friday, 28 December 2018 at 22:52:40 UTC, Laurent Tréguier 
wrote:
I haven't looked into Emacs yet, maybe I'll do that in the 
coming days.



[1] https://github.com/emacs-lsp/lsp-mode
[2] https://github.com/joaotavora/eglot


Thanks!


Re: DLS (D Language Server) v0.20

2018-12-28 Thread Laurent Tréguier via Digitalmars-d-announce

On Friday, 28 December 2018 at 20:44:30 UTC, Per Nordlöw wrote:

Nice! Great work!


Thanks!


How does DLS compare to the features of DCD?


DLS actually uses DCD as a library. There is some custom handling 
to be able to find multiple declarations for methods with 
multiple overloads and such (DCD will only send one), and some 
code to try to find all references to a symbol in a project 
(which is also used for symbol renaming).


However, it doesn't use the latest DCD 0.10 version yet, so 
standalone DCD is probably still the best regarding 
autocompletion.


I'm using DCD through my beloved Emacs. Is there a more 
powerful Emacs+DLS-solution ready for use?


I don't know.
There seems to be 2 language client extensions for Emacs : 
lsp-mode [1] and eglot [2]. I'm not sure how Emacs' packages are 
configured since I've never used Emacs; but it looks like 
lsp-mode would require a small custom package to glue everything 
together, while eglot, according to its README, can be configured 
to add more servers manually, with a line like:
`(add-to-list 'eglot-server-programs '(foo-mode . 
("foo-language-server" "--args")))`
I haven't looked into Emacs yet, maybe I'll do that in the coming 
days.



[1] https://github.com/emacs-lsp/lsp-mode
[2] https://github.com/joaotavora/eglot


Re: DLS (D Language Server) v0.20

2018-12-28 Thread Per Nordlöw via Digitalmars-d-announce
On Friday, 28 December 2018 at 11:14:01 UTC, Laurent Tréguier 
wrote:

Hello, and merry Christmas! (a bit late, but whatever)
https://forum.dlang.org/post/jytsaamhiglkmeixx...@forum.dlang.org
[2] https://github.com/d-language-server/dls
[3] https://github.com/Pure-D/serve-d


Nice! Great work!

How does DLS compare to the features of DCD?

I'm using DCD through my beloved Emacs. Is there a more powerful 
Emacs+DLS-solution ready for use?


Re: DLS (D Language Server) v0.20

2018-12-28 Thread Paolo Invernizzi via Digitalmars-d-announce

On Friday, 28 December 2018 at 18:50:39 UTC, David Gileadi wrote:

On 12/28/18 4:14 AM, Laurent Tréguier wrote:

Hello, and merry Christmas! (a bit late, but whatever)


This is an excellent update--the update Just Works™ with VSCode 
on my mac, and functions very nicely too. Thanks!


I might suggest that you perhaps rename the VSCode extension to 
remove "VSCode" from the name (as it's redundant) and add "D 
Language" (because the current name makes it a bit hard to 
discover).


+1, It's a great piece of software, so thank you.

I'm using it  on Mac also, when I'm not using vim: works like a 
charm!


--- Paolo


Re: DLS (D Language Server) v0.20

2018-12-28 Thread Laurent Tréguier via Digitalmars-d-announce

On Friday, 28 December 2018 at 18:50:39 UTC, David Gileadi wrote:
This is an excellent update--the update Just Works™ with VSCode 
on my mac, and functions very nicely too. Thanks!


You're welcome; it's a relief to hear that, as I don't have a mac 
to actually test it on macOS!


I might suggest that you perhaps rename the VSCode extension to 
remove "VSCode" from the name (as it's redundant) and add "D 
Language" (because the current name makes it a bit hard to 
discover).


Yes, I'll probably do that in its next release.


Re: DLS (D Language Server) v0.20

2018-12-28 Thread David Gileadi via Digitalmars-d-announce

On 12/28/18 4:14 AM, Laurent Tréguier wrote:

Hello, and merry Christmas! (a bit late, but whatever)


This is an excellent update--the update Just Works™ with VSCode on my 
mac, and functions very nicely too. Thanks!


I might suggest that you perhaps rename the VSCode extension to remove 
"VSCode" from the name (as it's redundant) and add "D Language" (because 
the current name makes it a bit hard to discover).