Using the Projects Plugin in Kate
by Dominik • November 2, 2012 • Events, Users • 11 Comments
Introducing the Projects Plugin for KDE SC 4.10
The basic idea of the Projects plugin is to have a structured list of files belonging to the project with the following properties:
- provide a structured view of the files
- make it easy and very fast to open and switch projects
- support search & replace for a project
- provide simple auto completion
- make it simple to quickly open files in the project
- support for building the project
We’re going to address all these points now.
1. Provide a Structured View of the Files
Once the “Projects Plugin” is loaded in the Kate config page, a sidebar appears that lists all projects as well as the projects files as follows:
As you can see, the currently active project is “Kate”, and it’s contents is listed in the tree view. Clicking on files in the tree view opens the file in the editor. Further, a context menu is provided with which you can open files with other applications, such as a .ui file with Qt Designer.
2. Switching Projects
The idea is that you never have to open a project manually, this is even not supported at all. Hence, what happens if you open a file, the Project Plugin quickly scans the folder and its parent folders for a .kateproject file. If found, the project is automatically loaded. Very simple and efficient.
Further, if you open another document in Kate, that belongs to another project, the Project plugin automatically switches the current project. So intuitively, always the correct project is active. Of course, you can also switch the currently active project through the combo box.
3. Search & Replace in Projects
Kate has a “Search & Replace” plugin that shows up in the bottom sidebar. If a project is loaded and you open the “Search & Replace” sidebar, it automatically switches to the mode to search & replace in the current project, which usually is exactly what you want:
4. Simple Auto Completion
With the knowledge of all files belonging to a project, the Project plugin provides simple auto completion facilities based on ctags. If a project is initially opened, ctags parses all project files in a background thread and saves the ctags information to /tmp. This file then is used to populate the auto completion popup in Kate. In contrast, without this auto completion, Kate was only capable of showing auto completion items based on the words in the current file. So the auto completion provided by the Project plugin is much more powerful.
If ctags is missing, a passive popup warns you about this. It is also noteworthy, that the ctags file in /tmp is cleaned up when Kate exists, so you the plugin does not pollute any folder with unwanted files.
5. Quick Opening Files
As clicking on files in the tree view is not the fastest way to open a file, Kate provides a built-in quick open mechanism you can activate with CTRL+ALT+o. What you the get is a list like this:
You can filter by typing parts of the file name you are looking for, and you can also navigate with the arrow keys and page up/down through the list. Hitting enter activates the selected file, while escape hides the quick open view again.
Further, the quick open remembers the previous file. So when you change to the quick open view the previously activated file is automatically selected and you just need to hit enter, which comes very handy at times.
6. Support for Building the Project
Another feature is to have support in the Build plugin, so that it automatically is configured correctly.
Creating Projects
Currently, creating a project requires some manual work, although it is really not much. You just have to create a .kateproject file in the root folder of the project. For instance, the Kate .kateproject file looks like this:
{
"name": "Kate"
, "files": [ { "git": 1 } ]
}
As you may have noted, this is JSON syntax (because there is a nice jason library for Qt to parse this). The project name is “Kate”, and the files contained in should be read from git.
What’s also supported instead of “git” is subversion through “svn” (btw, it would be nice to have support for other version control systems as well *hint hint*). If you do not want to read from a version control system, you can tell it to recursively load files from directories as follows:
{
"name": "Kate"
, "files": [ { "directory": "kate", "filters": ["*.cpp", "*.h", "*.ui", "CMakeLists.txt", "Find*.cmake"], "recursive": 1 } ]
}
Here, subfolders and filters define what’s part of the project. You can also mix version control and files based on filters.
If you want to add support for the Build plugin, you could write a .kateconfig like this:
{
"name": "Kate"
, "files": [ { "git": 1 } ]
, "build": {
"directory": "build"
, "build": "make all"
, "clean": "make clean"
, "install": "make install"
}
}
Hopefully, these examples help you to setup your own project.
Kudos
Kudos go to Christoph, he implemented all the features in here. The Project plugin will be shipped with KDE SC 4.10, and you should really try it out




So, no kdevelop simple import?
What do you mean by that? Once a .kateproject file is created, you have a simple project management and a lightweight text editor. Kate cannot be compared to KDevelop. If you want KDevelop features, use KDevelop
Per-project coding style support would be a killer feature for Kate. It’s now very tedious to edit multiple projects at once when they have different coding styles.
We already have solutions to this: Use modelines (=document variables), then you always get exactly what you want… That simple: http://docs.kde.org/stable/en/kde-baseapps/kate/config-variables.html
Besides that, you can also use a .kateconfig file, which maybe also would solve your issue…
Besides, this plugin is a Kate application plugin, while all the configuration comes from the Editor Part. Hence, both parts are completely separated for a technical reason. Thus, you have this editor part also in KDevelop, Kile and other applications.
Thanks guys, this was a very sought after feature in Kate by me recently when editing the material files for a game and some quick source modifications, feels nice you can read minds!
Looks great, I need it !! Maybe out of the scope of the project plugin but one thing I’d really love to have when I manage a project with a lot of opened files is something like the current tabbar plugin, but it should only show a tab for opened file tagged as “favorite” (with a shortcut or something like that). With this, you can quickly go to files that you often use and don’t bother to clean up your opened files all the time
So, now that Kate is getting close in functionality, will KWrite get closer to the good-old Kate? Just kiding
You are doing and amazing job!!!
This is just what I needed. KDevelop is a bit overkill for what I do, and my Documents list was getting too crowded
Thanks
This plugin is great, exactly what I missed from kate.
But, some questions arise:
Are sessions and projects meant to work together or fulfil they a different need?
I currently use the build and gdb plugin, where I require (especially for gdb) multiple targets. Will I be able to configure this in the future in the project plugin or will they remain separated?
Projects are for a different need: Quick file access and fast switching.
Sessions: specific plugin configuration (including the Projects plugin), remember open documents and other configuration.
With respect to the gdb-plugin: please open a bug report, then Kåre will read it.
Does it work with remote sftp:// files?