https://bugs.kde.org/show_bug.cgi?id=517385

Waqar Ahmed <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]

--- Comment #1 from Waqar Ahmed <[email protected]> ---
How do you open your project? 
- Is it loaded via git? 
- Do you have a `.kateproject` file?
- Or do you just do `kate /path/to/dir`?

My guess is you are using the last option and you either have "git autoloading"
disabled in project settings or the directory is not a git directory. We don't
show hidden files by default when you open a project like that.

We do support hidden files or manually adding files using .kateproject file.
Example:

    {
        "name": "My project",
        "files": [
            { "git": 1 },
            {
                "list": [ "build/out.txt" ]
            },
            {
                "directory": "/home/waqar/kde/src/utilities/konsole",
                "hidden": true
            }
        ]
    }

The "files" list is where you can specify what to load. In the example above it
shows 3 different ways to load files:
1. load using git, basically `git ls-files`
2. load the specified files
3. load the given directory and show hidden files.

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to