https://github.com/coldnew/qml-mode.git
git clone 'git://github.com/coldnew/qml-mode.git'
qml-mode is major-mode for editing Qt Declarative (QML) code.
If you have melpa and emacs24 installed, simply type:
M-x package-install qml-mode
Add following lines to your init file:
(autoload 'qml-mode "qml-mode" "Editing Qt Declarative." t)
(add-to-list 'auto-mode-alist '("\\.qml$" . qml-mode))
(qml-mode:list-to-string LIST)(qml-in-comment-p)Check whether we are currently in a comment
(qml-mode-indent-line)Indent the current line
—–