File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ async function controlflow(shell: RShell, remainingLine: string) {
1515export const controlflowCommand : ReplCommand = {
1616 description : 'Get mermaid code for the control-flow graph of R code, start with \'file://\' to indicate a file' ,
1717 usageExample : ':controlflow' ,
18- aliases : [ 'cfg' ] ,
18+ aliases : [ 'cfg' , 'cf' ] ,
1919 script : false ,
2020 fn : async ( output , shell , remainingLine ) => {
2121 const result = await controlflow ( shell , remainingLine )
@@ -28,7 +28,7 @@ export const controlflowCommand: ReplCommand = {
2828export const controlflowStarCommand : ReplCommand = {
2929 description : 'Get a mermaid url of the control-flow graph of R code, start with \'file://\' to indicate a file' ,
3030 usageExample : ':controlflow' ,
31- aliases : [ 'cfg*' ] ,
31+ aliases : [ 'cfg*' , 'cf*' ] ,
3232 script : false ,
3333 fn : async ( output , shell , remainingLine ) => {
3434 const result = await controlflow ( shell , remainingLine )
You can’t perform that action at this time.
0 commit comments