[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: remove custom-set-*
From: |
Eli Zaretskii |
Subject: |
Re: remove custom-set-* |
Date: |
Wed, 22 Feb 2017 17:51:17 +0200 |
> Date: Wed, 22 Feb 2017 14:39:31 +0200
> From: Anast Gramm <anastasis.gramm2@gmail.com>
>
> I want to remove custom-set-faces from the code below, but I don't know how.
> setq doesn't work, and I don't know what to try.
I think setq will work if you create the faces first (with defface or
something). Or use setq in a hook that company provides when it is
turned on.
> Also from here, how do I remove the custom-set-variables
>
> (custom-set-variables
> '(TeX-view-program-selection
> (quote
> (((output-dvi has-no-display-manager)
> "dvi2tty")
> ((output-dvi style-pstricks)
> "dvips and gv")
> (output-dvi "xdvi")
> (output-pdf "Zathura")
> (output-html "xdg-open")))))
Use setq, perhaps in the hook offered by the mode which needs the
above.