Martin Tang

Results 4 issues of Martin Tang

e.g. If I type: `a` and call `emmet-expand-line` to get ```html | ``` (where the `|` represents the position of my cursor) calling `emmet-prev-edit-point` takes my cursor to the position...

It looks like somehow, `(thing-at-point 'sexp)` is returning `nil` when I call `(yas/create-php-snippet)` inside a class method. If I bring the cursor out of the method, then the function works...

## Relevant lines in my init.el: ```emacs-lisp (defun my/php-mode-hook () "Gets run on php-mode load." (make-local-variable 'company-backends) (add-to-list 'company-backends 'company-phpactor) (flycheck-select-checker 'phpstan) (setq php-mode-coding-style 'psr2 c-basic-offset 4) (when (eq 0...