[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Emacs with rainbow-delimiters
From: |
wael-zwaiter |
Subject: |
Re: Emacs with rainbow-delimiters |
Date: |
Sat, 9 Jan 2021 21:11:01 +0100 |
Hawe put the following lines to work.
(rainbow-delimiters-mode 1)
(add-hook 'prog-mode-hook 'rainbow-delimiters-mode)
But now I would like things active on all files.
> Sent: Sunday, January 10, 2021 at 6:50 AM
> From: "Stefan Monnier" <monnier@iro.umontreal.ca>
> To: help-gnu-emacs@gnu.org
> Subject: Re: Emacs with rainbow-delimiters
>
> > Have put the following two lines
> >
> > (require 'rainbow-delimiters)
> > (rainbow-delimiters-mode 1)
> >
> > But I am getting the error
> >
> > File error: Cannot open load file, No such file or directory,
> > rainbow-delimiters
>
> Presumably you don't have the package `rainbow-delimiters` installed.
> Note that the (require 'rainbow-delimiters) should be redundant since
> installing the package should be enough to make it so the function
> `rainbow-delimiters-mode` is autoloaded (i.e. the package will be
> loaded if needed when you call the function).
>
>
> Stefan
>
>
>