aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorWilliam David Mayo ("Dave") <pobocks@gmail.com>2018-05-04 09:38:21 -0400
committerGitHub <noreply@github.com>2018-05-04 09:38:21 -0400
commitf7468aff369a2291e00a351515dab81ba796c3f7 (patch)
treefd473df84f9bdae3d0e7e664f0b34aa4c253dcd5 /README.md
parent4fa0386996004b63904d2d41e875a092bb027be0 (diff)
downloademmet-mode-f7468aff369a2291e00a351515dab81ba796c3f7.tar.lz
emmet-mode-f7468aff369a2291e00a351515dab81ba796c3f7.tar.xz
emmet-mode-f7468aff369a2291e00a351515dab81ba796c3f7.zip
Update to make it clear where to make changes
Probably going to update README more thoroughly as I have time, but this needs to be there I think.
Diffstat (limited to 'README.md')
-rw-r--r--README.md11
1 files changed, 11 insertions, 0 deletions
diff --git a/README.md b/README.md
index 6921735..b5dab90 100644
--- a/README.md
+++ b/README.md
@@ -561,3 +561,14 @@ Traverse between important code points in HTML.
- `<C-M-right>` is "Next Edit Point" (`M-x emmet-next-edit-point`)
For further information and demo see [Emmet's documentation](http://docs.emmet.io/actions/go-to-edit-point/).
+
+## Development Notes
+
+When working on emmet-mode, DO NOT directly edit `emmet-mode.el`. It is generated from the files in the `/src` directory by `make`. When making changes, make them to the relevant source file, then run:
+
+```sh
+make clean
+make
+```
+
+in the root directory of your emmet-mode repository.