diff --git a/Cargo.lock b/Cargo.lock index 76b19380bc29..0009ec58158e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3260,7 +3260,6 @@ dependencies = [ "tracing", "tracing-test", "tree-sitter-go", - "tree-sitter-php", "tree-sitter-python", "tree-sitter-ruby", "tree-sitter-rust", @@ -3991,15 +3990,6 @@ dependencies = [ "tree-sitter", ] -[[package]] -name = "tree-sitter-php" -version = "0.19.1" -source = "git+https://github.com/tree-sitter/tree-sitter-php.git?rev=0e02e7f#0e02e7fab7913a0e77343edb347c8f17cac1f0ba" -dependencies = [ - "cc", - "tree-sitter", -] - [[package]] name = "tree-sitter-python" version = "0.20.2" diff --git a/crates/tabby-common/assets/languages.toml b/crates/tabby-common/assets/languages.toml index 7943b4ee1a20..542fe844bdff 100644 --- a/crates/tabby-common/assets/languages.toml +++ b/crates/tabby-common/assets/languages.toml @@ -67,31 +67,3 @@ top_level_keywords = [ "rescue", "self", ] - -[[config]] -languages = ["php"] -line_comment = "//" -top_level_keywords = [ - "abstract", - "class", - "const", - "declare", - "extends", - "final", - "finally", - "function", - "global", - "implements", - "include_once", - "include", - "interface", - "namespace", - "private", - "protected", - "public", - "require_once", - "require", - "static", - "trait", - "use", -] diff --git a/crates/tabby-scheduler/Cargo.toml b/crates/tabby-scheduler/Cargo.toml index 62d1c51310f7..92b058856a31 100644 --- a/crates/tabby-scheduler/Cargo.toml +++ b/crates/tabby-scheduler/Cargo.toml @@ -22,7 +22,6 @@ tree-sitter-rust = "0.20.3" tree-sitter-typescript = "0.20.3" tree-sitter-go = "0.20.0" tree-sitter-ruby= "0.20.0" -tree-sitter-php = { git = "https://github.com/tree-sitter/tree-sitter-php.git", rev = "0e02e7f" } ignore = "0.4.20" [dev-dependencies] diff --git a/crates/tabby-scheduler/src/dataset.rs b/crates/tabby-scheduler/src/dataset.rs index 3e17d74fa5bf..a4852d35f758 100644 --- a/crates/tabby-scheduler/src/dataset.rs +++ b/crates/tabby-scheduler/src/dataset.rs @@ -271,17 +271,6 @@ lazy_static! { .unwrap(), ), ), - ( - "php", - TagsConfigurationSync( - TagsConfiguration::new( - tree_sitter_php::language(), - tree_sitter_php::TAGS_QUERY, - "", - ) - .unwrap(), - ), - ), ]) }; } diff --git a/website/docs/programming-languages.md b/website/docs/programming-languages.md index ec01e058fdfe..9c0ff1ffcb75 100644 --- a/website/docs/programming-languages.md +++ b/website/docs/programming-languages.md @@ -27,7 +27,6 @@ For an actual example of an issue or pull request adding the above support, plea * [TypeScript](https://www.typescriptlang.org/) * [Golang](https://go.dev/): Since v0.4.0 * [Ruby](https://www.ruby-lang.org/): Since v0.4.0 -* [PHP](https://www.php.net/): Since v0.5.0 ## Languages Missing Certain Support @@ -40,5 +39,6 @@ For an actual example of an issue or pull request adding the above support, plea | Java | 🚫 | 🚫 | | Julia | 🚫 | 🚫 | | Lua | 🚫 | 🚫 | +| PHP | 🚫 | 🚫 | | Perl | 🚫 | 🚫 | | Scala | 🚫 | 🚫 |