Hi,

> One comment about the indendation: Please don't use tabs!

Please, look at docs/HACKING file:

    If you do not want to enable it in general, use something like the following
    in your ~/.emacs:

    (defun rf-dvc-find-file-hook ()
      (when (and (buffer-file-name)
                 (string-match "xtla\\|dvc" (buffer-file-name)))
        (message "Enabled Xtla/DVC settings for buffer %s" (buffer-name))
        (make-local-hook 'write-file-hooks)
        (add-hook 'write-file-hooks 'delete-trailing-whitespace nil t)
        (setq indent-tabs-mode nil)))

    (add-hook 'find-file-hooks 'rf-dvc-find-file-hook)


Reply via email to