Open traw opened 7 years ago
code snippets for auto-completion, for example, when we type for then it should create for loop like given below.
for
for(int i = 0; i < $Var; i++) { }
similar to yasnippet
I think @zalox is working on snippets, although one would have to be careful here. In the case above, for each would be better, and in case one would need indices, this would be better:
for(size_t i = 0; i < $var; ++i)
code snippets for auto-completion, for example, when we type
for
then it should create for loop like given below.similar to yasnippet