Initial commit
This commit is contained in:
13
elpa/lua-mode-20170130.435/init-tryout.el
Normal file
13
elpa/lua-mode-20170130.435/init-tryout.el
Normal 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)
|
||||
BIN
elpa/lua-mode-20170130.435/init-tryout.elc
Normal file
BIN
elpa/lua-mode-20170130.435/init-tryout.elc
Normal file
Binary file not shown.
40
elpa/lua-mode-20170130.435/lua-mode-autoloads.el
Normal file
40
elpa/lua-mode-20170130.435/lua-mode-autoloads.el
Normal 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
|
||||
5
elpa/lua-mode-20170130.435/lua-mode-pkg.el
Normal file
5
elpa/lua-mode-20170130.435/lua-mode-pkg.el
Normal 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:
|
||||
1987
elpa/lua-mode-20170130.435/lua-mode.el
Normal file
1987
elpa/lua-mode-20170130.435/lua-mode.el
Normal file
File diff suppressed because it is too large
Load Diff
BIN
elpa/lua-mode-20170130.435/lua-mode.elc
Normal file
BIN
elpa/lua-mode-20170130.435/lua-mode.elc
Normal file
Binary file not shown.
Reference in New Issue
Block a user