1

After a recent upgrade on Kubuntu, Kate editor (v3.8.5) shows odd lines under the entire text of previously created simple text files. New files usually have only the first line underlined. Maybe if I knew what this is called, I'd be able to find something. It does the same in KWrite, so it could be something in whatever the two have in common. Highlighting is set to "None'. Here's what it looks like:

EDIT: Thanks, but that command doesn't seem to have any effect on this. This is KDE 4.8.5. In another example, the lines change a bit:

Another example

1 Answers1

3

I think what you are referring to here is a functionality called : Line Modification Indicator and you want to disable it.

If so, then this is the info :

  1. On KDE 4.8.0, there is no way to disable the line modification markers.

  2. In KDE >= 4.8.1, you can disable them by first closing Kate and then typing :

    kwriteconfig --file katerc --group "Kate View Defaults" --key "Line Modification" --type bool false
    

    To enable it again, close Kate and run:

    kwriteconfig --file katerc --group "Kate View Defaults" --key "Line Modification" --type bool true
    

    However, this only affects Kate; not KWrite, Kile, KDevelop or any other application using Kate Part. If you want to disable the markers for KWrite, Kile or KDevelop, use kwriterc, kilerc or kdeveloprc instead of katerc.

  3. In KDE >= 4.9, there is a graphical option in the editor configuration dialog in “Appearance > Borders > [x] Show line modification markers”.

To know more about it use this link.

Rui F Ribeiro
  • 56,709
  • 26
  • 150
  • 232