summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorbscan <10503608+bscan@users.noreply.github.com>2023-01-02 20:23:34 -0500
committerbscan <10503608+bscan@users.noreply.github.com>2023-01-02 20:23:34 -0500
commit7bc374f64ab837a712607368f68645940abb7971 (patch)
treeffa8602fda9a41e720ccc8918d7359968a12a83d /README.md
parenta7b3aaba53820a671a534fdf0b6d6d3c474b2fcc (diff)
downloadPerlNavigator-7bc374f64ab837a712607368f68645940abb7971.zip
Adding instructions for the Kate editor
Diffstat (limited to 'README.md')
-rw-r--r--README.md19
1 files changed, 19 insertions, 0 deletions
diff --git a/README.md b/README.md
index c556aad..63c50e2 100644
--- a/README.md
+++ b/README.md
@@ -155,6 +155,25 @@ require'lspconfig'.perlnavigator.setup{
}
```
+### Kate
+For the Kate editor, you'll need to `Configure Kate -> LSP Client` and add a config to the `User Server Settings`. The following is an example config (this example uses the release binaries).
+```json
+{
+ "servers":{
+ "perl": {
+ "command": ["d:\\Applications\\perlnavigator.exe", "--stdio"],
+ "url": "https://github.com/bscan/PerlNavigator",
+ "highlightingModeRegex": "^Perl$",
+ "settings": {
+ "perlnavigator": {
+ "perlPath": "perl",
+ }
+ }
+ }
+ }
+}
+```
+
## Raku / Other Projects
For those interested in a Raku language server, check out: https://github.com/bscan/RakuNavigator