Bash Language Server

Tips and information on how to install and use language servers with the editor.
Post Reply
User avatar
Rickard Johansson
Site Admin
Posts: 6575
Joined: 19 Jul 2006 14:29

Bash Language Server

Post by Rickard Johansson »

Bash Language Server
Support bash files and provide simple diagnostics, completion...

Install
* Install Nodejs for Windows https://nodejs.org/en/download/
* Install server

Code: Select all

>npm install --global bash-language-server
Add the server in project/site settings

Server name
Bash Language Server

Command
bash-language-server.cmd

Command line arguments
--stdio

Initial folder
%AppData%\npm

File extension and language id
.sh=shellscript

Communication channel
* Command line (stdio)

Source folders
<Main site folder>

Initialize options

You can also use socket communication. Just replace the argument --stdio with --socket={number} e.g. --socket=5000.
Post Reply