From 949ede76ca4e91570ab6494953c237c004929688 Mon Sep 17 00:00:00 2001 From: acereca Date: Sun, 16 Apr 2023 15:16:52 +0200 Subject: [PATCH] add more info for currently supported features --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index 114be03..0951a84 100644 --- a/README.md +++ b/README.md @@ -9,3 +9,15 @@ a language server for [Cadence SKILL](https://en.wikipedia.org/wiki/Cadence_SKIL ### Variable completion ![](https://git.acereca.net/acereca/srls/raw/branch/master/assets/variable_completion.GIF) + +variables assigned to using the infix `=` operator can be completed anywhere + +#### Custom docstrings + +```lisp +;;; this is a custom docstring supported for variable definitions +variable = "some content" +``` + +this allows for the docstring to show during completion +