Przeglądaj źródła

Merge pull request #83 from LinKCoding/master

Added ".rmd" file extension to R's list of supported languages
Alexandru Dima 5 lat temu
rodzic
commit
209730c94f
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      src/r/r.contribution.ts

+ 1 - 1
src/r/r.contribution.ts

@@ -8,7 +8,7 @@ import { registerLanguage } from '../_.contribution';
 
 registerLanguage({
 	id: 'r',
-	extensions: ['.r', '.rhistory', '.rprofile', '.rt'],
+	extensions: ['.r', '.rhistory', '.rmd', '.rprofile', '.rt'],
 	aliases: ['R', 'r'],
 	loader: () => import('./r')
 });