From 94e9a77e58ee3dff92d73ec3741f19b0eb141a3d Mon Sep 17 00:00:00 2001 From: Alex Carney Date: Sun, 17 Mar 2024 18:57:14 +0000 Subject: [PATCH] chore: add README --- examples/servers/README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 examples/servers/README.md diff --git a/examples/servers/README.md b/examples/servers/README.md new file mode 100644 index 00000000..c6baea41 --- /dev/null +++ b/examples/servers/README.md @@ -0,0 +1,12 @@ +# Example Servers + +| Filename | Works With | Description | +|-|-|-| +| `code_actions.py` | `sums.txt` | Evaluate sums via a code action | +| `code_lens.py` | `sums.txt` | Evaluate sums via a code lens | +| `colors.py` | `colors.txt` | Provides a visual representation of color values and even a color picker in supported clients | +| `goto.py` | `code.txt` | Implements the various "Goto X" requests in the specification | +| `hover.py` | `dates.txt` | Opens a popup showing the date underneath the cursor in multiple formats | +| `inlay_hints.py` | `sums.txt` | Use inlay hints to show the binary representation of numbers in the file | +| `publish_diagnostics.py` | `sums.txt` | Use "push-model" diagnostics to highlight missing or incorrect answers | +| `pull_diagnostics.py` | `sums.txt` | Use "pull-model" diagnostics to highlight missing or incorrect answers |