about summary refs log tree commit diff
path: root/tests (follow)
Commit message (Expand)AuthorAge
* tests: allow shell to be overriddenJohn Keeping2015-08-13
* t0110: Chain together using &&Jason A. Donenfeld2015-08-12
* ui-patch: match git-format-patch(1) outputJohn Keeping2014-12-28
* t0108: modernize styleJohn Keeping2014-12-28
* tests: only do lua tests if lua is compiled-inJason A. Donenfeld2014-01-20
* t0111: Additions and fixesLukas Fleischer2014-01-16
* t0111: Add basic tests for Lua filtersLukas Fleischer2014-01-15
* tests/: Add t0111-filter.shLukas Fleischer2014-01-14
* tests: add CGIT_TEST_OPTS variable to MakefileJohn Keeping2014-01-12
* tests: add Valgrind supportJohn Keeping2014-01-12
* Reduce line number bloat, fix hover effectPeter Wu2014-01-08
* tests/: Add t0110-rawdiff.shLukas Fleischer2013-08-26
* t0108: Add tests for revision rangesLukas Fleischer2013-08-26
* t0108: Compare output with git-format-patch(1)Lukas Fleischer2013-08-26
* ui-patch.c: Add additional newline after each patchLukas Fleischer2013-08-26
* t0108: Avoid unnecessary fork()Lukas Fleischer2013-08-26
* cache.c: cache ls_cache output properlyJohn Keeping2013-05-22
* tests: introduce strip_header() helper functionJohn Keeping2013-05-22
* t0109: "function" is a bash-ismJohn Keeping2013-05-13
* ui-snapshot: do not access $HOMEJason A. Donenfeld2013-04-30
* t0001: validate Git -rcN version numbers correctlyJohn Keeping2013-04-27
* t0001: ignore ".dirty" suffix on Git versionJohn Keeping2013-04-15
* tests: set TEST_OUTPUT_DIRECTORY to the CGit test directoryJohn Keeping2013-04-15
* t0109: test more URLsJohn Keeping2013-04-15
* t0107: Skip ZIP tests if unzip(1) isn't availableLukas Fleischer2013-04-10
* tests/: Do not use `sed -i`Lukas Fleischer2013-04-10
* t0109: chain operations with &&John Keeping2013-04-10
* t0107: Use `tar -z` for gzip'ed archivesLukas Fleischer2013-04-09
* tests: Make sure that git does not access $HOMEJason A. Donenfeld2013-04-08
* tests/.gitignore: update for using Git's test infrastructureJohn Keeping2013-04-08
* tests: use Git's test frameworkJohn Keeping2013-04-08
* tests: check that Git version are in syncJohn Keeping2013-03-20
* t0107-snapshot: add tests for ZIP archivesJohn Keeping2013-03-04
* tests: make whitespace consistentJohn Keeping2013-03-04
* tests: "grep -e" is not portable to all platformsJohn Keeping2013-03-04
* tests: check for proper html entityJason A. Donenfeld2012-10-17
* Merge branch 'stable'Lars Hjemli2012-03-18
|\
| * tests: properly quote arguments to printfFerry Huberts2012-03-18
| * tests: handle paths with whitespaceFerry Huberts2012-03-18
* | Merge branch 'stable'Lars Hjemli2011-07-21
|\|
| * tests: fix failures when CDPATH is setFerry Huberts2011-07-21
* | cgit.c: add 'clone-url' setting with support for macro expansionLars Hjemli2011-06-13
|/
* ui-log.c: do not link from age columnLars Hjemli2011-06-02
* tests: add tests for links with space in path and/or argsLars Hjemli2011-05-23
* tests/setup.sh: add support for known bugsLars Hjemli2011-05-23
* t0108-patch: add 'tests_done' to endMark Lodato2010-08-29
* Merge branch 'jw/commit-decorations'Lars Hjemli2009-01-27
|\
| * tests/t0105-commit.sh: expect commit decorationsLars Hjemli2009-01-27
* | Merge branch 'og/tree-view-selection'Lars Hjemli2009-01-27
|\ \ | |/ |/|
| * changed objects are outputted, allowing for selections of code onlyOnne Gorter2009-01-10
ass='logheader'>2022-02-19Reimplement text macrosJune McEnroe 2022-02-19Factor out input handling to input.cJune McEnroe 2022-02-19Factor out window management to window.cJune McEnroe 2022-02-19Enable -Wmissing-prototypesJune McEnroe In other words, warn when a function is missing static. I don't see why this isn't in -Wextra. 2022-02-19Fix edit.[ch] license notice additional permissionsJune McEnroe 2022-02-19Run line editing testsJune McEnroe I know, it feels wrong. 2022-02-18Implement new line editing "library"June McEnroe Losing tab complete and text macros, for now. This new implementation works on an instance of a struct and does not interact with the rest of catgirl, making it possible to copy into another project. Unlike existing line editing libraries, this one is entirely abstract and can be rendered externally. My goal with this library is to be able to implement vi mode. Since it operates on struct instances rather than globals, it might also be possible to give catgirl separate line editing buffers for each window, which would be a nice UX improvement. 2022-02-18Simplify cursor positioning in inputJune McEnroe Do some extra work by adding the portion before the cursor to the input window twice, but simplify the interaction with the split point. This fixes the awkward behaviour when moving the cursor across colour codes where the code would be partially interpreted up to the cursor. 2022-02-18Fix M-f orderingJune McEnroe 2022-02-12Move sandman build to scripts/MakefileJune McEnroe 2022-02-12Use compat_readpassphrase.c on LinuxJune McEnroe 2022-02-12Copy RPP defines from oconfigureJune McEnroe