File tree Expand file tree Collapse file tree 6 files changed +14
-9
lines changed
src/lsp/handlers/hover-handler Expand file tree Collapse file tree 6 files changed +14
-9
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ All notable changes to the "bitloops-language" extension will be documented in t
4
4
5
5
Check [ Keep a Changelog] ( http://keepachangelog.com/ ) for recommendations on how to structure this file.
6
6
7
+ ### 0.4.1
8
+
9
+ Fixed bug of hover for multiple files workspace
10
+
7
11
### 0.4.0
8
12
9
13
Added hover provider for type of variables
Original file line number Diff line number Diff line change @@ -33,9 +33,9 @@ No known issues.
33
33
34
34
## What's New
35
35
36
- ### 0.4.0
36
+ ### 0.4.1
37
37
38
- Added hover provider for type of variables
38
+ Fixed bug of hover for multiple files workspace
39
39
40
40
---
41
41
Original file line number Diff line number Diff line change 9
9
},
10
10
"icon" : " assets/images/bitloops-language-logo-256x256.png" ,
11
11
"license" : " MIT" ,
12
- "version" : " 0.4.0 " ,
12
+ "version" : " 0.4.1 " ,
13
13
"scripts" : {
14
14
"vs:package" : " vsce package" ,
15
15
"vs:publish" : " vsce publish" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " bitloops-lsp-server" ,
3
3
"description" : " BitLoops Language Server" ,
4
- "version" : " 0.4.0 " ,
4
+ "version" : " 0.4.1 " ,
5
5
"publisher" : " Bitloops" ,
6
6
"license" : " MIT" ,
7
7
"engines" : {
10
10
"type" : " module" ,
11
11
"scripts" : {},
12
12
"dependencies" : {
13
- "@bitloops/bl-transpiler" : " ^0.6.8 " ,
13
+ "@bitloops/bl-transpiler" : " ^0.6.10 " ,
14
14
"debounce" : " ^1.2.1" ,
15
15
"fs" : " ^0.0.1-security" ,
16
16
"path" : " ^0.12.7" ,
Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ export const handleHover = (
20
20
const typeOfKeyword = testSymbolTable ?. findTypeOfKeyword ( word , {
21
21
line : position . line ,
22
22
column : position . character ,
23
+ fileId : params . textDocument . uri ,
23
24
} ) ;
24
25
let { type, isConst } = typeOfKeyword || { type : null , isConst : null } ;
25
26
if ( type ) {
Original file line number Diff line number Diff line change 2
2
# yarn lockfile v1
3
3
4
4
5
- " @bitloops/bl-transpiler@^0.6.8 " :
6
- version "0.6.8 "
7
- resolved "https://registry.yarnpkg.com/@bitloops/bl-transpiler/-/bl-transpiler-0.6.8 .tgz#c6c33356bbaa25c26fc898c1a4e2e32cd84f035f "
8
- integrity sha512-nNWTiDK7faX23i0BqEWt+66LbiY+u3waVZzStRQYpp6aVnnWgarspEBQg3vLjdj7wZfSfxfS0+TOIDRKACx0IQ ==
5
+ " @bitloops/bl-transpiler@^0.6.10 " :
6
+ version "0.6.10 "
7
+ resolved "https://registry.yarnpkg.com/@bitloops/bl-transpiler/-/bl-transpiler-0.6.10 .tgz#5acbfb349963b91bfe3628154f8285a6b3c9ff85 "
8
+ integrity sha512-MUrjH7lWVD42fZv1OQnSCwO97OZhm1io3GYv+1AZ2rgIT9MczJCASY4BtB/LqkB9zevReo3KFX0XF/5Yhpr5Hw ==
9
9
dependencies :
10
10
antlr4 "4.11.0"
11
11
lodash "^4.17.21"
You can’t perform that action at this time.
0 commit comments