Skip to content

Commit bd76afb

Browse files
committed
setup code completion
1 parent 4b3e47e commit bd76afb

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.devcontainer/Dockerfile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
FROM haxe:4.3.6-gllr AS build-stage
22

3-
RUN mkdir $HAXE_COMPILER_DIR/plugins/ecso/
3+
RUN mkdir $HAXE_COMPILER_DIR/plugins/ecso/
4+
5+
RUN set -ex ;\
6+
cd $HAXE_COMPILER_DIR ;\
7+
opam install ocaml-lsp-server ocamlformat

.vscode/tasks.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"kind": "build",
1111
"isDefault": true
1212
},
13-
"command": "opam config exec -- make -s -j`nproc` STATICLINK=1 ADD_REVISION=1 PLUGIN=ecso plugin",
13+
"command": "opam config exec -- make -s -j`nproc` STATICLINK=1 ADD_REVISION=1 && opam config exec -- make -s -j`nproc` STATICLINK=1 ADD_REVISION=1 PLUGIN=ecso plugin",
1414
"options": {
1515
"cwd": "${workspaceFolder}/../.."
1616
}

0 commit comments

Comments
 (0)