Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

RStudio snippet not working

I'm utilizing a Macbook pro running "El Capitan" and RStudio is version 0.99.902. I'm writing a Rmd document. I want to utilize the snippets that RStudio has built in and create my own also. By clicking Preference => Code; I can see that "Enable code snippets" is checked. However, while trying to utilize any snippet the completion is not performed. If I typed just r I should get this block of code, but nothing hapen

snippet r
    ```{r ${1:label}, ${2:options}}
    ${0}
    ```

I also create a simple snippet:

snippet dthen
    %>%

None of the markdown snippet seems to work. Do I'm doing something wrong or any setting has to be done?

like image 289
redeemefy Avatar asked Jun 10 '16 12:06

redeemefy


2 Answers

You can invoke code snippets in Markdown in RStudio using Shift+Tab after typing the snippet, but it will not currently prompt you to expand the snippet, either with Tab or by just waiting. I thought this was a bug, but the discussion in this GitHub issue says it's intended, just still-to-be-documented.

like image 200
Nathan Avatar answered Oct 04 '22 21:10

Nathan


In Tools > Global Options > Code > Editing > Edit Snippets, go to the section "Markdown" and paste your snippet there. Save, OK, apply. Type r in your Rmd document (not within in a R code chunk) and click Shift+Tab. If it still does not work, try to create a new "R markdown" file (File > New file > R markdown) and check if it works there.

like image 33
Johan Zicola Avatar answered Oct 04 '22 21:10

Johan Zicola