This repository was archived by the owner on Dec 29, 2022. It is now read-only.

Description
as a consequence, rls fails to rename type parameters in where clauses:
pub trait SomeTrait {}
pub struct Opa<TP>
where
TP: SomeTrait,
{
tp: TP,
}
After renaming TP type parameter to TPTP I've got:
pub struct Opa<TPTP>
where
TP: SomeTrait,
{
tp: TPTP,
}
```.
`TP` in where clause is also not highlighted when cursor is on `TP` in `struct Opa<TP>`.
$ rls --version
rls-preview 0.130.2-nightly (6d72813 2018-08-04)
I'm using `rls` in emacs.