Bug 453541 - .kateconfig kate-wildcard(...) does not allow path separators
Summary: .kateconfig kate-wildcard(...) does not allow path separators
Status: RESOLVED FIXED
Alias: None
Product: frameworks-ktexteditor
Classification: Frameworks and Libraries
Component: general (show other bugs)
Version: unspecified
Platform: Other Linux
: NOR wishlist
Target Milestone: ---
Assignee: KWrite Developers
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2022-05-08 13:15 UTC by Laura David Hurka
Modified: 2023-03-18 10:50 UTC (History)
3 users (show)

See Also:
Latest Commit:
Version Fixed In:
Sentry Crash Report:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Laura David Hurka 2022-05-08 13:15:53 UTC
SUMMARY
I am trying to configure Kate to follow the indentation style of a git repository which does not use my usual indentation style.
So I put a .kateconfig file in the parent directory, which uses the kate-wildcard(subdir/*) rule.
This does not work.

My current workaround is to use .git/info/exclude to allow .kateconfig in the git repository itself.

STEPS TO REPRODUCE
1. Add this to a .kateconfig file, assuming replace-tabs is on by default:

> kate-wildcard(subdir/*): replace-tabs off;

2. Open a file from the current directory.
3. Open a file from the subdir directory.

OBSERVED RESULT
Both files use replace-tabs on.
(In Kate status bar displayed as soft tabs.)

EXPECTED RESULT
The file in subdir directory uses replace-tabs off.
(In Kate status bar displayed as Indent/Tab)

SOFTWARE/OS VERSIONS
Operating System: KDE neon 5.24
KDE Plasma Version: 5.24.5
KDE Frameworks Version: 5.93.0
Qt Version: 5.15.3
Comment 1 Christoph Cullmann 2022-06-16 15:19:48 UTC
The code for this is in

void KTextEditor::DocumentPrivate::readVariableLine(const QString &t, bool onlyViewAndRenderer)

I would assume if one does a quick scan if a / is inside a wildcard and then does match on the path and not filename would be good enough?

Would you be willing to provide some merge request for this addition?
Comment 2 sevens 2023-02-08 17:02:39 UTC
I'd like to have this as well, especially if it'd also work for the "File extensions" part of a filetype (in the "Modes & Filetypes" settings), which I assume uses the same underlying code.

My use case would be, via either way, to add the `.git/config` file to the "INI Files" filetype to get some highlighting on it by default.
Comment 3 Bug Janitor Service 2023-03-11 17:50:17 UTC
A possibly relevant merge request was started @ https://invent.kde.org/frameworks/ktexteditor/-/merge_requests/500
Comment 5 Christoph Cullmann 2023-03-18 10:50:48 UTC
Git commit 8e2a05f6d9e8c76f4e3ceec0417602c989038981 by Christoph Cullmann.
Committed on 18/03/2023 at 09:38.
Pushed by cullmann into branch 'master'.

wildcard with path match in mode lines

M  +17   -0    autotests/src/katedocument_test.cpp
M  +9    -3    src/document/katedocument.cpp

https://invent.kde.org/frameworks/ktexteditor/commit/8e2a05f6d9e8c76f4e3ceec0417602c989038981