We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed1376b commit 55d15a9Copy full SHA for 55d15a9
src/com/goide/dlv/DlvXValue.java
@@ -235,7 +235,7 @@ public void computeTypeSourcePosition(@NotNull XNavigatable navigatable) {
235
Project project = getProject();
236
if (project == null) return;
237
String dlvType = myVariable.type;
238
- String fqn = isPtr ? dlvType.replaceFirst("\\*struct ", "") : dlvType;
+ String fqn = isPtr ? dlvType.replaceFirst("\\*struct ", "") : dlvType.replaceFirst("struct ", "");
239
List<String> split = StringUtil.split(fqn, ".");
240
boolean noFqn = split.size() == 1;
241
if (split.size() == 2 || noFqn) {
0 commit comments