Skip to content

Commit fe235bd

Browse files
committed
Fix rebase bug, lint error
Enum change was pushed to package.json for some reason
1 parent 273617d commit fe235bd

File tree

2 files changed

+3
-15
lines changed

2 files changed

+3
-15
lines changed

package.json

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1327,19 +1327,7 @@
13271327
"r.libPaths": {
13281328
"type": "array",
13291329
"items": {
1330-
"type": "string",
1331-
"enum": [
1332-
"r.selectCurrentChunk",
1333-
"r.runCurrentChunk",
1334-
"r.runAboveChunks",
1335-
"r.runCurrentAndBelowChunks",
1336-
"r.runBelowChunks",
1337-
"r.runAllChunks",
1338-
"r.runPreviousChunk",
1339-
"r.runNextChunk",
1340-
"r.goToPreviousChunk",
1341-
"r.goToNextChunk"
1342-
]
1330+
"type": "string"
13431331
},
13441332
"default": [],
13451333
"markdownDescription": "Additional library paths to launch R background processes (R languageserver, help server, etc.). These paths will be appended to `.libPaths()` on process startup. It could be useful for projects with [renv](https://rstudio.github.io/renv/index.html) enabled."

src/executables/ui/status.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ enum BinText {
88
missing = '$(warning) Select executable'
99
}
1010

11-
export class ExecutableStatusItem implements vscode.Disposable {
11+
export class ExecutableStatusItem implements vscode.Disposable {
1212
private readonly service: RExecutableService;
1313
private languageStatusItem: vscode.LanguageStatusItem;
1414

@@ -26,7 +26,7 @@ export class ExecutableStatusItem implements vscode.Disposable {
2626
public constructor(service: RExecutableService) {
2727
this.service = service;
2828
this.createItem();
29-
}
29+
}
3030

3131
public refresh(): void {
3232
const execState = this.service?.activeExecutable;

0 commit comments

Comments
 (0)