help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Set font


From: Rainer M Krug
Subject: Re: Set font
Date: Tue, 27 Sep 2016 14:17:25 +0200
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/25.1 (darwin)

Rainer M Krug <Rainer@krugs.de> writes:

> Rainer M Krug <Rainer@krugs.de> writes:
>
>> Hi
>>
>> I would like to set the font for all source code editing modes to a
>> specific font (Monoid https://larsenwork.com/monoid/ ). I have defined a
>> function rmk/set-font-to-programming-font which sets the font and also
>> have added this function to the ess-mode-hook:
>>
>> (defun rmk/set-font-to-programming-font ()
>>   "Change font in current window to a monospaced font."
>>   (interactive)
>>   (set-frame-font "Monoid-12" nil t))
>>
>> (add-hook 'ess-mode-hook 'rmk/set-programming-font)
>>
>> Now what is the easiest to use this font for all source languages
>> (emacs-lisp-mode, c-mode, c++-mode, ...)? Do I have to add to all of
>> them the function to the hook, or is there an easier approach which
>> sets the font for all these languages?
>
> And I just realized - the font stays when I switch back to another
> buffer - but I only want to have it on specific buffers - how can I do
> this?

I have it now only for the buffer by using:

--8<---------------cut here---------------start------------->8---
(defun rmk/set-buffer-face-mode-programming ()
  "Sets a fixed width (monospace) font in current buffer"
  (interactive)
  (setq buffer-face-mode-face '(:family "Monoid" :height 120))
  (buffer-face-mode))
--8<---------------cut here---------------end--------------->8---


>
>
>
>>
>> Thanks,
>>
>> Rainer

-- 
Rainer M. Krug
email: Rainer<at>krugs<dot>de
PGP: 0x0F52F982

Attachment: signature.asc
Description: PGP signature


reply via email to

[Prev in Thread] Current Thread [Next in Thread]