Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add php-ts-mode #843

Merged
merged 1 commit into from
Jan 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions acm/acm-backend-codeium.el
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@
(perl-mode . 28)
(cperl-mode . 28)
(php-mode . 29)
(php-ts-mode . 29)
(text-mode . 30)
(python-mode . 33)
(python-ts-mode . 33)
Expand Down
4 changes: 3 additions & 1 deletion lsp-bridge.el
Original file line number Diff line number Diff line change
Expand Up @@ -518,7 +518,7 @@ Possible choices are pyright_ruff, pyright-background-analysis_ruff, jedi_ruff,
((sh-mode bash-mode bash-ts-mode) . "bash-language-server")
((css-mode css-ts-mode) . "vscode-css-language-server")
(elm-mode . "elm-language-server")
(php-mode . lsp-bridge-php-lsp-server)
((php-mode php-ts-mode) . lsp-bridge-php-lsp-server)
((yaml-mode yaml-ts-mode) . "yaml-language-server")
(zig-mode . "zls")
(dockerfile-mode . "docker-langserver")
Expand Down Expand Up @@ -591,6 +591,7 @@ Possible choices are pyright_ruff, pyright-background-analysis_ruff, jedi_ruff,
lisp-interaction-mode-hook
org-mode-hook
php-mode-hook
php-ts-mode-hook
yaml-mode-hook
zig-mode-hook
groovy-mode-hook
Expand Down Expand Up @@ -665,6 +666,7 @@ you can customize `lsp-bridge-get-workspace-folder' to return workspace folder p
(lua-mode . lua-indent-level) ; Lua
(objc-mode . c-basic-offset) ; Objective C
(php-mode . c-basic-offset) ; PHP
(php-ts-mode . php-ts-mode-indent-offset) ; PHP
(perl-mode . perl-indent-level) ; Perl
(cperl-mode . cperl-indent-level) ; Perl
(raku-mode . raku-indent-offset) ; Perl6/Raku
Expand Down
Loading