cppit / jucipp

A lightweight & cross-platform IDE supporting the most recent C++ standards. This project has moved to https://gitlab.com/cppit/jucipp.
https://gitlab.com/cppit/jucipp
MIT License
883 stars 98 forks source link

New Feature Request: code snippets. #348

Open traw opened 7 years ago

traw commented 7 years ago

code snippets for auto-completion, for example, when we type for then it should create for loop like given below.

for(int i = 0; i < $Var; i++) {
}

similar to yasnippet

eidheim commented 7 years ago

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)