├── README.md ├── plugin ├── sfJmp2controllerFromRouting.vim ├── sfJmp2template.vim └── symfonycomplete.vim └── snippets └── php ├── @a.snippet ├── @c.snippet ├── @m.snippet ├── @o.snippet ├── @oc.snippet ├── @oe.snippet ├── @og.snippet ├── @oi.snippet ├── @olife.snippet ├── @ot.snippet ├── @pc.snippet ├── @r.snippet ├── @rn.snippet ├── @s.snippet ├── @t.snippet ├── am.snippet ├── birthdaytype.snippet ├── buttontype.snippet ├── checkboxtype.snippet ├── choicetype.snippet ├── collectiontype.snippet ├── controller.snippet ├── countrytype.snippet ├── currencytype.snippet ├── d.snippet ├── datetimetype.snippet ├── datetype.snippet ├── dump.snippet ├── em.snippet ├── emailtype.snippet ├── entitytype.snippet ├── filetype.snippet ├── form.snippet ├── formtype.snippet ├── get.snippet ├── hiddentype.snippet ├── integertype.snippet ├── languagetype.snippet ├── localetype.snippet ├── moneytype.snippet ├── notfound.snippet ├── numbertype.snippet ├── passwordtype.snippet ├── percenttype.snippet ├── radiotype.snippet ├── rangetype.snippet ├── redirect.snippet ├── repeatedtype.snippet ├── repository.snippet ├── resettype.snippet ├── searchtype.snippet ├── submittype.snippet ├── textareatype.snippet ├── texttype.snippet ├── timetype.snippet ├── timezonetype.snippet ├── urltype.snippet ├── usearray.snippet ├── useassert.snippet ├── usecache.snippet ├── usecontroller.snippet ├── usefile.snippet ├── usejsonresponse.snippet ├── usemethod.snippet ├── usenotfound.snippet ├── useorm.snippet ├── useparamconverter.snippet ├── userequest.snippet ├── useresponse.snippet ├── useroute.snippet ├── usesecurity.snippet └── usetemplate.snippet /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbbr/vim-symfony/HEAD/README.md -------------------------------------------------------------------------------- /plugin/sfJmp2controllerFromRouting.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbbr/vim-symfony/HEAD/plugin/sfJmp2controllerFromRouting.vim -------------------------------------------------------------------------------- /plugin/sfJmp2template.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbbr/vim-symfony/HEAD/plugin/sfJmp2template.vim -------------------------------------------------------------------------------- /plugin/symfonycomplete.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbbr/vim-symfony/HEAD/plugin/symfonycomplete.vim -------------------------------------------------------------------------------- /snippets/php/@a.snippet: -------------------------------------------------------------------------------- 1 | @Assert\${1} 2 | -------------------------------------------------------------------------------- /snippets/php/@c.snippet: -------------------------------------------------------------------------------- 1 | @Cache(${1}) 2 | -------------------------------------------------------------------------------- /snippets/php/@m.snippet: -------------------------------------------------------------------------------- 1 | @Method("${1:POST}")${2} 2 | -------------------------------------------------------------------------------- /snippets/php/@o.snippet: -------------------------------------------------------------------------------- 1 | @ORM\${1} 2 | -------------------------------------------------------------------------------- /snippets/php/@oc.snippet: -------------------------------------------------------------------------------- 1 | @ORM\Column(${1})${2} 2 | -------------------------------------------------------------------------------- /snippets/php/@oe.snippet: -------------------------------------------------------------------------------- 1 | @ORM\Entity(repositoryClass="${1}")${2} 2 | -------------------------------------------------------------------------------- /snippets/php/@og.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbbr/vim-symfony/HEAD/snippets/php/@og.snippet -------------------------------------------------------------------------------- /snippets/php/@oi.snippet: -------------------------------------------------------------------------------- 1 | @ORM\Id${1} 2 | -------------------------------------------------------------------------------- /snippets/php/@olife.snippet: -------------------------------------------------------------------------------- 1 | @ORM\HasLifecycleCallbacks()${1} 2 | -------------------------------------------------------------------------------- /snippets/php/@ot.snippet: -------------------------------------------------------------------------------- 1 | @ORM\Table(name="${1}")${2} 2 | -------------------------------------------------------------------------------- /snippets/php/@pc.snippet: -------------------------------------------------------------------------------- 1 | @ParamConverter("${1}")${2} 2 | -------------------------------------------------------------------------------- /snippets/php/@r.snippet: -------------------------------------------------------------------------------- 1 | @Route("${1}")${2} 2 | -------------------------------------------------------------------------------- /snippets/php/@rn.snippet: -------------------------------------------------------------------------------- 1 | @Route("${1}", name="${2}")${3} 2 | -------------------------------------------------------------------------------- /snippets/php/@s.snippet: -------------------------------------------------------------------------------- 1 | @Security("is_granted('${1}')")${2} 2 | -------------------------------------------------------------------------------- /snippets/php/@t.snippet: -------------------------------------------------------------------------------- 1 | @Template()${1} 2 | -------------------------------------------------------------------------------- /snippets/php/am.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbbr/vim-symfony/HEAD/snippets/php/am.snippet -------------------------------------------------------------------------------- /snippets/php/birthdaytype.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbbr/vim-symfony/HEAD/snippets/php/birthdaytype.snippet -------------------------------------------------------------------------------- /snippets/php/buttontype.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbbr/vim-symfony/HEAD/snippets/php/buttontype.snippet -------------------------------------------------------------------------------- /snippets/php/checkboxtype.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbbr/vim-symfony/HEAD/snippets/php/checkboxtype.snippet -------------------------------------------------------------------------------- /snippets/php/choicetype.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbbr/vim-symfony/HEAD/snippets/php/choicetype.snippet -------------------------------------------------------------------------------- /snippets/php/collectiontype.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbbr/vim-symfony/HEAD/snippets/php/collectiontype.snippet -------------------------------------------------------------------------------- /snippets/php/controller.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbbr/vim-symfony/HEAD/snippets/php/controller.snippet -------------------------------------------------------------------------------- /snippets/php/countrytype.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbbr/vim-symfony/HEAD/snippets/php/countrytype.snippet -------------------------------------------------------------------------------- /snippets/php/currencytype.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbbr/vim-symfony/HEAD/snippets/php/currencytype.snippet -------------------------------------------------------------------------------- /snippets/php/d.snippet: -------------------------------------------------------------------------------- 1 | dump(${1});${2} 2 | -------------------------------------------------------------------------------- /snippets/php/datetimetype.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbbr/vim-symfony/HEAD/snippets/php/datetimetype.snippet -------------------------------------------------------------------------------- /snippets/php/datetype.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbbr/vim-symfony/HEAD/snippets/php/datetype.snippet -------------------------------------------------------------------------------- /snippets/php/dump.snippet: -------------------------------------------------------------------------------- 1 | dump(${1});${2} 2 | -------------------------------------------------------------------------------- /snippets/php/em.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbbr/vim-symfony/HEAD/snippets/php/em.snippet -------------------------------------------------------------------------------- /snippets/php/emailtype.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbbr/vim-symfony/HEAD/snippets/php/emailtype.snippet -------------------------------------------------------------------------------- /snippets/php/entitytype.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbbr/vim-symfony/HEAD/snippets/php/entitytype.snippet -------------------------------------------------------------------------------- /snippets/php/filetype.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbbr/vim-symfony/HEAD/snippets/php/filetype.snippet -------------------------------------------------------------------------------- /snippets/php/form.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbbr/vim-symfony/HEAD/snippets/php/form.snippet -------------------------------------------------------------------------------- /snippets/php/formtype.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbbr/vim-symfony/HEAD/snippets/php/formtype.snippet -------------------------------------------------------------------------------- /snippets/php/get.snippet: -------------------------------------------------------------------------------- 1 | $this->get('${1}')${2} 2 | -------------------------------------------------------------------------------- /snippets/php/hiddentype.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbbr/vim-symfony/HEAD/snippets/php/hiddentype.snippet -------------------------------------------------------------------------------- /snippets/php/integertype.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbbr/vim-symfony/HEAD/snippets/php/integertype.snippet -------------------------------------------------------------------------------- /snippets/php/languagetype.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbbr/vim-symfony/HEAD/snippets/php/languagetype.snippet -------------------------------------------------------------------------------- /snippets/php/localetype.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbbr/vim-symfony/HEAD/snippets/php/localetype.snippet -------------------------------------------------------------------------------- /snippets/php/moneytype.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbbr/vim-symfony/HEAD/snippets/php/moneytype.snippet -------------------------------------------------------------------------------- /snippets/php/notfound.snippet: -------------------------------------------------------------------------------- 1 | throw $this->createNotFoundException('${1}');${2} 2 | -------------------------------------------------------------------------------- /snippets/php/numbertype.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbbr/vim-symfony/HEAD/snippets/php/numbertype.snippet -------------------------------------------------------------------------------- /snippets/php/passwordtype.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbbr/vim-symfony/HEAD/snippets/php/passwordtype.snippet -------------------------------------------------------------------------------- /snippets/php/percenttype.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbbr/vim-symfony/HEAD/snippets/php/percenttype.snippet -------------------------------------------------------------------------------- /snippets/php/radiotype.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbbr/vim-symfony/HEAD/snippets/php/radiotype.snippet -------------------------------------------------------------------------------- /snippets/php/rangetype.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbbr/vim-symfony/HEAD/snippets/php/rangetype.snippet -------------------------------------------------------------------------------- /snippets/php/redirect.snippet: -------------------------------------------------------------------------------- 1 | $this->redirectToRoute('${1}'); 2 | -------------------------------------------------------------------------------- /snippets/php/repeatedtype.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbbr/vim-symfony/HEAD/snippets/php/repeatedtype.snippet -------------------------------------------------------------------------------- /snippets/php/repository.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbbr/vim-symfony/HEAD/snippets/php/repository.snippet -------------------------------------------------------------------------------- /snippets/php/resettype.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbbr/vim-symfony/HEAD/snippets/php/resettype.snippet -------------------------------------------------------------------------------- /snippets/php/searchtype.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbbr/vim-symfony/HEAD/snippets/php/searchtype.snippet -------------------------------------------------------------------------------- /snippets/php/submittype.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbbr/vim-symfony/HEAD/snippets/php/submittype.snippet -------------------------------------------------------------------------------- /snippets/php/textareatype.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbbr/vim-symfony/HEAD/snippets/php/textareatype.snippet -------------------------------------------------------------------------------- /snippets/php/texttype.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbbr/vim-symfony/HEAD/snippets/php/texttype.snippet -------------------------------------------------------------------------------- /snippets/php/timetype.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbbr/vim-symfony/HEAD/snippets/php/timetype.snippet -------------------------------------------------------------------------------- /snippets/php/timezonetype.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbbr/vim-symfony/HEAD/snippets/php/timezonetype.snippet -------------------------------------------------------------------------------- /snippets/php/urltype.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbbr/vim-symfony/HEAD/snippets/php/urltype.snippet -------------------------------------------------------------------------------- /snippets/php/usearray.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbbr/vim-symfony/HEAD/snippets/php/usearray.snippet -------------------------------------------------------------------------------- /snippets/php/useassert.snippet: -------------------------------------------------------------------------------- 1 | use Symfony\Component\Validator\Constraints as Assert;${1} 2 | -------------------------------------------------------------------------------- /snippets/php/usecache.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbbr/vim-symfony/HEAD/snippets/php/usecache.snippet -------------------------------------------------------------------------------- /snippets/php/usecontroller.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbbr/vim-symfony/HEAD/snippets/php/usecontroller.snippet -------------------------------------------------------------------------------- /snippets/php/usefile.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbbr/vim-symfony/HEAD/snippets/php/usefile.snippet -------------------------------------------------------------------------------- /snippets/php/usejsonresponse.snippet: -------------------------------------------------------------------------------- 1 | use Symfony\Component\HttpFoundation\JsonResponse;${1} 2 | -------------------------------------------------------------------------------- /snippets/php/usemethod.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbbr/vim-symfony/HEAD/snippets/php/usemethod.snippet -------------------------------------------------------------------------------- /snippets/php/usenotfound.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbbr/vim-symfony/HEAD/snippets/php/usenotfound.snippet -------------------------------------------------------------------------------- /snippets/php/useorm.snippet: -------------------------------------------------------------------------------- 1 | use Doctrine\ORM\Mapping as ORM;${1} 2 | -------------------------------------------------------------------------------- /snippets/php/useparamconverter.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbbr/vim-symfony/HEAD/snippets/php/useparamconverter.snippet -------------------------------------------------------------------------------- /snippets/php/userequest.snippet: -------------------------------------------------------------------------------- 1 | use Symfony\Component\HttpFoundation\Request;${1} 2 | -------------------------------------------------------------------------------- /snippets/php/useresponse.snippet: -------------------------------------------------------------------------------- 1 | use Symfony\Component\HttpFoundation\Response;${1} 2 | -------------------------------------------------------------------------------- /snippets/php/useroute.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbbr/vim-symfony/HEAD/snippets/php/useroute.snippet -------------------------------------------------------------------------------- /snippets/php/usesecurity.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbbr/vim-symfony/HEAD/snippets/php/usesecurity.snippet -------------------------------------------------------------------------------- /snippets/php/usetemplate.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbbr/vim-symfony/HEAD/snippets/php/usetemplate.snippet --------------------------------------------------------------------------------