branch: externals/phps-mode commit 58300fd90bb3e5b35400c015ed5372dd6e76a1d7 Author: Christian Johansson <christ...@cvj.se> Commit: Christian Johansson <christ...@cvj.se>
More updates of readme --- README.md | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 506b1d6..a15bc0e 100644 --- a/README.md +++ b/README.md @@ -20,21 +20,27 @@ With current progress estimates: ## Unit tests -Not ready yet. +Not fully ready yet. ### Lexer +Emacs24+ path need to be updated in Makefile first. + ``` bash make test-lexer ``` ### Parser +Not ready yet. + ``` bash make test-parser ``` -### Indentation +### Functions + +Emacs24+ path need to be updated in Makefile first. ``` bash make test-functions @@ -45,9 +51,8 @@ make test-functions Download to `~/.emacs.d/phps-mode/` and then add this to your init file: ``` emacs-lisp -(add-to-list 'load-path "~/.emacs.d/phps-mode/") +(add-to-list 'load-path (expand-file-name "~/.emacs.d/phps-mode/")) (use-package phps-mode - :mode ("\\.php\\'" "\\.phtml\\'") -) + :mode ("\\.php\\'" "\\.phtml\\'")) ```