From a12f712699c99555d144e3edb54914ac56fdbf29 Mon Sep 17 00:00:00 2001 From: chee Date: Sat, 3 Aug 2019 22:52:15 +0100 Subject: [PATCH] sync --- config.cson | 5 +-- packages.cson | 2 ++ terminal-commands.json | 79 ++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 84 insertions(+), 2 deletions(-) create mode 100644 terminal-commands.json diff --git a/config.cson b/config.cson index cd582c9..b800e28 100644 --- a/config.cson +++ b/config.cson @@ -1,7 +1,7 @@ "*": "atom-ide-ui": "atom-ide-code-format": - formatOnSave: true + formatOnType: false use: "atom-ide-terminal": "never" "autocomplete-plus": @@ -77,7 +77,8 @@ brightRed: "#ff573d" brightYellow: "#fffe30" core: - shell: "/usr/local/bin/zsh" + mapTerminalsTo: "File" + shell: "/bin/sh" style: animationSpeed: 100 toggles: diff --git a/packages.cson b/packages.cson index e27e081..e71eab3 100644 --- a/packages.cson +++ b/packages.cson @@ -6,6 +6,7 @@ packages: [ "editorconfig" "fast-eslint" "file-icons" + "hyperclick" "ide-rust" "ide-typescript" "language-nginx" @@ -18,4 +19,5 @@ packages: [ "remote-atom" "rustfmt" "vk-terminal" + "Zen" ] diff --git a/terminal-commands.json b/terminal-commands.json new file mode 100644 index 0000000..02091aa --- /dev/null +++ b/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" + } + } + } +} \ No newline at end of file