mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +03:00
Feature: PHP allow single quote autocompletion (#6796)
Release Notes: - Added support for single quote autocompletion in PHP ([#6794](https://github.com/zed-industries/zed/issues/6794)). - Added `#` to supported line comments for PHP ([#6794](https://github.com/zed-industries/zed/issues/6794)).
This commit is contained in:
parent
3c3cdecdff
commit
b5c64a128e
@ -1,13 +1,14 @@
|
||||
name = "PHP"
|
||||
path_suffixes = ["php"]
|
||||
first_line_pattern = '^#!.*php'
|
||||
line_comments = ["// "]
|
||||
line_comments = ["// ", "# "]
|
||||
autoclose_before = ";:.,=}])>"
|
||||
brackets = [
|
||||
{ start = "{", end = "}", close = true, newline = true },
|
||||
{ start = "[", end = "]", close = true, newline = true },
|
||||
{ start = "(", end = ")", close = true, newline = true },
|
||||
{ start = "\"", end = "\"", close = true, newline = false, not_in = ["string"] },
|
||||
{ start = "'", end = "'", close = true, newline = false, not_in = ["string"] },
|
||||
]
|
||||
collapsed_placeholder = "/* ... */"
|
||||
word_characters = ["$"]
|
||||
|
Loading…
Reference in New Issue
Block a user