bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#55632: [PATCH] Add new user option project-vc-find-tracked-only


From: Dmitry Gutov
Subject: bug#55632: [PATCH] Add new user option project-vc-find-tracked-only
Date: Wed, 1 Jun 2022 01:57:42 +0300
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.9.1

On 30.05.2022 13:08, jan.synacek@posteo.org wrote:
On 27.05.2022 15:55, Dmitry Gutov wrote:
On 25.05.2022 12:08, Jan Synáček wrote:
Currently, `project-find-file' always includes untracked files, which is
not always the desired behavior. This patch adds a new user option to
make only find the actual project files. By default, the variable is set
to nil, which means the behavior is not changed.

Sure, thanks. I'll review this soon-ish.

As long as you are aware of the user option project-vc-ignores (which
can be set directory-locally), and are certain that it doesn't satisfy
your needs.

Short answer:
Yes, I'm aware, but that option is something different. I don't want to add anything to ignore.

That's cool.

Long answer:
This mostly applies to the git and mercurial Emacs backends where the untracked files are used by default now. I think that presenting a "project" as pretty much everything in a folder (unless selectively ignored by using project-vc-ignores, for example)

^^^or included in .gitignore or .hgignore

only makes
sense if there is no underlying VCS, otherwise it's pretty much backwards. Because if there's already a repo that tracks files, the project should be, in my opinion, just the files in that repo that the underlying VCS sees as tracked. That is the default behavior in git and mercurial as far as I know (I don't use mercurial much, but use git a lot). The VCS also has a mechanism for including untracked files in case the user wants to see them in some operations, and ignoring additional files so that they don't count towards those untracked files. These two options should map 1 to 1 to Emacs custom variables, in my
opinion.
So, in summary, I would suggest to change the VC backends that support this to behave by default as the underlying VCS would behave and use custom variables to add additional tweaks for non-default stuff. Of course, that is out of scope for this patch.

Here's the reasoning I used:

- Almost everyone works with a VCS. Let's use Git in this example.
- You start working on a new feature to your project. You add a couple of new source files, write tests for them. Haven't checked them in yet. - To switch between the project files you probably use 'project-find-file'. You are likely to use that function (or 'project-find-regexp'), etc, during the initial phase of developing a new feature as well, and to jump between the newly created files, and their tests, etc. - That creates expectation that new files should be considered part of the project. And overall, false positive is usually better for this kind of thing than false negative (not finding something that you expect to be there).

Using .xyzignore files to list files that are junk/unimportant/etc is par for the course when using a VCS. Until a file is added there (or checked in), it's very visible in 'git status'. Having them omitted from the list of project files would make them much less "visible", contradicting Git's (or Mercurial or etc) behavior.





reply via email to

[Prev in Thread] Current Thread [Next in Thread]