Update kak-lsp support for scala
This commit is contained in:
parent
d4b20dc00e
commit
5c8c02915c
2 changed files with 16 additions and 13 deletions
|
@ -131,14 +131,6 @@ hook global WinSetOption filetype=(typst) %{
|
||||||
hook -once -always window WinSetOption filetype=.* %{ remove-hooks window markdown-.+ }
|
hook -once -always window WinSetOption filetype=.* %{ remove-hooks window markdown-.+ }
|
||||||
}
|
}
|
||||||
|
|
||||||
define-command -params 0 -docstring "Set up build" scala-build-connect %{
|
|
||||||
lsp-execute-command 'build-connect' '"[]"'
|
|
||||||
}
|
|
||||||
|
|
||||||
define-command -params 0 -docstring "Import build" scala-build-import %{
|
|
||||||
lsp-execute-command 'build-import' '"[]"'
|
|
||||||
}
|
|
||||||
|
|
||||||
def -hidden insert-c-n %{
|
def -hidden insert-c-n %{
|
||||||
try %{
|
try %{
|
||||||
lsp-snippets-select-next-placeholders
|
lsp-snippets-select-next-placeholders
|
||||||
|
|
|
@ -135,10 +135,9 @@ let
|
||||||
roots = [ "build.sbt" "build.sc" "build.mill" ];
|
roots = [ "build.sbt" "build.sc" "build.mill" ];
|
||||||
settings_section = "metals";
|
settings_section = "metals";
|
||||||
settings.metals = {
|
settings.metals = {
|
||||||
enableSemanticHighlighting = true;
|
inlayHints.inferredTypes.enable = true;
|
||||||
showInferredType = true;
|
inlayHints.typeParameters.enable = true;
|
||||||
decorationProvider = true;
|
inlayHints.hintsInPatternMatch.enable = true;
|
||||||
inlineDecorationProvider = true;
|
|
||||||
# From kakoune-lsp's own options
|
# From kakoune-lsp's own options
|
||||||
icons = "unicode";
|
icons = "unicode";
|
||||||
isHttpEnabled = true;
|
isHttpEnabled = true;
|
||||||
|
@ -300,7 +299,7 @@ in
|
||||||
|
|
||||||
hook global WinSetOption filetype=(racket|rust|python|go|javascript|typescript|c|cpp|tex|latex|haskell|nix|fsharp|templ) %{
|
hook global WinSetOption filetype=(racket|rust|python|go|javascript|typescript|c|cpp|tex|latex|haskell|nix|fsharp|templ) %{
|
||||||
# Format the document if possible
|
# Format the document if possible
|
||||||
hook window BufWritePre .* %{ lsp-formatting-sync }
|
hook window -group lsp-formatting BufWritePre .* %{ lsp-formatting-sync }
|
||||||
}
|
}
|
||||||
|
|
||||||
hook global WinSetOption filetype=(rust|scala|fsharp) %{
|
hook global WinSetOption filetype=(rust|scala|fsharp) %{
|
||||||
|
@ -316,6 +315,18 @@ in
|
||||||
remove-hooks window semantic-tokens
|
remove-hooks window semantic-tokens
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
define-command -params 0 -docstring "Set up build" scala-build-connect %{
|
||||||
|
lsp-execute-command 'build-connect' '[]'
|
||||||
|
}
|
||||||
|
|
||||||
|
define-command -params 0 -docstring "Change bsp build server" scala-bsp-switch %{
|
||||||
|
lsp-execute-command 'bsp-switch' '[]'
|
||||||
|
}
|
||||||
|
|
||||||
|
define-command -params 0 -docstring "Import build" scala-build-import %{
|
||||||
|
lsp-execute-command 'build-import' '[]'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue