diff options
author | Alex Kost <alezost@gmail.com> | 2016-02-08 20:34:13 +0300 |
---|---|---|
committer | Alex Kost <alezost@gmail.com> | 2016-03-24 18:49:59 +0300 |
commit | ff4455e6e225ab6f12d6d8e015f403a6090ed1b8 (patch) | |
tree | c4a4fca072690e73ab7e0287fa1ba0c0359ade7c /doc | |
parent | 453cdf860676d99f1d75311befdf58fd96541cde (diff) | |
download | patches-ff4455e6e225ab6f12d6d8e015f403a6090ed1b8.tar patches-ff4455e6e225ab6f12d6d8e015f403a6090ed1b8.tar.gz |
emacs: Deprecate "guix-init.el".
'guix-init' served 2 purposes:
- to autoload guix commands (by requiring 'guix-autoloads');
- and to autoload Emacs packages installed with Guix (by requiring
'guix-emacs').
The second purpose is not actual anymore, as Emacs package handles this
task now, so there is no need in 'guix-init' anymore.
* emacs/guix-init.el: Do not require 'guix-emacs'. Add a deprecation
message.
* doc/emacs.texi (Emacs Initial Setup): Recommend to use
'guix-autoloads' instead of 'guix-init'.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/emacs.texi | 33 |
1 files changed, 9 insertions, 24 deletions
diff --git a/doc/emacs.texi b/doc/emacs.texi index 27f5365caa..527afe7806 100644 --- a/doc/emacs.texi +++ b/doc/emacs.texi @@ -48,13 +48,13 @@ command (@pxref{Emacs Popup Interface}). @end itemize -When it is done ``guix.el'' may be configured by requiring a special -@code{guix-init} file---i.e., by adding the following code into your -init file (@pxref{Init File,,, emacs, The GNU Emacs Manual}): +When it is done, ``guix.el'' may be configured by requiring +@code{guix-autoloads} file---i.e., by adding the following code into +your init file (@pxref{Init File,,, emacs, The GNU Emacs Manual}): @example (add-to-list 'load-path "/path/to/directory-with-guix.el") -(require 'guix-init nil t) +(require 'guix-autoloads nil t) @end example So the only thing you need to figure out is where the directory with @@ -74,9 +74,10 @@ then Guix is installed somewhere in the store, so the elisp files are placed in @file{/gnu/store/@dots{}-guix-0.8.2/share/emacs/site-lisp/} or alike. However it is not recommended to refer directly to a store directory. Instead you can install Guix using Guix itself with -@command{guix package -i guix} command (@pxref{Invoking guix package}) -and add @file{~/.guix-profile/share/emacs/site-lisp/} directory to -@code{load-path} variable. +@command{guix package -i guix} command (@pxref{Invoking guix package}). +No further actions are needed in this case, as @code{guix-autoloads} +file will automatically be loaded by Emacs (if it is installed with +Guix, of course) (@pxref{Application Setup}). @item If you did not install Guix at all and prefer a hacking way @@ -88,26 +89,10 @@ same directory, so your final configuration will look like this: (let ((dir "/path/to/your-guix-git-tree/emacs")) (add-to-list 'load-path dir) (setq guix-load-path dir)) -(require 'guix-init nil t) +(require 'guix-autoloads nil t) @end example @end itemize -By default, along with autoloading (@pxref{Autoload,,, elisp, The GNU -Emacs Lisp Reference Manual}) the main interactive commands for -``guix.el'' (@pxref{Emacs Commands}), requiring @code{guix-init} will -also autoload commands for the Emacs packages installed in your user -profile. - -To disable automatic loading of installed Emacs packages, set -@code{guix-package-enable-at-startup} variable to @code{nil} before -requiring @code{guix-init}. This variable has the same meaning for -Emacs packages installed with Guix, as @code{package-enable-at-startup} -for the built-in Emacs package system (@pxref{Package Installation,,, -emacs, The GNU Emacs Manual}). - -You can activate Emacs packages installed in your profile whenever you -want using @kbd{M-x@tie{}guix-emacs-autoload-packages}. - @node Emacs Package Management @section Package Management |