I import vectorfrom stdusing
#include <vector>
using std::vector;
I do this on purpose, so I don't need namespace vectors to increase readability. So it’s extremely annoying that a package C++in Sublime is autocomplete
std::vector<char> v;
Instead of just
vector
How to disable this without disabling all autocomplete or losing support for C ++?
source
share