universal-ctags / citre

A superior code reading & auto-completion tool with pluggable backends.
GNU General Public License v3.0
326 stars 26 forks source link

C, enh: consider name after "struct", "union", or "enum" #84

Closed masatake closed 3 years ago

masatake commented 3 years ago

Consider following source file:

 1: struct point { float x; float y; };
 2: struct point point;

When pressing M-. at `|' in "struct rectangle { struct poi|nt a, b };", the tag for the line 1 should have higher priority than the tag for the line 2.

Signed-off-by: Masatake YAMATO yamato@redhat.com

AmaiKinono commented 3 years ago

Thanks!