This is no longer needed as Emmet supports JSX - you just need to turn it all on. Did a quick tutorial: http://wesbos.com/emmet-react-jsx-sublime/
Thanks, @wesbos
- Using emmet in jsx files
- Emmet expands text when js autocomplete needed
| use Symfony\Component\Security\Core\Authentication\Token\UsernamePasswordToken; | |
| // Manually authenticate user in controller | |
| $token = new UsernamePasswordToken($user, null, 'main', $user->getRoles()); | |
| $this->get('security.token_storage')->setToken($token); | |
| $this->get('session')->set('_security_main', serialize($token)); |
| /** | |
| * Copyright (c) 2016-2018 Richard Connamacher. Permission is granted to use this code under | |
| * the terms of the Simplified BSD License, https://opensource.org/licenses/BSD-2-Clause | |
| * | |
| * This monkey-patches the native ECMAScript 6 Promise class to add support for | |
| * the Promise Rejection Events unhandledrejection and rejectionhandled, as defined | |
| * in ECMAScript 7 and the HTML Living Standard. | |
| * | |
| * THIS FILE MUST NOT BE TRANSPILED into ECMAScript 5. Builtins like Promise can only | |
| * be subclassed using native ES6 classes, not backwards-compatible ES5 constructor |
| import UIKit | |
| import SnapKit | |
| class ScrollableViewController: UIViewController { | |
| override func viewDidLoad() { | |
| super.viewDidLoad() | |
| view.backgroundColor = UIColor.whiteColor() | |
| let scrollView = UIScrollView() |
This is no longer needed as Emmet supports JSX - you just need to turn it all on. Did a quick tutorial: http://wesbos.com/emmet-react-jsx-sublime/
Thanks, @wesbos
| Description | Entity | Preview |
|---|---|---|
| A With Acute, Latin Capital Letter | Á | Á |
| A With Acute, Latin Small Letter | á | á |
| A With Breve, Latin Small Letter | ă | ă |
| A With Caron, Latin Small Letter | ǎ | ǎ |
| A With Circumflex, Latin Capital Letter | Â | Â |
| A With Circumflex, Latin Small Letter | â | â |
| /* | |
| * This work is free. You can redistribute it and/or modify it under the | |
| * terms of the Do What The Fuck You Want To Public License, Version 2, | |
| * as published by Sam Hocevar. See the COPYING file for more details. | |
| */ | |
| /* | |
| * Easing Functions - inspired from http://gizma.com/easing/ | |
| * only considering the t value for the range [0, 1] => [0, 1] | |
| */ | |
| EasingFunctions = { |
| <?php | |
| namespace Application\ProdrepHelperBundle\Component\Event; | |
| use Symfony\Component\HttpFoundation\Response; | |
| use Symfony\Component\Security\Core\Exception\AuthenticationException; | |
| use Symfony\Component\Security\Core\Exception\AccessDeniedException; | |
| use Symfony\Component\HttpKernel\Event\GetResponseForExceptionEvent; | |
| /** | |
| */ | |
| class AjaxAuthenticationListener |