Skip to content

Commit 5ff2dfe

Browse files
committed
fix: add LSP Servers section to website features
1 parent f90934d commit 5ff2dfe

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

docs/site/src/components/WhatsInside.tsx

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ import {
44
Plug2,
55
ShieldCheck,
66
Container,
7-
Sparkles
7+
Sparkles,
8+
Code2
89
} from "lucide-react";
910
import { useInView } from "@/hooks/use-in-view";
1011

@@ -76,6 +77,16 @@ const insideItems: InsideItem[] = [
7677
"Invoked automatically when relevant",
7778
],
7879
},
80+
{
81+
icon: Code2,
82+
title: "LSP Servers",
83+
items: [
84+
"Python (Pyright) - Type info, definitions, references",
85+
"TypeScript - Full language server support",
86+
"Go to definition, find references, hover info",
87+
"Call hierarchy and incoming/outgoing calls",
88+
],
89+
},
7990
];
8091

8192
const SectionHeader = ({ title, subtitle }: { title: string; subtitle?: string }) => (

0 commit comments

Comments
 (0)