Re: Install DCD language server on Raspberrry PI4 (aarch64) requires rdmd , command not found.

2022-05-21 Thread 0xEAB via Digitalmars-d-learn
On Saturday, 21 May 2022 at 23:38:18 UTC, rikki cattermole wrote: […] I grabbed a copy of ldc2-1.24.0-linux-aarch64, it has rdmd. Something is messed up with that package if it does not include it (assuming it hasn't be split out into a tools package). iirc Debian & derivates do not package r

Re: Install DCD language server on Raspberrry PI4 (aarch64) requires rdmd , command not found.

2022-05-21 Thread rikki cattermole via Digitalmars-d-learn
On 22/05/2022 10:44 AM, Alain De Vos wrote: I want to install the DCD language server on Raspberry PI4. But the dub build for DCD requires rdmd which is not available. Can I compile rdmd from source ? Or install a binary ? [PS: I have ldc 1:1.24.0-2 installed ] I grabbed a copy of ldc2

Re: Install DCD language server on Raspberrry PI4 (aarch64) requires rdmd , command not found.

2022-05-21 Thread Alain De Vos via Digitalmars-d-learn
Maybe i need to install additional phobos libraries ?

Re: Install DCD language server on Raspberrry PI4 (aarch64) requires rdmd , command not found.

2022-05-21 Thread Alain De Vos via Digitalmars-d-learn
Thanks. rdmd.d compiled fine with ldc2. But DCD did not build dub build --build=release --config=client produced the error: msgpack-d-1.0.1 value.d error undefined identifier JSONType

Re: Install DCD language server on Raspberrry PI4 (aarch64) requires rdmd , command not found.

2022-05-21 Thread Adam D Ruppe via Digitalmars-d-learn
On Saturday, 21 May 2022 at 22:44:55 UTC, Alain De Vos wrote: Can I compile rdmd from source ? Yes, rdmd is a trivial program. https://github.com/dlang/tools/blob/master/rdmd.d

Install DCD language server on Raspberrry PI4 (aarch64) requires rdmd , command not found.

2022-05-21 Thread Alain De Vos via Digitalmars-d-learn
I want to install the DCD language server on Raspberry PI4. But the dub build for DCD requires rdmd which is not available. Can I compile rdmd from source ? Or install a binary ? [PS: I have ldc 1:1.24.0-2 installed ]

Re: Language server

2022-05-17 Thread Tejas via Digitalmars-d-learn
On Wednesday, 18 May 2022 at 01:04:16 UTC, Alain De Vos wrote: I tried neovim editor & serve-d and failed. I tried kate editor & serve-d and failed. https://github.com/Pure-D/serve-d Anyone has a clue ? I'm using [lunarvim](https://github.com/LunarVim/LunarVim). It provides you the ability t

Re: Language server

2022-05-17 Thread Alain De Vos via Digitalmars-d-learn
I tried neovim editor & serve-d and failed. I tried kate editor & serve-d and failed. https://github.com/Pure-D/serve-d Anyone has a clue ?

Re: Language server

2022-05-13 Thread Alain De Vos via Digitalmars-d-learn
I have now a language server running for dlang and ocaml on the neovim editor. I'll post here the config init.vim for someone who might be interested. ``` call plug#begin() Plug 'https://github.com/vim-airline/vim-airline.git' Plug 'https://github.com/preservim/nerdt

Re: Language server

2022-04-27 Thread Alain De Vos via Digitalmars-d-learn
I have not tested yet but i found two interesting links, https://github.com/Pure-D/serve-d/blob/master/editor-vim.md https://github.com/neoclide/coc.nvim

Re: Language server

2022-04-27 Thread Bastiaan Veelo via Digitalmars-d-learn
On Tuesday, 26 April 2022 at 18:15:57 UTC, Alain De Vos wrote: In a perfect world there would be someone uploading a youtube video how to implement neovim with a dlang language-server. With function-completions-help where hints are given about the functions and libraries. If anyone could do

Language server

2022-04-26 Thread Alain De Vos via Digitalmars-d-learn
In a perfect world there would be someone uploading a youtube video how to implement neovim with a dlang language-server. With function-completions-help where hints are given about the functions and libraries. If anyone could do this , this would be nice to have.