summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2020-03-01Check that first character is + or - before replacing it with space105-svnDan Davison
2020-03-01Merge branch 'master' into 105-svnDan Davison
2020-03-01Change a function nameDan Davison
2020-03-01Merge pull request #111 from dandavison/110-truecolor-to-256-colorsDan Davison
Support 256-color terminal environments
2020-03-01Support 256-color terminal environmentsDan Davison
Fixes #110 With this commit, delta enters "24 bit color mode" iff either of the following are true: 1. The --24-bit-color command line option value is "always" 2. The --24-bit-color command line option value is "auto" and the COLORTERM environment variable is set to "truecolor" or "24bit". See https://gist.github.com/XVilka/8346728#true-color-detection https://github.com/sharkdp/bat/blob/7779d9f6221b3e98c43a43ceb5596ba285fdf4f8/src/bin/bat/app.rs#L29-L33 Otherwise, delta enters "8-bit color mode". In "24 bit color mode", delta will 1. Emit 24-bit RGB color shell escape sequences that will only be displayed correctly by a terminal application that supports 24 bit colors. 2. Select default background colors that will only be displayed correctly by a terminal application that supports 24 bit colors. In "8-bit color mode", delta will 1. Emit color shell escape sequences specifying the entry in the ANSI 256 color palette that is closest (according to the ansi_colours library) to the requested color. 2. Select default background colors that will work well in a terminal application that supports 8-bit color but not 24-bit color.
2020-03-01Use lowercase characters in color hex codesDan Davison
2020-03-01Change function nameDan Davison
2020-03-01Merge pull request #109 from jesseduffield/masterDan Davison
add paging mode option
2020-03-01Edit help textDan Davison
2020-03-01Demand valid command line valueDan Davison
2020-03-01Make CLI --paging option have the same interface as bat'sDan Davison
2020-03-01add paging mode optionJesse Duffield
2020-02-28Build release version in MakefileDan Davison
2020-02-27Merge pull request #107 from dandavison/99-103-color-optionsDan Davison
Provide CLI options for all colors
2020-02-27Exit when an invalid color is supplied as a command line optionDan Davison
2020-02-27Provide CLI options for all colorsDan Davison
- Fixes #99, #103 - Support both RGB and ANSI codes - Eliminate (almost) ansi_term crate in favor of syntect for representing colors
2020-02-27Add Gitter badgeDan Davison
2020-02-26Add Archlinux installation instructionsDan Davison
2020-02-26Support SVN diff outputDan Davison
Fixes #105
2020-02-16Merge pull request #98 from ↵Dan Davison
guyboltonking/gbk-fix-missing-newline-in-write-boxed-with-line Fix missing newline in --commit-style=box
2020-02-14Fix missing newline in draw::write_boxed_with_lineGuy Bolton King
2020-02-12Merge pull request #94 from dandavison/93-show-binary-file-diff-lineDan Davison
Show binary file diff line
2020-02-12Add test script for #93Dan Davison
2020-02-12Output Git's "Binary files $file_1 and $file_2 differ" lineDan Davison
Fixes #93
2020-02-12Add test for "Binary files ... differ" lineDan Davison
Ref #93
2020-02-08Simplify README titleDan Davison
2020-02-08Change to white terminal background in screenshotDan Davison
2020-02-07Fix hashes in homebrew formulaDan Davison
Fixes #92
2020-02-07Stop running Windows build since it is broken0.0.16Dan Davison
2020-02-06Bump versionDan Davison
2020-02-06Merge pull request #90 from dandavison/89-fix-parser-comment-ambiguityDan Davison
Fix parser comment ambiguity
2020-02-06Tighten up state machine parser. Fixes #89Dan Davison
Prior to this commit, in a language in which -- at the beginning of a line is valid (e.g. a Haskell or SQL comment), then removal of such a line was being confused with the --- marker used in unified/git diff to introduce the file paths.
2020-02-06Add failing test for issue #89Dan Davison
2020-01-13Merge pull request #84 from dandavison/update-readme-theme-language-docsDan Davison
Update README
2020-01-13Update READMEDan Davison
2020-01-12Update bash completionDan Davison
2020-01-09Merge pull request #76 from data-pup/read-themes-from-bat-cacheDan Davison
read themes from bat's cache
2020-01-09Merge pull request #81 from Psycojoker/patch-1Dan Davison
[README] document mercurial configuration
2020-01-09[README] document mercurial configurationBram
2019-12-23read themes from bat's cache as welldata-pup
2019-12-12Merge pull request #75 from dandavison/make-compare-themes-like-batDan Davison
Make compare themes like bat
2019-12-12Change theme demo inputDan Davison
2019-12-12Update commands for listing themesDan Davison
- Make --list-themes analogous to bat's --list-themes - Rename --compare-themes to --list-theme-names
2019-12-12Delete credit lineDan Davison
2019-12-12Merge pull request #74 from dandavison/54-support-ansi-and-base16-themesDan Davison
Fix ansi-light, ansi-dark, and base16 themes
2019-12-12Fix ansi-light, ansi-dark, and base16 themesDan Davison
Fixes #54 See https://github.com/sharkdp/bat/pull/543
2019-12-12Merge pull request #73 from dandavison/71-plus-emph-colorDan Davison
Tweak --plus-emph-color default for dark mode
2019-12-12Fix formatting of RGB hex codesDan Davison
2019-12-12Change --plus-emph-color default for dark modeDan Davison
Fixes #71, thanks @YaLTeR
2019-12-11Bug fix: bash completionDan Davison