conf-emacs/elpa/nix-mode-1.5.0/nix-mode-autoloads.el

285 lines
8.3 KiB
EmacsLisp
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

;;; nix-mode-autoloads.el --- automatically extracted autoloads (do not edit) -*- lexical-binding: t -*-
;; Generated by the `loaddefs-generate' function.
;; This file is part of GNU Emacs.
;;; Code:
(add-to-list 'load-path (or (and load-file-name (directory-file-name (file-name-directory load-file-name))) (car load-path)))
;;; Generated autoloads from nix.el
(autoload 'pcomplete/nix "nix" "\
Completion for the nix command.")
(register-definition-prefixes "nix" '("nix-"))
;;; Generated autoloads from nix-build.el
(autoload 'nix-build "nix-build" "\
Run nix-build in a compilation buffer.
FILE the file to parse.
ATTR the attribute to build.
(fn &optional FILE ATTR)" t)
;;; Generated autoloads from nix-drv-mode.el
(autoload 'nix-drv-mode "nix-drv-mode" "\
Pretty print Nixs .drv files.
(fn)" t)
(add-to-list 'auto-mode-alist '("^/nix/store/.+\\.drv\\'" . nix-drv-mode))
(register-definition-prefixes "nix-drv-mode" '("nix-drv-mode-dejsonify-buffer"))
;;; Generated autoloads from nix-edit.el
(autoload 'nix-edit "nix-edit" "\
Open the nix log.
FILE the nix file to load from.
ATTR the attribute to find in nix expressions.
(fn &optional FILE ATTR)" t)
;;; Generated autoloads from nix-flake.el
(autoload 'nix-flake-dispatch "nix-flake" nil t)
(autoload 'nix-flake "nix-flake" "\
Dispatch a transient interface for Nix commands.
DIR is a directory on the file system in which flake.nix resides.
Alternatively, you can specify FLAKE-REF which follows the syntax
of flake-url. It can refer to a remote url, a local file path, or
whatever supported by Nix.
(fn DIR &key FLAKE-REF)" t)
(autoload 'nix-flake-init "nix-flake" nil t)
(autoload 'nix-flake-init "nix-flake" "\
Run \"nix flake init\" command via a transient interface." t)
(register-definition-prefixes "nix-flake" '("nix-flake-"))
;;; Generated autoloads from nix-format.el
(autoload 'nix-format-before-save "nix-format" "\
Add this to `before-save-hook' to run nixfmt when saving.")
(register-definition-prefixes "nix-format" '("nix-"))
;;; Generated autoloads from nix-instantiate.el
(register-definition-prefixes "nix-instantiate" '("nix-instantiate"))
;;; Generated autoloads from nix-log.el
(autoload 'nix-log "nix-log" "\
Open the nix log.
FILE nix file to parse.
ATTR attribute to load the log of.
(fn FILE ATTR)" t)
(register-definition-prefixes "nix-log" '("nix-log-path"))
;;; Generated autoloads from nix-mode.el
(autoload 'nix-mode-format "nix-mode" "\
Format the entire `nix-mode' buffer." t)
(autoload 'nix-indent-line "nix-mode" "\
Indent current line in a Nix expression." t)
(autoload 'nix-indent-region "nix-mode" "\
Indent on a whole region. Enabled by default.
START where to start in region.
END where to end the region.
(fn START END)" t)
(autoload 'nix-mode-ffap-nixpkgs-path "nix-mode" "\
Support `ffap' for <nixpkgs> declarations.
If STR contains brackets, call `nix-instantiate' to find the
location of STR. If `nix-instantiate' has a nonzero exit code,
dont do anything
(fn STR)")
(autoload 'nix-mode "nix-mode" "\
Major mode for editing Nix expressions.
The following commands may be useful:
'\\[newline-and-indent]'
Insert a newline and move the cursor to align with the previous
non-empty line.
'\\[fill-paragraph]'
Refill a paragraph so that all lines are at most `fill-column'
lines long. This should do the right thing for comments beginning
with `#'. However, this command doesn't work properly yet if the
comment is adjacent to code (i.e., no intervening empty lines).
In that case, select the text to be refilled and use
`\\[fill-region]' instead.
The hook `nix-mode-hook' is run when Nix mode is started.
\\{nix-mode-map}
(fn)" t)
(add-to-list 'auto-mode-alist '("\\.nix\\'" . nix-mode))
(register-definition-prefixes "nix-mode" '("nix-"))
;;; Generated autoloads from nix-prettify-mode.el
(autoload 'nix-prettify-mode "nix-prettify-mode" "\
Toggle Nix Prettify mode.
With a prefix argument ARG, enable Nix Prettify mode if ARG is
positive, and disable it otherwise. If called from Lisp, enable
the mode if ARG is omitted or nil.
When Nix Prettify mode is enabled, hash-parts of the Nix store
file names (see `nix-prettify-regexp') are prettified,
i.e. displayed as `nix-prettify-char' character. This mode can
be enabled programmatically using hooks:
(add-hook 'shell-mode-hook 'nix-prettify-mode)
It is possible to enable the mode in any buffer, however not any
buffer's highlighting may survive after adding new elements to
`font-lock-keywords' (see `nix-prettify-special-modes' for
details).
Also you can use `global-nix-prettify-mode' to enable Nix
Prettify mode for all modes that support font-locking.
(fn &optional ARG)" t)
(put 'nix-prettify-global-mode 'globalized-minor-mode t)
(defvar nix-prettify-global-mode nil "\
Non-nil if Nix-Prettify-Global mode is enabled.
See the `nix-prettify-global-mode' command
for a description of this minor mode.
Setting this variable directly does not take effect;
either customize it (see the info node `Easy Customization')
or call the function `nix-prettify-global-mode'.")
(custom-autoload 'nix-prettify-global-mode "nix-prettify-mode" nil)
(autoload 'nix-prettify-global-mode "nix-prettify-mode" "\
Toggle Nix-Prettify mode in all buffers.
With prefix ARG, enable Nix-Prettify-Global mode if ARG is positive;
otherwise, disable it.
If called from Lisp, toggle the mode if ARG is `toggle'.
Enable the mode if ARG is nil, omitted, or is a positive number.
Disable the mode if ARG is a negative number.
Nix-Prettify mode is enabled in all buffers where
`nix-prettify-turn-on' would do it.
See `nix-prettify-mode' for more information on Nix-Prettify mode.
(fn &optional ARG)" t)
(define-obsolete-function-alias 'global-nix-prettify-mode 'nix-prettify-global-mode "v1.2.2")
(register-definition-prefixes "nix-prettify-mode" '("nix-prettify-"))
;;; Generated autoloads from nix-repl.el
(autoload 'nix-repl "nix-repl" "\
Load the Nix-REPL." t)
(autoload 'nix-repl-completion-at-point "nix-repl" "\
Completion at point function for Nix using \"nix-repl\".
See `completion-at-point-functions'.")
(register-definition-prefixes "nix-repl" '("nix-"))
;;; Generated autoloads from nix-search.el
(autoload 'nix-search--search "nix-search" "\
(fn SEARCH FILE &optional NO-CACHE USE-FLAKES)")
(autoload 'nix-search--display "nix-search" "\
(fn RESULTS &optional DISPLAY-BUFFER USE-FLAKES SEARCH FILE)")
(autoload 'nix-search "nix-search" "\
Run nix search.
SEARCH a search term to use.
FILE a Nix expression to search in.
(fn SEARCH &optional FILE DISPLAY-BUFFER)" t)
(register-definition-prefixes "nix-search" '("nix-search-"))
;;; Generated autoloads from nix-shebang.el
(register-definition-prefixes "nix-shebang" '("nix-shebang-"))
;;; Generated autoloads from nix-shell.el
(autoload 'nix-shell-unpack "nix-shell" "\
Run Nixs unpackPhase.
FILE is the file to unpack from.
ATTR is the attribute to unpack.
(fn FILE ATTR)" t)
(autoload 'nix-shell-configure "nix-shell" "\
Run Nixs configurePhase.
FILE is the file to configure from.
ATTR is the attribute to configure.
(fn FILE ATTR)" t)
(autoload 'nix-shell-build "nix-shell" "\
Run Nixs buildPhase.
FILE is the file to build from.
ATTR is the attribute to build.
(fn FILE ATTR)" t)
(autoload 'nix-eshell-with-packages "nix-shell" "\
Create an Eshell buffer that has the shell environment in it.
PACKAGES a list of packages to pull in.
PKGS-FILE a file to use to get the packages.
(fn PACKAGES &optional PKGS-FILE)")
(autoload 'nix-eshell "nix-shell" "\
Create an Eshell buffer that has the shell environment in it.
FILE the .nix expression to create a shell for.
ATTR attribute to instantiate in NIX-FILE.
(fn FILE &optional ATTR)" t)
(autoload 'nix-shell-with-string "nix-shell" "\
A nix-shell emulator in Emacs from a string.
STRING the nix expression to use.
(fn STRING)")
(autoload 'nix-shell "nix-shell" "\
A nix-shell emulator in Emacs.
FILE the file to instantiate.
ATTR an attribute of the Nix file to use.
(fn FILE &optional ATTR)" t)
(register-definition-prefixes "nix-shell" '("nix-"))
;;; Generated autoloads from nix-store.el
(register-definition-prefixes "nix-store" '("nix-"))
;;; End of scraped data
(provide 'nix-mode-autoloads)
;; Local Variables:
;; version-control: never
;; no-byte-compile: t
;; no-update-autoloads: t
;; no-native-compile: t
;; coding: utf-8-emacs-unix
;; End:
;;; nix-mode-autoloads.el ends here