Arnaud Le Blanc

Results 60 comments of Arnaud Le Blanc

One difference, though, is that in HAML/Ruby, `

Not yet :) This kind of things should be the responsibility of the target language (Twig or PHP). Translating this syntax to Twig/PHP is not obvious however, as there is...

Hi @tonglil, Could you provide an example (tag file + the file where the class is declared) ?

Hi, The plugin works like this: 1. Use the tagfile to find where the class is declared 2. If there are multiple declarations of the same symbol, prompt the user...

The plugin doesn't support group declarations currently. Contributions are welcomed :)

Out of curiosity, why sorting by length ? Personally I like to sort alphabetically because this reduces the chances of merge conflicts when many people work on the same file:...

Makes sense, thanks. Replacing `sort` by `!awk '{ print length, $0 }'|sort -n -s|cut -d' ' -f2-` near the end of phpns.vim should allow to sort by length. I would...