Golevka / emacs-clang-complete-async

An emacs plugin to complete C and C++ code using libclang
360 stars 71 forks source link

Add C++ template argument expansion #73

Closed tsukimizake closed 1 year ago

tsukimizake commented 10 years ago

It supports template class such as

std::vector<${class _Tp}>

and template function such as

std::bitset<42> bs;
bs.to_string<${class _CharT}, ${class _Traits}, ${class _Allocator}>()

It's working well, but there should be some bug beyond my expect. If something is wrong with it, please tell me. I'll fix it.