about summary refs log tree commit diff
path: root/ui-shared.c (unfollow)
Commit message (Expand)Author
2007-10-28Make print_branch() handle refs not pointing at commitsLars Hjemli
2007-10-28Teach log search about --grep, --author and --committerLars Hjemli
2007-10-28Add html_option() functionLars Hjemli
2007-10-27cgit_parse_commit(): Add missing call to xstrdup()Lars Hjemli
2007-10-27Cleanup code introduced by the filter-refs topicLars Hjemli
2007-10-27Add links to the new refs page from summary pageLars Hjemli
2007-10-27Add support for refs viewLars Hjemli
2007-10-27Make cgit_print_branches()/cgit_print_tags() externalLars Hjemli
2007-10-27Add descriptions of summary-branches and summary-tags to cgitrcLars Hjemli
2007-10-27Add support for config param summary-branchesLars Hjemli
2007-10-27Move logic for age comparision from cmp_tag_age into cmp_age()Lars Hjemli
2007-10-27Add support for config param summary-tagsLars Hjemli
2007-10-27Sort tags by ageLars Hjemli
2007-10-27Use reflist to print tag infoLars Hjemli
2007-10-27Use reflist to print branch infoLars Hjemli
2007-10-27Add functions and types for ref listsLars Hjemli
2007-10-27Skip unknown header fields when parsing tags and commitsLars Hjemli
2007-10-05correct typo in CSSMichael Krelin
2007-10-01Use git-1.5.3.3Lars Hjemli
2007-10-01cgit.css: make diff headers more visibleLars Hjemli
2007-10-01ui-diff: add links to pre- and postversion of blobsLars Hjemli
2007-10-01gen-version.sh: don't sed the output from git describeLars Hjemli
2007-10-01css: remove the annoying tr:hover rule for diffstatLars Hjemli
2007-10-01ui-commit.c: link to diff instead of tree from diffstatLars Hjemli
2007-10-01Add prefix parameter to cgit_print_diff()Lars Hjemli
2007-10-01Add prefix parameter to cgit_diff_tree()Lars Hjemli
2007-09-25Add support for a renamelimit option in cgitrcLars Hjemli
2007-09-20cgit v0.6.3Lars Hjemli
2007-09-20Upgrade to GIT 1.5.3.2Lars Hjemli
2007-09-20Use trim_end() to remove trailing slashesLars Hjemli
2007-09-20Remove a few compiler warningsLars Hjemli
2007-09-20Add cgit.conf to .gitignore, remove *~Lars Hjemli
2007-09-20ui-tree: show last line of blobLars Hjemli
2007-09-19ui-tree: specify parameter position for all htmlf formatsLars Hjemli
2007-09-14fixed typo in cgitrcMichael Krelin
2007-09-09Improve the sample cgitrc fileChris Pickel
2007-09-08cgit v0.6.2Lars Hjemli
2007-09-08Revert part of "Makefile: add support for DESTDIR"Lars Hjemli
2007-09-08Revert "Makefile: add missing references to DESTDIR"Lars Hjemli
2007-09-08cgit v0.6.1Lars Hjemli
2007-09-08Makefile: add missing references to DESTDIRLars Hjemli
2007-09-08Make cgit honor CACHE_ROOT as defined in MakefileChris Pickel
2007-09-08Makefile: add support for DESTDIRChris Pickel
2007-09-04cgit v0.6Lars Hjemli
2007-09-04Update READMELars Hjemli
2007-09-04Set xdemitconf_t.findfunc=NULLLars Hjemli
2007-09-03Use git-1.5.3 as submoduleLars Hjemli
2007-09-03Delete submodules.sh and prepare for using git-submoduleLars Hjemli
2007-09-03Makefile: add target "get-git"Lars Hjemli
2007-09-03Rewrite the makefile + gen-version.shLars Hjemli
/ui.c?h=vimode&id=3b4ad30d9789e43d5f639f97fd4613b3edbf83fa&follow=1'>Remove unneeded includes in ui.cJune McEnroe 2022-02-19Reimplement tab completeJune McEnroe 2022-02-19Handle errors from editFn, etc.June McEnroe 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