From e2aad67eedd07cff24a51faf31b8c6984a23d777 Mon Sep 17 00:00:00 2001 From: pommicket Date: Sat, 7 Jan 2023 12:42:34 -0500 Subject: fix texlab go-to-definition actually its their fault for ignoring the lack of capability --- test/lsp/js/main.js | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 test/lsp/js/main.js (limited to 'test/lsp/js') diff --git a/test/lsp/js/main.js b/test/lsp/js/main.js new file mode 100644 index 0000000..ccf94ed --- /dev/null +++ b/test/lsp/js/main.js @@ -0,0 +1,13 @@ +/** this is my favorit funciton */ +function funciton() { + var xYz = 123; + xYz += 555; + console.log(xYz); +} + +function main() { + funciton(); +} + +main(); +funciton(); -- cgit v1.2.3