Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
Open sidebar
cppit
jucipp
Commits
67289736
Commit
67289736
authored
Sep 21, 2020
by
Jørgen Lien Sellæg
Browse files
update docs to use sh instead of bash and add chmod for glsl
parent
a89a965a
Pipeline
#192237611
passed with stages
in 17 minutes and 2 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
5 deletions
+4
-5
docs/language_servers.md
docs/language_servers.md
+4
-5
No files found.
docs/language_servers.md
View file @
67289736
...
...
@@ -11,8 +11,7 @@ Install language server, and create executable to enable server in juCi++:
npm
install
-g
flow-bin
# usually as root:
echo
'#!/bin/bash
flow lsp'
>
/usr/local/bin/javascript-language-server
echo
-e
'#!`which sh`\nflow lsp'
>
/usr/local/bin/javascript-language-server
chmod
755 /usr/local/bin/javascript-language-server
```
...
...
@@ -31,8 +30,7 @@ Install language server, and create executable to enable server in juCi++:
npm
install
-g
typescript-language-server typescript
# usually as root:
echo
'#!/bin/bash
`npm root -g`/typescript-language-server/lib/cli.js --stdio'
>
/usr/local/bin/javascript-language-server
echo
-e
'#!`which sh`\n`npm root -g`/typescript-language-server/lib/cli.js --stdio'
>
/usr/local/bin/javascript-language-server
chmod
755 /usr/local/bin/javascript-language-server
rm
-f
/usr/local/bin/typescript-language-server
...
...
@@ -90,5 +88,6 @@ cmake ..
make
# usually as root:
make
install
echo
"/usr/local/bin/glslls --stdin"
>
/usr/local/bin/glsl-language-server
echo
-e
"#!
`
which sh
`
\n
/usr/local/bin/glslls --stdin"
>
/usr/local/bin/glsl-language-server
chmod
755 /usr/local/bin/glsl-language-server
```
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment