Skip to content

Commit

Permalink
Update docs, release 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
psacawa committed Feb 17, 2024
1 parent 30cf97a commit bf7c0d8
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 1 deletion.
35 changes: 35 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,38 @@
# systemd-language-server

Language server for systemd unit files.

## Supported Features

### `textDocument/completion`

Completion for

- unit file directives
- unit file sections
<!-- - values of some directives -->

### `textDocument/hover`

Documentation for directives supplied on hovering.

## Installation

```
pip install systemd-language-server
```

## Integrations

### coc.nvim

In `coc-settings.json`, under `.languageserver`:

```json
...
"systemd-language-server": {
"command": "systemd-language-server",
"filetypes": ["systemd"]
}
...
```
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ requires-python = ">=3.8"

[tool.poetry]
name = 'systemd-language-server'
version = '0.2.1'
version = '0.3.0'
description = 'Language server for systemd unit files'
authors = ["Paweł Sacawa <[email protected]>"]
readme = "README.md"
Expand Down

0 comments on commit bf7c0d8

Please sign in to comment.