Add new packages installed

This commit is contained in:
Mateus Pinto Rodrigues
2018-03-27 20:52:59 -03:00
parent e684741609
commit 2362e805bd
1493 changed files with 172412 additions and 4636 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" (23199 55711 52255
;;;;;; 840000))
;;; 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") (23199
;;;;;; 55711 42255 830000))
;;;***
;; 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" "20180207.1216" "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.