This repository was archived by the owner on Dec 15, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed
Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 1.48.0 (Unreleased)
4+
5+ - Use REditorSupport.r as ID for R extension
6+
37## 1.47.0 (Release on 13 October 2022)
48
59- Quarto: Create Project command for creating common project types
Original file line number Diff line number Diff line change @@ -195,7 +195,7 @@ const pythonCellExecutor: CellExecutor = {
195195
196196const rCellExecutor : CellExecutor = {
197197 language : "r" ,
198- requiredExtension : [ "reditorsupport .r" , "Ikuyadeu.r" ] ,
198+ requiredExtension : [ "REditorSupport .r" , "Ikuyadeu.r" ] ,
199199 requiredExtensionName : "R" ,
200200 requiredVersion : "2.4.0" ,
201201 isYamlOption : isYamlHashOption ,
Original file line number Diff line number Diff line change @@ -97,7 +97,9 @@ export class PreviewEnvManager {
9797 }
9898
9999 // QUARTO_R
100- const rExtension = extensions . getExtension ( "Ikuyadeu.r" ) ;
100+ const rExtension =
101+ extensions . getExtension ( "REditorSupport.r" ) ||
102+ extensions . getExtension ( "Ikuyadeu.r" ) ;
101103 if ( rExtension ) {
102104 const rPath = workspace . getConfiguration ( "r.rpath" , workspaceFolder ?. uri ) ;
103105 let quartoR : string | undefined ;
You can’t perform that action at this time.
0 commit comments