Initial commit

This commit is contained in:
Mateus Pinto Rodrigues
2017-11-11 15:15:10 -02:00
commit 58c3bd6728
1202 changed files with 434097 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
(load-file "lua-mode.el")
(defmacro add-trace-for (fn)
(let ((trace-fn-name (intern (concat "trace--" (symbol-name fn)))))
`(progn
(defun ,trace-fn-name (&rest args)
(message "%s was called with: %S" #',fn args))
(add-function :before (symbol-function #',fn) #',trace-fn-name))))
;; (add-trace-for font-lock-fontify-region)
;; (add-trace-for font-lock-unfontify-region)
;; (add-trace-for lua--propertize-multiline-bounds)

Binary file not shown.

View File

@@ -0,0 +1,40 @@
;;; lua-mode-autoloads.el --- automatically extracted autoloads
;;
;;; Code:
(add-to-list 'load-path (directory-file-name (or (file-name-directory #$) (car load-path))))
;;;### (autoloads nil "lua-mode" "lua-mode.el" (22977 22524 605380
;;;;;; 500000))
;;; Generated autoloads from lua-mode.el
(autoload 'lua-mode "lua-mode" "\
Major mode for editing Lua code.
\(fn)" t nil)
(add-to-list 'auto-mode-alist '("\\.lua\\'" . lua-mode))
(add-to-list 'interpreter-mode-alist '("lua" . lua-mode))
(defalias 'run-lua #'lua-start-process)
(autoload 'lua-start-process "lua-mode" "\
Start a lua process named NAME, running PROGRAM.
PROGRAM defaults to NAME, which defaults to `lua-default-application'.
When called interactively, switch to the process buffer.
\(fn &optional NAME PROGRAM STARTFILE &rest SWITCHES)" t nil)
;;;***
;;;### (autoloads nil nil ("init-tryout.el" "lua-mode-pkg.el") (22977
;;;;;; 22524 595380 489000))
;;;***
;; Local Variables:
;; version-control: never
;; no-byte-compile: t
;; no-update-autoloads: t
;; End:
;;; lua-mode-autoloads.el ends here

View File

@@ -0,0 +1,5 @@
(define-package "lua-mode" "20170130.435" "a major-mode for editing Lua scripts" 'nil :url "http://immerrr.github.com/lua-mode" :keywords
'("languages" "processes" "tools"))
;; Local Variables:
;; no-byte-compile: t
;; End:

File diff suppressed because it is too large Load Diff

Binary file not shown.