104 lines
3.3 KiB
EmacsLisp
104 lines
3.3 KiB
EmacsLisp
|
;;; ac-haml.el --- auto complete source for html tag and attributes
|
||
|
|
||
|
;; Copyright (C) 2014 - 2015 Zhang Kai Yu
|
||
|
|
||
|
;; Author: Zhang Kai Yu <yeannylam@gmail.com>
|
||
|
;; Keywords: html, auto-complete, rails, ruby
|
||
|
|
||
|
;; This program is free software; you can redistribute it and/or modify
|
||
|
;; it under the terms of the GNU General Public License as published by
|
||
|
;; the Free Software Foundation, either version 3 of the License, or
|
||
|
;; (at your option) any later version.
|
||
|
|
||
|
;; This program is distributed in the hope that it will be useful,
|
||
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
;; GNU General Public License for more details.
|
||
|
|
||
|
;; You should have received a copy of the GNU General Public License
|
||
|
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||
|
|
||
|
;;; Commentary:
|
||
|
|
||
|
;; Configuration:
|
||
|
|
||
|
;;
|
||
|
|
||
|
;;; Code:
|
||
|
|
||
|
(require 'ac-html-core)
|
||
|
(require 'ac-slim) ;; haml and slim share some common things
|
||
|
|
||
|
(defun ac-haml-attr-prefix ()
|
||
|
(if (or (ac-slim-inside-ruby-code)
|
||
|
(ac-slim-inside-non-slim-block))
|
||
|
nil
|
||
|
(save-restriction
|
||
|
(save-excursion
|
||
|
(narrow-to-region
|
||
|
(line-beginning-position) (line-end-position))
|
||
|
(let ((origin (point)) (right nil) (left nil) (thing nil))
|
||
|
;; Go to next whitespace or line end
|
||
|
(re-search-forward "\\( \\|$\\)" nil t)
|
||
|
(if (equal (char-before) ? )
|
||
|
(backward-char))
|
||
|
(setq right (point))
|
||
|
(goto-char origin)
|
||
|
;; Go to previous whitespace or line beginning
|
||
|
(re-search-backward "\\( \\|^\\)" nil t)
|
||
|
(if (equal (char-after) ? )
|
||
|
(forward-char))
|
||
|
(setq left (point))
|
||
|
;; Figure out what at point
|
||
|
(setq thing (buffer-substring-no-properties left right))
|
||
|
(if (string= (substring thing 0 1) ":")
|
||
|
(1+ left)
|
||
|
nil))))))
|
||
|
|
||
|
(defun ac-haml-attrv-prefix ()
|
||
|
(if (re-search-backward "\\w+ *=[>]? *[\"]\\([^\"]+[ ]\\|\\)\\(.*\\)" nil t)
|
||
|
(match-beginning 2)))
|
||
|
|
||
|
(defun ac-haml-class-prefix ()
|
||
|
(ac-slim-class-prefix))
|
||
|
|
||
|
(defun ac-haml-id-prefix ()
|
||
|
(ac-slim-id-prefix))
|
||
|
|
||
|
(defun ac-haml-current-tag ()
|
||
|
"Return current haml tag user is typing on."
|
||
|
(save-excursion
|
||
|
(save-match-data
|
||
|
(re-search-backward "^[\t ]*%\\(\\w+\\)" nil t)
|
||
|
(match-string 1))))
|
||
|
|
||
|
(defun ac-haml-current-tag ()
|
||
|
"Return current haml tag user is typing on."
|
||
|
(let* ((line (buffer-substring-no-properties (line-beginning-position)
|
||
|
(line-end-position)))
|
||
|
(match-result (s-match "^[\t ]*%\\(\\w+\\)" line)))
|
||
|
(if match-result
|
||
|
(nth 1 match-result)
|
||
|
"div")))
|
||
|
|
||
|
(defun ac-haml-current-attr ()
|
||
|
"Return current html tag's attribute user is typing on."
|
||
|
(save-excursion (re-search-backward "[^a-z-]\\([a-z-]+\\) *=" nil t))
|
||
|
(match-string 1))
|
||
|
|
||
|
(defun ac-haml-attrv-prefix ()
|
||
|
(if (re-search-backward "\\w+ *=[>]? *[\"]\\([^\"]+[ ]\\|\\)\\(.*\\)" nil t)
|
||
|
(match-beginning 2)))
|
||
|
|
||
|
(ac-html-define-ac-source "haml"
|
||
|
:tag-prefix "^[ \t]*%\\(.*\\)"
|
||
|
:attr-prefix ac-haml-attr-prefix
|
||
|
:attrv-prefix ac-haml-attrv-prefix
|
||
|
:class-prefix ac-haml-class-prefix
|
||
|
:id-prefix ac-haml-id-prefix
|
||
|
:current-tag-func ac-haml-current-tag
|
||
|
:current-attr-func ac-haml-current-attr)
|
||
|
|
||
|
(provide 'ac-haml)
|
||
|
;;; ac-haml.el ends here
|