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/go/main.go | 18 ++++++++++++++++++ test/lsp/js/main.js | 13 +++++++++++++ test/lsp/tex/thing.tex | 7 +++++++ 3 files changed, 38 insertions(+) create mode 100644 test/lsp/js/main.js create mode 100644 test/lsp/tex/thing.tex (limited to 'test/lsp') diff --git a/test/lsp/go/main.go b/test/lsp/go/main.go index e69de29..d60bcd1 100644 --- a/test/lsp/go/main.go +++ b/test/lsp/go/main.go @@ -0,0 +1,18 @@ +package main; +import ( + "fmt" +) + +type X struct { + y int +} + +func main() { + _, err := fmt.Println("hello world"); + if err != nil { + return; + } + var a X + println(a.y); + +} 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(); diff --git a/test/lsp/tex/thing.tex b/test/lsp/tex/thing.tex new file mode 100644 index 0000000..337261e --- /dev/null +++ b/test/lsp/tex/thing.tex @@ -0,0 +1,7 @@ +\documentclass{article} +\newcommand{\Sin}[1]{\sin\left(#1\right)} +\begin{document} +$$x^2 + \pi = 5\pi - \sin\sqrt{100+12}$$ +$$\Sin{123}$$ + +\end{document} -- cgit v1.2.3