aboutsummaryrefslogtreecommitdiffstats
path: root/zencoding-mode.el
diff options
context:
space:
mode:
authorReed O'Brien <reed@koansys.com>2010-02-01 07:49:47 +0800
committerChris Done <chrisdone@gmail.com>2010-02-14 08:30:20 +0800
commit6797dce7a07c4dedc57b5f705f6659c6990d3d7e (patch)
treec1368fba26bdba608e61ce6a48c6084a38a9ce0f /zencoding-mode.el
parentb38a275c2d57023ad186493f5ce7af7b21e0c0cc (diff)
downloademmet-mode-6797dce7a07c4dedc57b5f705f6659c6990d3d7e.tar.lz
emmet-mode-6797dce7a07c4dedc57b5f705f6659c6990d3d7e.tar.xz
emmet-mode-6797dce7a07c4dedc57b5f705f6659c6990d3d7e.zip
allow propery names to honor namespaces
Diffstat (limited to 'zencoding-mode.el')
-rw-r--r--zencoding-mode.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/zencoding-mode.el b/zencoding-mode.el
index 0953a68..48d7d9d 100644
--- a/zencoding-mode.el
+++ b/zencoding-mode.el
@@ -256,7 +256,7 @@
(defun zencoding-name (input)
"Parse a class or identifier name, e.g. news, footer, mainimage"
- (zencoding-parse "\\([a-zA-Z][a-zA-Z0-9-_]*\\)" 2 "class or identifer name"
+ (zencoding-parse "\\([a-zA-Z][a-zA-Z0-9-_:]*\\)" 2 "class or identifer name"
`((name . ,(elt it 1)) . ,input)))
(defun zencoding-class (input)