From a3aa014085eeeb3946ccf3e1e5069b41cf88f958 Mon Sep 17 00:00:00 2001 From: Basile Burg Date: Fri, 16 Oct 2015 16:45:40 +0200 Subject: [PATCH] fix, work around a DCD bug, asterisk returned as completion kind --- src/ce_dcd.pas | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ce_dcd.pas b/src/ce_dcd.pas index 837ba8b0..0453b241 100644 --- a/src/ce_dcd.pas +++ b/src/ce_dcd.pas @@ -326,6 +326,8 @@ begin 'l': item += ' (alias) '; 't': item += ' (template) '; 'T': item += ' (mixin) '; + // see https://github.com/Hackerpilot/dsymbol/blob/master/src/dsymbol/symbol.d#L47 + '*', '?': continue; // internal DCD stuff, said not to happen but actually it does (e.g invoke DCD after $i) end; aList.Add(item); end;