as a consequence, rls fails to rename type parameters in where clauses: ```rust pub trait SomeTrait {} pub struct Opa<TP> where TP: SomeTrait, { tp: TP, } ``` After renaming `TP` type parameter to `TPTP` I've got: ```rust 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.
as a consequence, rls fails to rename type parameters in where clauses:
After renaming
TPtype parameter toTPTPI've got:$ rls --version
rls-preview 0.130.2-nightly (6d72813 2018-08-04)