Add auto-pairs to scheme language support (#9232)

Currently, typing a single quote in a `.scm` file "helpfully" auto-
completes a closing quote. This is because there is no auto-pairs
section in the languages.toml. This commit adds that.
pull/9248/head
petrak@ 6 months ago committed by GitHub
parent da4afaf3da
commit 7e389b67c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1914,6 +1914,12 @@ shebangs = ["scheme", "guile", "chicken"]
comment-token = ";"
indent = { tab-width = 2, unit = " " }
[language.auto-pairs]
'(' = ')'
'{' = '}'
'[' = ']'
'"' = '"'
[[grammar]]
name = "scheme"
source = { git = "https://github.com/6cdh/tree-sitter-scheme", rev = "af3af6c9356b936f8a515a1e449c32e804c2b1a8" }

Loading…
Cancel
Save