Created
October 20, 2017 05:47
-
-
Save DamnedScholar/7ab54c4bbca8c0d924cc664f1d7e38ab to your computer and use it in GitHub Desktop.
A Process Palette configuration file created as a sample for a StackOverflow answer.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"patterns": { | |
"P1": { | |
"expression": "(path):(line)" | |
}, | |
"P2": { | |
"expression": "(path)\\s+(line)", | |
"path": "(?:\\/[\\w\\.\\-]+)+" | |
} | |
}, | |
"commands": [ | |
{ | |
"namespace": "process-palette", | |
"action": "source-file", | |
"command": "source {fileAbsPath}", | |
"arguments": [], | |
"cwd": null, | |
"inputDialogs": [], | |
"env": {}, | |
"keystroke": null, | |
"stream": true, | |
"outputTarget": "panel", | |
"outputBufferSize": 80000, | |
"maxCompleted": 3, | |
"autoShowOutput": true, | |
"autoHideOutput": true, | |
"scrollLockEnabled": false, | |
"singular": false, | |
"promptToSave": true, | |
"saveOption": "none", | |
"patterns": [ | |
"default" | |
], | |
"successOutput": "{stdout}", | |
"errorOutput": "{stdout}\n{stderr}", | |
"fatalOutput": "Failed to execute : {fullCommand}\n{stdout}\n{stderr}", | |
"startMessage": null, | |
"successMessage": "Executed : {fullCommand}", | |
"errorMessage": "Executed : {fullCommand}\nReturned with code {exitStatus}\n{stderr}", | |
"fatalMessage": "Failed to execute : {fullCommand}\n{stdout}\n{stderr}", | |
"menus": [ | |
"Shell Commands" | |
], | |
"startScript": null, | |
"successScript": null, | |
"errorScript": null, | |
"scriptOnStart": false, | |
"scriptOnSuccess": false, | |
"scriptOnError": false, | |
"notifyOnStart": false, | |
"notifyOnSuccess": true, | |
"notifyOnError": true, | |
"input": null | |
}, | |
{ | |
"namespace": "process-palette", | |
"action": "open-keymap", | |
"command": "atom C:/Users/stick/.atom/keymap.cson", | |
"arguments": [], | |
"cwd": null, | |
"inputDialogs": [], | |
"env": {}, | |
"keystroke": null, | |
"stream": true, | |
"outputTarget": "panel", | |
"outputBufferSize": 80000, | |
"maxCompleted": 3, | |
"autoShowOutput": true, | |
"autoHideOutput": true, | |
"scrollLockEnabled": false, | |
"singular": false, | |
"promptToSave": true, | |
"saveOption": "none", | |
"patterns": [ | |
"default" | |
], | |
"successOutput": "{stdout}", | |
"errorOutput": "{stdout}\n{stderr}", | |
"fatalOutput": "Failed to execute : {fullCommand}\n{stdout}\n{stderr}", | |
"startMessage": null, | |
"successMessage": "Executed : {fullCommand}", | |
"errorMessage": "Executed : {fullCommand}\nReturned with code {exitStatus}\n{stderr}", | |
"fatalMessage": "Failed to execute : {fullCommand}\n{stdout}\n{stderr}", | |
"menus": [ | |
"Shell Commands" | |
], | |
"startScript": null, | |
"successScript": null, | |
"errorScript": null, | |
"scriptOnStart": false, | |
"scriptOnSuccess": false, | |
"scriptOnError": false, | |
"notifyOnStart": false, | |
"notifyOnSuccess": false, | |
"notifyOnError": true, | |
"input": null | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment