testData/rename/renameLocalVariableUsageInRmd.rmd (16 lines of code) (raw):

```{r} ttt <- 10 my_function <- function(xxx, yyy, zzz) { ttt <- 10 print(ttt<caret>) } ``` ```{python} ttt = 10 def ttt1(a): return a + ttt ``` ```{r} ttt <- 15 ttt + ttt ```