Commits


make 'tog log' display the committer handle by default, '@' switches to author People coming from CVS might not expect names of patch contributers to show up in commit history listings, so make things easy for them. discussed with op@


tog: always echo input prompt to bottom left of screen Irrespective of the active view, always echo to the bottom left of the parent view. ok op@


tog: fix typo that breaks log search when in hsplit Ironically, the typo "blocks" log search when in hsplit because we block input on the wrong view! Pass the proper "v" view to nodelay() calls. ok op@


cope with deleted references when reloading the tog log view ok op jamsek


avoid printing harmless errors that can occur when tog exits due to Ctrl-C ok jamsek


fix detection of SIGTERM in tog; this signal was accidentally being ignored ok jamsek


sync usage with reality The -h and -V/--version flags must be given before the command; with those flags the command is actually optional, but don't over-complicate the usage string with these nitpicks. ok/improvements stsp@


backout Make & command in tog's log view display "searching..." The limit feature is more than just a search operation, tog's man page has been updated accordingly.


tweak view name display in the help screen for clarity


Make & command in tog's log view display "searching..." while loading commits. This command acts like a search operation, and the display should reflect that.


fix indentation; from jamsek


make exiting tog's help screen easier for new users ok jamsek


tog: open help in fullscreen irrespective of view configuration Prompted by a suggestion from stsp to make the help view distinct rather than follow the default behaviour of established views. Occupying the fullscreen seems to be a somewhat established convention for TUI apps. ok stsp@


drop unconventional got_object_commit_dup() routine Replace with got_object_commit_retain() to increment commit object reference counter. suggested by and ok stsp@


tog: don't embed utf8 glyphs into tog.c source code Reported by stsp: Embedded utf8 precludes developers running C locales from browsing the code. Fix was suggested by stsp with hints from the tmux(1) codebase. ok stsp@