Hey guys. I have a couple of questions about how I could make snippets a bit smarter. So:
How to make indentation inheritable?
Right now, if I have a snippet that’s indented with spaces inserted in a tab-indented document, it will insert spaces. There is a way of making this a bit context aware that I miss?
Context aware
Which take us to the next question: on some projects i have the K&R style:
[code]
protected function foo()
{
}[/code]
On other projects, i have… non K&R style (i’m not sure how is called):
[code]
protected function foo(){
}[/code]
There is a way to automagically detect this kind of stuff (with a project settings, of course)?
That’s all, thanks!
