Skip to content

Commit

Permalink
sync
Browse files Browse the repository at this point in the history
  • Loading branch information
chee committed Aug 3, 2019
1 parent e1b085f commit a12f712
Show file tree
Hide file tree
Showing 3 changed files with 84 additions and 2 deletions.
5 changes: 3 additions & 2 deletions config.cson
@@ -1,7 +1,7 @@
"*":
"atom-ide-ui":
"atom-ide-code-format":
formatOnSave: true
formatOnType: false
use:
"atom-ide-terminal": "never"
"autocomplete-plus":
Expand Down Expand Up @@ -77,7 +77,8 @@
brightRed: "#ff573d"
brightYellow: "#fffe30"
core:
shell: "/usr/local/bin/zsh"
mapTerminalsTo: "File"
shell: "/bin/sh"
style:
animationSpeed: 100
toggles:
Expand Down
2 changes: 2 additions & 0 deletions packages.cson
Expand Up @@ -6,6 +6,7 @@ packages: [
"editorconfig"
"fast-eslint"
"file-icons"
"hyperclick"
"ide-rust"
"ide-typescript"
"language-nginx"
Expand All @@ -18,4 +19,5 @@ packages: [
"remote-atom"
"rustfmt"
"vk-terminal"
"Zen"
]
79 changes: 79 additions & 0 deletions terminal-commands.json
@@ -0,0 +1,79 @@
{
"_comment": "Package atom-terminal-panel: This terminal-commands.json file was automatically generated by atom-terminal-package. It contains all useful config data.",
"commands": {
"hello_world": {
"description": "Prints the hello world message to the terminal output.",
"command": [
"echo Hello world :D",
"echo This is",
"echo example usage",
"echo of the console"
]
}
},
"actions": [],
"toolbar": [
[
"clear",
"clear",
"Clears the console output."
],
[
"info",
"info",
"Prints the terminal welcome message."
],
[
"all available commands",
"memdump",
"Displays all available builtin commands. (all commands except native)"
]
],
"rules": {
"\\b[A-Z][A-Z]+\\b": {
"match": {
"flags": [
"g"
]
},
"css": {
"color": "gray"
}
},
"(error|err):? (.*)": {
"match": {
"matchLine": true,
"replace": "%(label:error:text:Error) %(0)"
},
"css": {
"color": "red",
"font-weight": "bold"
}
},
"(warning|warn|alert):? (.*)": {
"match": {
"matchLine": true,
"replace": "%(label:warning:text:Warning) %(0)"
},
"css": {
"color": "yellow"
}
},
"(note|info):? (.*)": {
"match": {
"matchLine": true,
"replace": "%(label:info:text:Info) %(0)"
},
"css": {}
},
"(debug|dbg):? (.*)": {
"match": {
"matchLine": true,
"replace": "%(label:default:text:Debug) %(0)"
},
"css": {
"color": "gray"
}
}
}
}

0 comments on commit a12f712

Please sign in to comment.