mirror of https://github.com/buggins/dlangide.git
This commit is contained in:
parent
c518f55243
commit
2b633184b4
2
dub.json
2
dub.json
|
@ -12,7 +12,7 @@
|
|||
"stringImportPaths": ["views"],
|
||||
|
||||
"dependencies": {
|
||||
"dlangui": "==0.9.144",
|
||||
"dlangui": "==0.9.145",
|
||||
"dsymbol": "~>0.2.9",
|
||||
"dcd": "~>0.9.1"
|
||||
},
|
||||
|
|
|
@ -186,8 +186,16 @@ class DCDInterface : Thread {
|
|||
int end = pos;
|
||||
for (int i = 0; start > 0 && content[start - 1] != '\n' && i < 10; i++)
|
||||
start--;
|
||||
// correct utf8 codepoint bounds
|
||||
while(start + 1 < content.length && ((content[start] & 0xC0) == 0x80)) {
|
||||
start++;
|
||||
}
|
||||
for (int i = 0; end < content.length - 1 && content[end] != '\n' && i < 10; i++)
|
||||
end++;
|
||||
// correct utf8 codepoint bounds
|
||||
while(end + 1 < content.length && ((content[end] & 0xC0) == 0x80)) {
|
||||
end++;
|
||||
}
|
||||
return content[start .. pos] ~ "|" ~ content[pos .. end];
|
||||
}
|
||||
return "";
|
||||
|
|
|
@ -214,9 +214,10 @@ int caretPositionToByteOffset(string content, TextPosition caretPosition) {
|
|||
auto bytes = 0;
|
||||
foreach(c; content) {
|
||||
if(line == caretPosition.line) {
|
||||
if(pos == caretPosition.pos)
|
||||
if(pos >= caretPosition.pos)
|
||||
break;
|
||||
pos++;
|
||||
if ((c & 0xC0) != 0x80)
|
||||
pos++;
|
||||
} else if (line > caretPosition.line) {
|
||||
break;
|
||||
}
|
||||
|
@ -236,7 +237,7 @@ TextPosition byteOffsetToCaret(string content, int byteOffset) {
|
|||
int pos = 0;
|
||||
TextPosition textPos;
|
||||
foreach(c; content) {
|
||||
if(bytes == byteOffset) {
|
||||
if(bytes >= byteOffset) {
|
||||
//We all good.
|
||||
textPos.line = line;
|
||||
textPos.pos = pos;
|
||||
|
@ -249,7 +250,8 @@ TextPosition byteOffsetToCaret(string content, int byteOffset) {
|
|||
pos = 0;
|
||||
}
|
||||
else {
|
||||
pos++;
|
||||
if ((c & 0xC0) != 0x80)
|
||||
pos++;
|
||||
}
|
||||
}
|
||||
return textPos;
|
||||
|
|
|
@ -1 +1 @@
|
|||
v0.7.90
|
||||
v0.7.91
|
Loading…
Reference in New Issue