SUMMARY I tried to use Kate for editing my Arch packages Git repository: https://github.com/ItachiSan/linux_packaging When opening the relevant folder in Kate, the files excluded from Git via .gitignore are completely missing in the Project view. I would expect them to be colored as hidden, however I have no way to access them if not by activating the File System plugin, which is subpar. STEPS TO REPRODUCE 1. Open a cloned Git repository OBSERVED RESULT The files ignored via .gitignore are completely hidden in the UI. There is no setting nor toggle for enabling their visualization. EXPECTED RESULT Make the files visible, with a slight different color that shows they are gitignored. Allow hiding them via a toggle or a plugin settings. SOFTWARE/OS VERSIONS Linux/KDE Plasma: ArchLinux, with kernel 6.47-arch1-1 (available in About System) KDE Plasma Version: 5.27.6 KDE Frameworks Version: 5.108.0 Qt Version: 5.15.10 ADDITIONAL INFORMATION
You need to disable "Auto load -> git" in project settings and then load a folder. Alternatively put a `.kateproject` file a the root of the folder with following content: ``` { "name": "project name", "files": [ { "git": 0 } ], "exclude_patterns": [ "regex to exclude" ], } ``` Check the kate docs for more info about .kateproject file or see the ref file at `/usr/share/kateproject/kateproject.example`
Hi Waqar, (In reply to Waqar Ahmed from comment #1) > You need to disable "Auto load -> git" in project settings and then load a > folder. > Does this limit any built-in Git functionality in Kate?
> Does this limit any built-in Git functionality in Kate? No. It might be a bit slower to load the directory though but won't be noticeable for small-medium projects.
I would recommend adding such information somewhere as it is quite confusing that disabling the Git functionality does not actually disable it :)