fix formatting

This commit is contained in:
Christoph Cullmann 2019-05-13 00:01:42 +02:00
parent f53f236c45
commit c000bea380

View file

@ -1,6 +1,6 @@
--- ---
title: "Kate LSP Client Progress" title: "Kate LSP Client Progress"
date: 2019-05-12T23:54:00+02:00 date: 2019-05-13T00:02:00+02:00
draft: false draft: false
categories: [kde, kate, development] categories: [kde, kate, development]
tags: [kde, kate] tags: [kde, kate]
@ -15,9 +15,7 @@ For example, if you use the CMake Kate project generator and you compile Kate fr
If you press ALT-1 over some identifier, you will get some debug output on the console about found links, like below: If you press ALT-1 over some identifier, you will get some debug output on the console about found links, like below:
{{< highlight bash >}} > qtc.languageclient.parse: content: "{\"id\":\"{812e04c6-2bca-42e3-a632-d616fdc2f7d4}\",\"jsonrpc\":\"2.0\",\"result\":[{\"range\":{\"end\":{\"character\":20,\"line\":67},\"start\":{\"character\":6,\"line\":67}},\"uri\":\"file:///local/cullmann/kde/src/kate/kate/katemainwindow.h\"}]}"
qtc.languageclient.parse: content: "{\"id\":\"{812e04c6-2bca-42e3-a632-d616fdc2f7d4}\",\"jsonrpc\":\"2.0\",\"result\":[{\"range\":{\"end\":{\"character\":20,\"line\":67},\"start\":{\"character\":6,\"line\":67}},\"uri\":\"file:///local/cullmann/kde/src/kate/kate/katemainwindow.h\"}]}"
{{< / highlight >}}
The current ALT-1 handling is a big hack, as then one just adds the current document and triggers the GotoDefinitionRequest. The current ALT-1 handling is a big hack, as then one just adds the current document and triggers the GotoDefinitionRequest.
A proper implementation tracks the opened/closed documented of the editor. A proper implementation tracks the opened/closed documented of the editor.