Prefer utf-8 over utf-32

Utf-8 support has been around for a while as an unstable feature but
utf-32 is fairly new. A bunch of LS (like rust-analyzer) added this in
a pinch, but it's pretty broken right now. The performance overhead is
not very large (still a lot better than utf-16). We can switch back
once the ecosystem has matured.
This commit is contained in:
Pascal Kuthe 2023-03-30 18:27:00 +02:00 committed by Blaž Hrastnik
parent 7a69c40524
commit a48d1a4abc
No known key found for this signature in database
GPG key ID: 1238B9C4AD889640

View file

@ -538,8 +538,8 @@ pub(crate) async fn initialize(&self) -> Result<lsp::InitializeResult> {
}),
general: Some(lsp::GeneralClientCapabilities {
position_encodings: Some(vec![
PositionEncodingKind::UTF32,
PositionEncodingKind::UTF8,
PositionEncodingKind::UTF32,
PositionEncodingKind::UTF16,
]),
..Default::default()