On Wed, Sep 23, 2020 at 11:45:55PM -0700, Junio C Hamano wrote: > Ryan Zoeller <rtzoeller@xxxxxxxxxxxxx> writes: > > > 1. Is this indentation-aware function identification useful, and > > generally worth pursuing further? > > I cannot shake the feeling off that this is being overly generous > and inviting for misidentification for languages whose usual > convention is not to nest and indent the definitions freely. > > IOW, why can't the "we allow leading whitespaces" a per-language > thing? IOW, why do we even need any new code---shouldn't it be just > the matter of defining xfuncname patterns for such a language with > nested and indented definitions? If I understand the problem correctly, I don't think a static regex can accomplish this, because you need context from the original line. E.g., consider something like this: void foo() { void bar() { ...code 1... } ...code 2... } If we change one of the lines of code, then we find the function header by walking backwards up the lines, evaluating a regex for each line. But for "code 2", how do we know to keep walking past bar() and up to foo()? Or more specifically, what is different when evaluating a change from "code 2" that is different than when we would evaluate "code 1"? If the only input to the question of "is this line a function header" is the regex from the config, then changes to either line of code must produce the same answer (either bar() if we allow leading whitespace, or foo() if we do not). So I think Ryan's proposal is to give that search an extra piece of information: the indentation of the original changed line. Which is enough to differentiate the two cases. If I understand the patch correctly, it is always picking the first line where indentation is lessened (and which matches the funcname pattern). That works out of the box with existing funcname patterns, which is nice. Though I wonder if there are cases where the funcname regex could use the information more flexibly (i.e., some marker in the regex that means "match less than this many spaces" or something). I do agree that this should not be on automatically for all languages. Some file formats may want to show a header that's at the same indentation as the change. Adding a diff.foo.funcnameIndentation config option would be one solution. But requiring the funcname pattern to make explicit use of the information is another (and would allow a format to match some things at one indentation level and some at another; but again, I'm hand-waving a bit on whether this level of flexibility is even useful). -Peff