sooqua
sooqua
How can I debug this?
Quick fix: ```elisp (defun +web-emmet-make-tag-a (tag-maker tag-info &optional content) "Extract tag info and pass them to tag-maker." (let* ((name (pop tag-info)) (has-body? (pop tag-info)) (id (pop tag-info)) (classes (pop tag-info))...
Or ```elisp (defun +web-emmet-make-tag-a (_ tag-info) (let ((name (car tag-info))) (when (string= name "label") (let ((defaultAttr (gethash "defaultAttr" (gethash name emmet-tag-settings-table)))) (remhash "for" defaultAttr) (remhash "htmlFor" defaultAttr) (if (derived-mode-p 'rjsx-mode)...
After you've successfully installed latest versions of `yasnippet` and `js-react-redux-yasnippets` the snippets should be available in all modes derived from `js-mode` AFAIR the command is `yas-expand` and it should be...