Skip to content

Commit 4682567

Browse files
authored
Workspace Wiki should be Cursor compatible now (#17)
Reduce VSCode engine requirements to v1.99.3 to make the Workspace Wiki extension compatible with Cursor
1 parent 66c50c7 commit 4682567

29 files changed

Lines changed: 231 additions & 155 deletions

citation.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ keywords:
2727
license: 'GPL-3.0'
2828
date-released: '2025-10-18'
2929
version: 'v1.0.2'
30-
commit: 75f096c5e46cb70e80bf64c3515493a9b37a783b
30+
commit: 75f096c5e46cb70e80bf64c3515493a9b37a783b
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
// test-antlr.g4: Simple ANTLR 4 grammar for Workspace Wiki file type testing
2+
grammar Hello;
3+
4+
r : 'hello' ID ;
5+
ID : [a-zA-Z]+ ;
6+
WS : [ \t\r\n]+ -> skip ;
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
cff-version: 1.2.0
2+
authors:
3+
- family-names: Doe
4+
given-names: Jane
5+
title: "Test CFF File for Workspace Wiki"
6+
message: "If you use this file, please cite it as below."
7+
year: 2025

example/file-types-test/test-cs.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
// test-cs.cs
22
// Export: This file is for testing C# exclusion in Workspace Wiki
33
using System;
4+
45
class Program
56
{
67
static void Main()
78
{
89
Console.WriteLine("Hello, World!");
910
}
10-
}
11+
}
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Test data,2
2+
3,4

example/file-types-test/test-js.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@
33
function helloWorld() {
44
console.log('Hello, World!');
55
}
6+
67
helloWorld();
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"test": "This is a JSON file for Workspace Wiki file type testing.",
3+
"value": 42,
4+
"success": true
5+
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
// test-jsx.jsx
2+
// Basic React component for Workspace Wiki file type testing
3+
4+
function HelloWorld() {
5+
return <h1>Hello, JSX World!</h1>;
6+
}
7+
8+
export default HelloWorld;

example/file-types-test/test-php.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ function helloWorld() {
55
echo 'Hello, World!';
66
}
77
helloWorld();
8-
?>
8+
?>
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#!/usr/bin/env python3
2+
3+
"""test-python-cgi.cgi: Simple Python CGI script for Workspace Wiki file type testing."""
4+
5+
print("Content-Type: text/html\n")
6+
print("<html><body><h1>Hello from Python CGI!</h1></body></html>")

0 commit comments

Comments
 (0)