branch: elpa/nix-mode
commit 69e665c6ab36bbf8c909a658027cb2d22b5c9cb6
Author: Daniel Nagy <[email protected]>
Commit: Daniel Nagy <[email protected]>
Add three autoloads
Closes #147
---
nix-build.el | 1 +
nix-edit.el | 1 +
nix-log.el | 1 +
3 files changed, 3 insertions(+)
diff --git a/nix-build.el b/nix-build.el
index df85a676d6..9a0c6d5e4a 100644
--- a/nix-build.el
+++ b/nix-build.el
@@ -13,6 +13,7 @@
(require 'nix)
(require 'nix-search)
+;;;###autoload
(defun nix-build (&optional file attr)
"Run nix-build in a compilation buffer.
FILE the file to parse.
diff --git a/nix-edit.el b/nix-edit.el
index 547006deb4..3343d2b14e 100644
--- a/nix-edit.el
+++ b/nix-edit.el
@@ -14,6 +14,7 @@
(require 'nix)
(require 'nix-search)
+;;;###autoload
(defun nix-edit (&optional file attr)
"Open the nix log.
FILE the nix file to load from.
diff --git a/nix-log.el b/nix-log.el
index 1df0e1d010..3d25c573f0 100644
--- a/nix-log.el
+++ b/nix-log.el
@@ -15,6 +15,7 @@
(require 'nix-search)
(require 'nix-instantiate)
+;;;###autoload
(defun nix-log (file attr)
"Open the nix log.
FILE nix file to parse.