dan-t / rusty-tags

Create ctags/etags for a cargo project
Other
408 stars 32 forks source link

Add async support #79

Closed k-bx closed 3 years ago

k-bx commented 3 years ago

Closes #78

dan-t commented 3 years ago

The regex isn't quite right. By adding another capture group for async, the position of the capture group for the name of the function has changed, and therefore the \6 at the end of the regex has to be changed into a \7.

k-bx commented 3 years ago

Updated, thanks for pointing it out.

dan-t commented 3 years ago

Thanks!