Re: [tig] [PATCHv2 3/3] log: Colour the diff stat

2014-04-16 Thread Jonas Fonseca
log_state), log_open, - pager_read, - pager_draw, + log_read, + log_draw, log_request, pager_grep, log_select, -- 1.9.1 -- Jonas Fonseca -- To unsubscribe from this list: send the line unsubscribe git in the body of a message to majord

Re: [tig] [PATCHv2 0/3] log: colour the diffstat

2014-04-16 Thread Jonas Fonseca
currently refactoring how views are drawn I'd prefer to postpone merging this patchset until the dust has settled. I'll try to rebase the patches once I get there before reaching out to you. -- Jonas Fonseca -- To unsubscribe from this list: send the line unsubscribe git in the body of a message

[ANNOUNCE] tig-2.0

2014-04-29 Thread Jonas Fonseca
-docs.sh |2 +- 154 files changed, 38086 insertions(+), 11640 deletions(-) 1 Andreas Schlick 1 Beat Bolli 1 Benjamin Bergman 1 Ciro Santilli 1 Dmitry Malikov 1 Ed Bruck 3 Jeff King 399 Jonas Fonseca 3 Kumar Appaiah 1 LCD 47 1 Lau Ching Jun

[ANNOUNCE] tig-2.0.1

2014-04-30 Thread Jonas Fonseca
Jonas Fonseca (2): Improve pretty printing of ',' in the help view tig-2.0.1 Yasuharu Ozaki (1): fix LessThan binding support -- Jonas Fonseca -- To unsubscribe from this list: send the line unsubscribe git in the body of a message to majord...@vger.kernel.org More majordomo

[ANNOUNCE] tig-2.0.2

2014-05-08 Thread Jonas Fonseca
(-) Jonas Fonseca (16): Fix auto-abbreviation of author names Improve display of commas and spaces in the help view Rewrite index diffing to use git-status Group option toggle bindings together in the help view Never show any actions for a hidden keymap Fix

[ANNOUNCE] tig-2.0.3

2014-08-28 Thread Jonas Fonseca
+- tools/install.sh | 2 +- tools/release.sh | 7 +- 133 files changed, 5456 insertions(+), 16004 deletions(-) 1 Alexander Myltsev 3 John Keeping 64 Jonas Fonseca 1 Olof-Joachim Frahm 1 Sven Wegener 2

Re: tig: Improving startup time and interactivity

2014-11-12 Thread Jonas Fonseca
changes is enabled in the main view (when `set show-changes = yes`). I will review this again. Could you point me to the right source file? I'm not used to the sources split into multiple files yet. :-) Try: tig grep main_open Ciao Have a great day. -- Jonas Fonseca -- To unsubscribe

Re: [PATCH] TIG: Fix to reinstate proper operation with no arguments

2013-07-18 Thread Jonas Fonseca
-bufpos = 0; while (arg) { char *next = strstr(arg, %(); -- Jonas Fonseca -- To unsubscribe from this list: send the line unsubscribe git in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: [PATCH V2] TIG: Fix to reinstate proper operation with no arguments

2013-07-28 Thread Jonas Fonseca
= 0; + for (i = 0; i SIZEOF_STR; i++) Changed this to use sizeof(format-buf) instead. + format-buf[i] = 0; + while (arg) { char *next = strstr(arg, %(); int len = next ? next - arg : strlen(arg); -- 1.8.0 -- Jonas Fonseca

Re: [TIG][PATCH] Scroll diff with arrow keys in log view

2013-08-01 Thread Jonas Fonseca
like a charm. BTW, please remember to label tig related patches by adding '[TIG]' or something similar in the subject so people on this list won't get confused. -- Jonas Fonseca -- To unsubscribe from this list: send the line unsubscribe git in the body of a message to majord...@vger.kernel.org

Re: [[TIG][PATCH] 1/3] Add log_select function to find commit from context in log view

2013-08-05 Thread Jonas Fonseca
, }; struct diff_state { -- 1.8.3.2 -- Jonas Fonseca -- To unsubscribe from this list: send the line unsubscribe git in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: [[TIG][PATCH] 2/3] Display correct diff the context in split log view

2013-08-05 Thread Jonas Fonseca
;` } -- 1.8.3.2 -- Jonas Fonseca -- To unsubscribe from this list: send the line unsubscribe git in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: [[TIG][PATCH] 1/3] Add log_select function to find commit from context in log view

2013-08-05 Thread Jonas Fonseca
On Fri, Aug 2, 2013 at 8:23 PM, Kumar Appaiah a.ku...@alumni.iitm.ac.in wrote: diff --git a/tig.c b/tig.c index 72f132a..dd4b0f4 100644 --- a/tig.c +++ b/tig.c @@ -4427,11 +4454,30 @@ log_open(struct view *view, enum open_flags flags) static enum request log_request(struct view *view,

Re: [TIG][PATCH 0/3] Refactoring of the log view

2013-08-05 Thread Jonas Fonseca
On Fri, Aug 2, 2013 at 8:23 PM, Kumar Appaiah a.ku...@alumni.iitm.ac.in wrote: These set of patches refactor the log view to provide a behaviour that is quite similar to, say, e-mail with Mutt. The key improvements are: - The current commit is inferred based on the context. For example, if

[ANNOUNCE] tig-1.2

2013-08-10 Thread Jonas Fonseca
deletions(-) 1 Aaron Franks 1 Beat Bolli 1 Dominik Vogt 2 Drew Northup 3 IWASAKI Yudai 1 Joakim Sernbrant 61 Jonas Fonseca 1 Julian Langschaedel 4 Kumar Appaiah 1 Menghan Zheng 1 Michael Grünewald 1 Rafael Laboissiere 1

[ANNOUNCE] tig-1.2.1

2013-08-24 Thread Jonas Fonseca
+++ tigmanual.7.txt| 20 - tigrc.5.txt| 736 --- 24 files changed, 2119 insertions(+), 1807 deletions(-) Dan Church (1): Fix man page install Jonas Fonseca (19): Move documentation to doc directory Rework

Re: diff/merge tool that ignores whitespace changes

2012-09-03 Thread Jonas Fonseca
line has whitespace where the other line has none. Now I yet need to find out how to configure tig for it. Try: echo set ignore-space = all ~/.tigrc And use 'W' to toggle between the different modes. -- Jonas Fonseca -- To unsubscribe from this list: send the line unsubscribe git

Re: [ANNOUNCE] tig-1.0

2012-09-07 Thread Jonas Fonseca
? -- Jonas Fonseca -- To unsubscribe from this list: send the line unsubscribe git in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: [ANNOUNCE] tig-1.0

2012-09-24 Thread Jonas Fonseca
the main view after executing an external command. -- Jonas Fonseca -- To unsubscribe from this list: send the line unsubscribe git in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

[ANNOUNCE] tig-1.1

2012-10-12 Thread Jonas Fonseca
Jonas Fonseca 2 Petr Uzel 2 Rich Healey 1 Ryan Schlesinger 8 Samuel Bronson 3 Valentin Haenel 1 Victor Foitzik 7 Vivien Didelot 1 Štěpán Němec -- Jonas Fonseca -- To unsubscribe from this list: send the line unsubscribe git in the body of a message

[PATCH] Documentation: Add asciidoc.conf file and gitlink: macro

2005-07-30 Thread Jonas Fonseca
with $(man 1 cg-tag)) - date string (as recognized by the 'date' tool) - shortcut object hash (shorted unambiguous hash lead) - commit object hash (as returned by 'commit-id') -- Jonas Fonseca - To unsubscribe from this list: send the line unsubscribe git in the body

[PATCHSET] Cogito documentation updates

2005-08-13 Thread Jonas Fonseca
[PATCH 5/5] Ignore patch backup files (*.{orig,rej}) when finding cg-* manpage scripts -- Jonas Fonseca - To unsubscribe from this list: send the line unsubscribe git in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html

[PATCH 1/5] Also install cg-*.txt files

2005-08-13 Thread Jonas Fonseca
Signed-off-by: Jonas Fonseca [EMAIL PROTECTED] --- debian/rules |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/debian/rules b/debian/rules --- a/debian/rules +++ b/debian/rules @@ -67,6 +67,7 @@ install: build $(MAKE) install DESTDIR=$(CURDIR)/debian/cogito

[PATCH 5/5] Ignore patch backup files when finding cg-* manpage scripts

2005-08-13 Thread Jonas Fonseca
Adds ../cg-*.{orig,rej} to CG_IGNORE. Signed-off-by: Jonas Fonseca [EMAIL PROTECTED] --- Documentation/Makefile |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Documentation/Makefile b/Documentation/Makefile --- a/Documentation/Makefile +++ b/Documentation/Makefile

[ANNOUNCE] tig-2.1

2015-03-10 Thread Jonas Fonseca
Jeff King 108 Jonas Fonseca 1 Peter Dave Hello 1 The Gitter Badger 1 Tom Greuter -- Jonas Fonseca -- To unsubscribe from this list: send the line unsubscribe git in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo

[ANNOUNCE] tig-2.1.1

2015-04-08 Thread Jonas Fonseca
changed, 912 insertions(+), 183 deletions(-) Alexander Sulfrian (1): Fix insertion/ordering of refs in refs_by_id map. Andreas Stieger (1): Update FSF address in COPYING Jonas Fonseca (12): Remove Gitweb link in favour of Gitter Integrate coverage reporting for the test suite

Re: [TIG PATCH] test: make diff/log work with git 2.9

2016-08-03 Thread Jonas Fonseca
On Tue, Jun 14, 2016 at 4:34 AM, Michael J Gruber <g...@drmicha.warpmail.net> wrote: > git 2.9.0 switches the default for diff.renames to true. > > Set this to false in config so that the test suite runs unmodified for > old and new git. Thanks! -- Jonas Fonseca -- To unsubscr

[ANNOUNCE] tig-2.2

2016-08-10 Thread Jonas Fonseca
2 Adam Strzelecki 1 Alexander Campbell 1 Bostjan Skufca 1 Daniel Hahler 1 Edgar HIPP 3 Eric Sunshine 1 Harish Lall 1 Jeff King 3 Jeremy Cowgar 84 Jonas Fonseca 1 Kentaro Wada 1 Laurent Arnoud 1 Mantas Mikulėnas 2 Michael J Gruber 1

[ANNOUNCE] tig-2.2.1

2016-11-16 Thread Jonas Fonseca
` error message. Change summary -- The short diffstat and log summary for changes made in this release. 118 files changed, 3765 insertions(+), 3284 deletions(-) 22 Jonas Fonseca 1 Frank Fesevur 1 Jelte Fennema 1 Jeremy Lin 1 Parker Coates 1 Philipp

[ANNOUNCE] tig-2.2.2

2017-05-06 Thread Jonas Fonseca
| 16 ++- tools/ax_require_defined.m4 | 37 +++ tools/ax_with_curses.m4 | 142 +++ 56 files changed, 822 insertions(+), 281 deletions(-) 22 Jonas Fonseca 3 Mina Naguib 1 Justin Lecher 1 Konrad Gräfe 1 Lukas Holecek

[ANNOUNCE] tig-2.3.0

2017-09-29 Thread Jonas Fonseca
128 files changed, 4356 insertions(+), 794 deletions(-) 1 Andreas Stieger 1 Dan Wendorf 1 Edgar Hipp 1 Greg Hewgill 35 Jonas Fonseca 2 Marc Aldorasi 1 Ramsay Jones 112 Roland Walker 11 Sven Wegener 1 kiryph -- Jonas Fonseca

[ANNOUNCE] tig-2.3.2

2017-12-18 Thread Jonas Fonseca
. INSTALL.adoc | 4 ++-- Makefile | 2 +- NEWS.adoc | 7 +++ src/display.c | 4 +++- tools/aspell.dict | 2 +- 5 files changed, 14 insertions(+), 5 deletions(-) Jonas Fonseca (2): Only check for busy loop when no views are updating tig-2.3.2 -- Jonas

[ANNOUNCE] tig-2.3.1

2017-12-14 Thread Jonas Fonseca
): Handle \n like \r (#758) David O'Trakoun (1): tig(1): Fix env var checked (#752) Jonas Fonseca (6): Fix formatting of the Windows install documentation Move loop updating views to separate method Fix #164: Add workaround to detect busy event loops Use initscr to ensure

[ANNOUNCE] tig-2.3.3

2018-01-30 Thread Jonas Fonseca
2 +- src/tig.c | 12 tools/aspell.dict | 2 +- 8 files changed, 27 insertions(+), 46 deletions(-) Alexander Droste (1): Revert "Handle \n like \r (#758)" (#769) Jonas Fonseca (3): Fix #164 by catching SIGHUP Change refs_tags type to size_t tig-

[ANNOUNCE] tig-2.4.0

2018-07-21 Thread Jonas Fonseca
`TIG_LS_REMOTE` not working with git-ls-remote(1). (#853, #854) Thanks to everyone who contributed (in alphabetical order): Björn Andersson, Brtwrst, Diego Pomares, Jonas Fonseca, Leo Arias, Maksim Odnoletkov, Max Odnoletkov, PaulChanHK, Pavel Roskin, Roland Walker, Ronan Jouchet, Thomas Koutcher, hwangcc23