File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -58,11 +58,11 @@ defmodule NextLS.ElixirExtension do
58
58
% GenLSP.Structures.Range {
59
59
start: % GenLSP.Structures.Position {
60
60
line: start_line - 1 ,
61
- character: start_col
61
+ character: start_col - 1
62
62
} ,
63
63
end: % GenLSP.Structures.Position {
64
64
line: end_line - 1 ,
65
- character: end_col
65
+ character: end_col - 1
66
66
}
67
67
}
68
68
end
@@ -71,7 +71,7 @@ defmodule NextLS.ElixirExtension do
71
71
% GenLSP.Structures.Range {
72
72
start: % GenLSP.Structures.Position {
73
73
line: line - 1 ,
74
- character: col
74
+ character: col - 1
75
75
} ,
76
76
end: % GenLSP.Structures.Position {
77
77
line: line - 1 ,
Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ defmodule NextLS.ElixirExtensionTest do
107
107
range: % GenLSP.Structures.Range {
108
108
start: % GenLSP.Structures.Position {
109
109
line: 3 ,
110
- character: 7
110
+ character: 6
111
111
} ,
112
112
end: % GenLSP.Structures.Position {
113
113
line: 3 ,
@@ -124,11 +124,11 @@ defmodule NextLS.ElixirExtensionTest do
124
124
range: % GenLSP.Structures.Range {
125
125
start: % GenLSP.Structures.Position {
126
126
line: 3 ,
127
- character: 7
127
+ character: 6
128
128
} ,
129
129
end: % GenLSP.Structures.Position {
130
130
line: 7 ,
131
- character: 3
131
+ character: 2
132
132
}
133
133
}
134
134
}
You can’t perform that action at this time.
0 commit comments