From 06cd4b2ce82b780e48e3bbc6a9d4daab3258c11a Mon Sep 17 00:00:00 2001 From: sharkdp Date: Wed, 30 May 2018 19:16:08 +0200 Subject: [PATCH] Add 'coderay' to list of alternatives --- doc/alternatives.md | 22 +++++++++++----------- tests/benchmarks/comparison.sh | 2 ++ 2 files changed, 13 insertions(+), 11 deletions(-) diff --git a/doc/alternatives.md b/doc/alternatives.md index 95e29de6..6a7906f9 100644 --- a/doc/alternatives.md +++ b/doc/alternatives.md @@ -4,17 +4,17 @@ The following table tries to give an overview *from `bat`s perspective*, i.e. we categories which are relevant for `bat`. Some of these projects have completely different goals and if you are not looking for a program like `bat`, this comparison might not be for you. -| | bat | [pygments](http://pygments.org/) | [highlight](http://www.andre-simon.de/doku/highlight/highlight.php) | [ccat](https://github.com/jingweno/ccat) | [source-highlight](https://www.gnu.org/software/src-highlite/) | [hicat](https://github.com/rstacruz/hicat) | -|----------------------------------------------|---------------------------------------------------------------------|----------------------------------|---------------------------------------------------------------------|------------------------------------------|----------------------------------------------------------------|-----------------------------------------------------| -| Drop-in `cat` replacement | (:heavy_check_mark:) [*](https://github.com/sharkdp/bat/issues/134) | :x: | :x: | (:heavy_check_mark:) | :x: | :x: [*](https://github.com/rstacruz/hicat/issues/6) | -| Git integration | :heavy_check_mark: | :x: | :x: | :x: | :x: | :x: | -| Automatic paging | :heavy_check_mark: | :x: | :x: | :x: | :x: | :heavy_check_mark: | -| Languages (circa) | 60 | 300 | 200 | 7 | 80 | 130 | -| Extensible (languages, themes) | :heavy_check_mark: | (:heavy_check_mark:) | (:heavy_check_mark:) | :x: | (:heavy_check_mark:) | :x: | -| Advanced highlighting (e.g. nested syntaxes) | :heavy_check_mark: | :heavy_check_mark: | (:heavy_check_mark:) ? | :x: | :heavy_check_mark: | :heavy_check_mark: | -| Execution time [ms] (`jquery-3.3.1.js`) | 624 | 789 | 400 | 80 | 300 | 316 | -| Execution time [ms] (`miniz.c`) | 66 | 656 | 26 | 8 | 53 | 141 | -| Execution time [ms] (370 kB XML file) | 238 | 487 | 129 | 111 | 110 | 339 | +| | bat | [pygments](http://pygments.org/) | [highlight](http://www.andre-simon.de/doku/highlight/highlight.php) | [ccat](https://github.com/jingweno/ccat) | [source-highlight](https://www.gnu.org/software/src-highlite/) | [hicat](https://github.com/rstacruz/hicat) | [coderay](https://github.com/rubychan/coderay) | +|----------------------------------------------|---------------------------------------------------------------------|----------------------------------|---------------------------------------------------------------------|------------------------------------------|----------------------------------------------------------------|-----------------------------------------------------|-----------------------------------------------------| +| Drop-in `cat` replacement | (:heavy_check_mark:) [*](https://github.com/sharkdp/bat/issues/134) | :x: | :x: | (:heavy_check_mark:) | :x: | :x: [*](https://github.com/rstacruz/hicat/issues/6) | :x: | +| Git integration | :heavy_check_mark: | :x: | :x: | :x: | :x: | :x: | :x: | +| Automatic paging | :heavy_check_mark: | :x: | :x: | :x: | :x: | :heavy_check_mark: | :x: | +| Languages (circa) | 60 | 300 | 200 | 7 | 80 | 130 | 30 | +| Extensible (languages, themes) | :heavy_check_mark: | (:heavy_check_mark:) | (:heavy_check_mark:) | :x: | (:heavy_check_mark:) | :x: | :x: | +| Advanced highlighting (e.g. nested syntaxes) | :heavy_check_mark: | :heavy_check_mark: | (:heavy_check_mark:) ? | :x: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | +| Execution time [ms] (`jquery-3.3.1.js`) | 624 | 789 | 400 | 80 | 300 | 316 | 157 | +| Execution time [ms] (`miniz.c`) | 66 | 656 | 26 | 8 | 53 | 141 | 75 | +| Execution time [ms] (370 kB XML file) | 238 | 487 | 129 | 111 | 110 | 339 | 147 | If you think that some entries in this table are outdated or wrong, please open a ticket or pull request. diff --git a/tests/benchmarks/comparison.sh b/tests/benchmarks/comparison.sh index b6e7e9da..142f6635 100644 --- a/tests/benchmarks/comparison.sh +++ b/tests/benchmarks/comparison.sh @@ -15,6 +15,7 @@ cmd_highlight="highlight -O truecolor '$SRC'" cmd_ccat="ccat --color=always '$SRC'" cmd_source_highlight="source-highlight --failsafe --infer-lang -f esc -i '$SRC'" cmd_hicat="hicat '$SRC'" +cmd_coderay="coderay '$SRC'" hyperfine --warmup 3 \ "$cmd_bat" \ @@ -23,3 +24,4 @@ hyperfine --warmup 3 \ "$cmd_ccat" \ "$cmd_source_highlight" \ "$cmd_hicat" \ + "$cmd_coderay" \