aboutsummaryrefslogtreecommitdiffstats
path: root/python/ghdl-ls
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2020-03-09 18:19:38 +0100
committerTristan Gingold <tgingold@free.fr>2020-03-09 18:19:38 +0100
commit85627172aea75430ccd809ea0a13f3c4ed3ea8a0 (patch)
tree39a78d01afe31d9450ff316eaa9b923b91091af6 /python/ghdl-ls
parent23935c8f2849fcb36bd69bbcadd4a0660912663f (diff)
downloadghdl-85627172aea75430ccd809ea0a13f3c4ed3ea8a0.tar.gz
ghdl-85627172aea75430ccd809ea0a13f3c4ed3ea8a0.tar.bz2
ghdl-85627172aea75430ccd809ea0a13f3c4ed3ea8a0.zip
Import vhdl_langserver from ghdl-language-server
Diffstat (limited to 'python/ghdl-ls')
-rwxr-xr-xpython/ghdl-ls4
1 files changed, 4 insertions, 0 deletions
diff --git a/python/ghdl-ls b/python/ghdl-ls
new file mode 100755
index 000000000..2fa44dcaa
--- /dev/null
+++ b/python/ghdl-ls
@@ -0,0 +1,4 @@
+#! /usr/bin/env python3
+import vhdl_langserver.main as main
+
+main.main()
a> 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166