@ -52,6 +52,12 @@ export const FileExplorerContextMenu = (props: FileExplorerContextMenuProps) =>
case 'Push changes to gist':
publishToGist(path, type)
break
case 'Publish folder to gist':
case 'Publish file to gist':
case 'Run':
runScript(path)
@ -58,7 +58,7 @@ export const FileExplorer = (props: FileExplorerProps) => {
pattern: []
}, {
id: 'pushChangesToGist',
name: 'Push back changes to gist',
name: 'Push changes to gist',
type: ['gist'],
path: [],
extension: [],
@ -70,6 +70,13 @@ export const FileExplorer = (props: FileExplorerProps) => {
id: 'publishFileToGist',
name: 'Publish file to gist',
type: ['file'],
id: 'run',
name: 'Run',