Git Product home page Git Product logo

Comments (4)

prabirshrestha avatar prabirshrestha commented on June 5, 2024

Seems like this is quite different than other lang servers.

I would suggest to file a bug on their github issue and request them to add bin in package.json so it can be executed as a normal binary. https://github.com/emberwatch/vscode-ember/blob/ba2d653556a54c8383c669f4062353dfc8d7e96f/src/extension.ts#L15. While it possible to do without this it seems better to have bin and would simplify the code in vim.

from vim-lsp.

lcmen avatar lcmen commented on June 5, 2024

@prabirshrestha thanks for your reply!

I will file an issue on their GitHub but before that, I would like to understand it :).

I came up with the following (temporary) solution so far:

  1. I've installed ember-language-server globally (npm install -g ...)
  2. I've wrapped it inside simple bash script which I've added to the path with chmod +x permission:
#!/usr/bin/env bash

npm_path=$(npm config get prefix)
node ${npm_path}/lib/node_modules/@emberwatch/ember-language-server/lib/start-server.js

Unfortunately, the last line does not do anything (no error, no output, etc.). Even if I run it directly (node start-server.js) inside the ember-language-server/lib directory nothing happens.

Am I doing something wrong? How should I start the server?

Thank you in advance for your time and help.

from vim-lsp.

prabirshrestha avatar prabirshrestha commented on June 5, 2024

You are most likely missing --stdio flag.

node ${npm_path}/lib/node_modules/@emberwatch/ember-language-server/lib/start-server.js --stdio

Also another feature request would be to add support for --help.

$ typescript-language-server --help

  Usage: typescript-language-server [options]


  Options:

    -V, --version                         output the version number
    --stdio                               use stdio
    --node-ipc                            use node-ipc
    --socket <port>                       use socket. example: --socket=5000
    --tsserver-logFile <tsServerLogFile>  Specify a tsserver log file. example: --tsServerLogFile=ts-logs.txt
    --tsserver-path <path>                Specifiy path to tsserver. example: --tsserver-path=tsserver.cmd
    -h, --help                            output usage information

from vim-lsp.

lcmen avatar lcmen commented on June 5, 2024

@prabirshrestha adding --stdio flag didn't help. I guess it must be something wrong with the library.

Thank you for your help.

from vim-lsp.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.