[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Emacs with rainbow-delimiters
From: |
Stefan Monnier |
Subject: |
Re: Emacs with rainbow-delimiters |
Date: |
Sat, 09 Jan 2021 13:50:43 -0500 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux) |
> 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