summary refs log tree commit diff
Commit message (Expand)AuthorAge
...
* Bash is usually in /binJune McEnroe2015-05-28
* Swap windows instead of moving themJune McEnroe2015-05-24
* Replace effuse with simple shell scriptsJune McEnroe2015-05-24
* Add tmux shortcut functionsJune McEnroe2015-05-23
* More tmux configurationJune McEnroe2015-05-23
* Add tmux configurationJune McEnroe2015-05-22
* Set scrolloff=1June McEnroe2015-05-13
* Truncate RPROMPT with negative lengthJune McEnroe2015-02-18
* Fix timeoutlen so leader still worksJune McEnroe2015-02-16
* Prevent esc delay in terminal vimJune McEnroe2015-02-15
* Fix git prompt for branches with slashesJune McEnroe2015-02-15
* Clean upJune McEnroe2015-02-14
* Switch back to gruvbox iTerm themeJune McEnroe2015-02-14
* Switch back to gruvbox vim themeJune McEnroe2015-02-14
* Prevent red first promptJune McEnroe2015-02-14
* New minimal zshrcJune McEnroe2015-02-14
* Use Hybrid colours in iTerm2June McEnroe2015-02-13
* New minimal vimrcJune McEnroe2015-02-13
* Add more bytes to randpasswd and use URL base64June McEnroe2015-01-16
* Add vim-signature pluginJune McEnroe2015-01-16
* Ignore .DS_StoreJune McEnroe2015-01-06
* Add Karabiner configurationJune McEnroe2015-01-06
* Add git rebase aliasesJune McEnroe2015-01-06
* Add vman alias for vim-supermanJune McEnroe2015-01-06
* Add vim-supermanJune McEnroe2015-01-06
* Add LimeLight to GoyoJune McEnroe2015-01-06
* Swap 0 and ^ in VimJune McEnroe2015-01-06
* Highlight columns 80, 100, 120June McEnroe2015-01-06
* Add iTerm2 to effuse exlcudeJune McEnroe2014-11-29
* Update README listJune McEnroe2014-11-29
* Remove unused configsJune McEnroe2014-11-29
* Add iTerm 2 configurationJune McEnroe2014-11-25
* Keep working directory in terminal titleJune McEnroe2014-11-25
* Add .pultrc to global gitignoreJune McEnroe2014-11-25
* Use gruvbox colorschemeJune McEnroe2014-11-25
* Remove multiple cursors pluginJune McEnroe2014-11-25
* Simplify C-n relative number toggleJune McEnroe2014-11-25
* Add Goyo.vimJune McEnroe2014-11-25
* Use ProFont 11 in VimJune McEnroe2014-11-25
* Add ~/.bin to the pathJune McEnroe2014-10-14
* Remove binJune McEnroe2014-10-14
* Remove backup option from vimrcJune McEnroe2014-10-12
* Update tunnel function for new domainJune McEnroe2014-10-12
* On error rollback in interactive psqlJune McEnroe2014-09-29
* Never mind thatJune McEnroe2014-09-23
* Add FETCH_COUNT and expanded auto to psqlrcJune McEnroe2014-09-23
* Silence psqlrc output and turn timing onJune McEnroe2014-09-23
* Add psqlrcJune McEnroe2014-09-19
* Wildcard ignore DS_StoreJune McEnroe2014-09-19
* Add randpasswd aliasJune McEnroe2014-08-11
puts the trash directories and test-results directory into its own directory, not that containing the tests being run. This is less convenient for inspecting test failures, so set the output directory to CGit's tests/ directory instead. Note that there is currently a bug in Git whereby it will create the trash directories in our tests/ directory regardless of the value of TEST_OUTPUT_DIRECTORY, and then fail to remove them once the tests are done. This change does currently affect the location of the test-results/ directory though. Signed-off-by: John Keeping <john@keeping.me.uk> 2013-04-15t0109: test more URLsJohn Keeping In order to ensure that we don't access $HOME at some point after initial startup when rendering a specific view, run the strace test on a range of different pages. This ensures that we don't end up reading a configuration later for some specific view. Signed-off-by: John Keeping <john@keeping.me.uk> 2013-04-10cgitrc.5.txt: Specify when scan-path must be defined before.Jason A. Donenfeld Several options must be specified prior to scan-path. This is consistant source of user confusion. Document these facts. Suggested-by: Lukas Fleischer <cgit@cryptocrack.de> Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com> 2013-04-10ui-snapshot.c: Prepend "V" when guessing ref namesLukas Fleischer In cgit_print_snapshot_links() we strip leading "v" and "V", while we currently only prepend a lower case "v" when parsing a snapshot file name. This results in broken snapshot links for tags that start with an upper case "V". Avoid this by prepending a "V" as a fallback. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2013-04-10t0107: Skip ZIP tests if unzip(1) isn't availableLukas Fleischer Note that we cannot use skip_all here since some tests have already been executed when ZIP tests are reached. Use test prerequisites to skip everything using unzip(1) if the binary is not available instead. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2013-04-10tests/: Do not use `sed -i`Lukas Fleischer "-i" isn't part of the POSIX standard and doesn't work on several platforms such as OpenBSD. Use a temporary file instead. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2013-04-10Add branch-sort and repo.branch-sort options.Jason A. Donenfeld When set to "name", branches are sorted by name, which is the current default. When set to "age", branches are sorted by the age of the repository. This feature was requested by Konstantin Ryabitsev for use on kernel.org. Proposed-by: Konstantin Ryabitsev <mricon@kernel.org> 2013-04-10t0109: chain operations with &&John Keeping Without '&&' between operations, we will not detect if strace or cgit exit with an error status, which would cause a false positive test status in this case. Signed-off-by: John Keeping <john@keeping.me.uk> 2013-04-10cgit.c: Do not restore unset environment variablesLukas Fleischer getenv() returns a NULL pointer if the specified variable name cannot be found in the environment. However, some setenv() implementations crash if a NULL pointer is passed as second argument. Only restore variables that are not NULL. See commit d96d2c98ebc4c2d3765f5b35c4142e0e828a421b for a related patch. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2013-04-09t0107: Use `tar -z` for gzip'ed archivesLukas Fleischer