Merge pull request #85958 from ryneeverett/ycmd-typescript
ycmd: typescript completion support
This commit is contained in:
commit
7a411e7ad6
|
@ -2,6 +2,7 @@
|
||||||
, gocode ? null
|
, gocode ? null
|
||||||
, godef ? null
|
, godef ? null
|
||||||
, gotools ? null
|
, gotools ? null
|
||||||
|
, nodePackages ? null
|
||||||
, rustracerd ? null
|
, rustracerd ? null
|
||||||
, fixDarwinDylibNames, Cocoa ? null
|
, fixDarwinDylibNames, Cocoa ? null
|
||||||
}:
|
}:
|
||||||
|
@ -69,6 +70,9 @@ stdenv.mkDerivation {
|
||||||
TARGET=$out/lib/ycmd/third_party/go/src/golang.org/x/tools/cmd/gopls
|
TARGET=$out/lib/ycmd/third_party/go/src/golang.org/x/tools/cmd/gopls
|
||||||
mkdir -p $TARGET
|
mkdir -p $TARGET
|
||||||
ln -sf ${gotools}/bin/gopls $TARGET
|
ln -sf ${gotools}/bin/gopls $TARGET
|
||||||
|
'' + lib.optionalString (nodePackages != null) ''
|
||||||
|
TARGET=$out/lib/ycmd/third_party/tsserver
|
||||||
|
ln -sf ${nodePackages.typescript} $TARGET
|
||||||
'' + lib.optionalString (rustracerd != null) ''
|
'' + lib.optionalString (rustracerd != null) ''
|
||||||
TARGET=$out/lib/ycmd/third_party/racerd/target/release
|
TARGET=$out/lib/ycmd/third_party/racerd/target/release
|
||||||
mkdir -p $TARGET
|
mkdir -p $TARGET
|
||||||
|
|
Loading…
Reference in New Issue