또한 .emacs
파일에 글꼴 크기를 저장하고 싶습니다 .
.emacs.d/init.el
더 나은 것을 사용하십시오 (깨끗하고 더 나은 버전 관리)
또한 .emacs
파일에 글꼴 크기를 저장하고 싶습니다 .
.emacs.d/init.el
더 나은 것을 사용하십시오 (깨끗하고 더 나은 버전 관리)
답변:
(set-face-attribute 'default nil :height 100)
값은 1 / 10pt이므로 100은 10pt 등을 제공합니다.
set-face-background set-face-font set-face-inverse-video-p set-face-underline set-face-background-pixmap set-face-foreground set-face-stipple set-face-underline-p
.
set-face-attribute
실제로 M-x
( execute-extended-command
) 에서 누락 되었지만 M-:
( eval-expression
) 및 C-h f
( describe-function
)에 있습니다. 파일 M-:
에 넣고 싶지 않다면 아마도 원하는 것입니다 .emacs
.
M-x
없습니까? 멍청한 질문이지만, 확실하지만, emacs가 저수준에서 어떻게 작동하는지 잘
M-x
없습니까? ”. 답을 연구하는 것은 교육적인 것으로 판명되었습니다.
에서 Emacswiki , GNU 이맥스 (23)가 내장 된 키 조합 :
C-xC-+및 C-xC--증가 또는 버퍼 텍스트 크기를 감소시키기
Shift와 첫 번째 마우스 버튼을 누릅니다. 다음과 같은 방법으로 글꼴 크기를 변경할 수 있습니다. 이 웹 사이트 에 자세한 내용이 있습니다.
M-x customize-face RET defaultdefault
다른 모든면의 기준이되는 면을 설정할 수 있습니다 . 글꼴 크기를 설정할 수 있습니다.
여기 내 .emacs에있는 것이 있습니다. 실제로 색상 테마가 기본 사항을 설정하면 사용자 정의 얼굴 설정이 일부 항목을 무시합니다. 사용자 정의 얼굴은 emacs의 사용자 정의 얼굴 메커니즘에 의해 작성됩니다.
;; my colour theme is whateveryouwant :)
(require 'color-theme)
(color-theme-initialize)
(color-theme-whateveryouwant)
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(default ((t (:stipple nil :background "white" :foreground "black" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :height 98 :width normal :foundry "unknown" :family "DejaVu Sans Mono"))))
'(font-lock-comment-face ((t (:foreground "darkorange4"))))
'(font-lock-function-name-face ((t (:foreground "navy"))))
'(font-lock-keyword-face ((t (:foreground "red4"))))
'(font-lock-type-face ((t (:foreground "black"))))
'(linum ((t (:inherit shadow :background "gray95"))))
'(mode-line ((t (nil nil nil nil :background "grey90" (:line-width -1 :color nil :style released-button) "black" :box nil :width condensed :foundry "unknown" :family "DejaVu Sans Mono")))))
내 안에 다음이 있습니다 .emacs
.
(defun fontify-frame (frame)
(set-frame-parameter frame 'font "Monospace-11"))
;; Fontify current frame
(fontify-frame nil)
;; Fontify any future frames
(push 'fontify-frame after-make-frame-functions)
선택한 글꼴을 대체 할 수 있습니다 "Monospace-11"
. 사용 가능한 옵션 세트는 시스템에 따라 크게 다릅니다. M-x set-default-font
탭 완성을 사용 하고 살펴보면 몇 가지 아이디어를 얻을 수 있습니다. 이맥스 (23) 및 활성화 안티 앨리어싱 내 시스템에, 이름, 예를 들어,에 의해 시스템 글꼴을 선택할 수 있습니다 Monospace
, Sans Serif
등
zoom.cfg 및 global-zoom.cfg 는 글꼴 크기 변경 바인딩을 제공합니다 (EmacsWiki에서)
다음은 한 번에 한 지점 씩 글꼴 높이를 대화식으로 크기 조정하는 옵션입니다.
;; font sizes
(global-set-key (kbd "s-=")
(lambda ()
(interactive)
(let ((old-face-attribute (face-attribute 'default :height)))
(set-face-attribute 'default nil :height (+ old-face-attribute 10)))))
(global-set-key (kbd "s--")
(lambda ()
(interactive)
(let ((old-face-attribute (face-attribute 'default :height)))
(set-face-attribute 'default nil :height (- old-face-attribute 10)))))
모든 버퍼 에서 텍스트 크기를 조정하려는 경우에 좋습니다 . 내가 사용하는 솔루션을 좋아하지 않아 text-scale-increase
및 text-scale-decrease
시궁창에서 행 번호가 이후에 차단받을 수있다.
아쿠아 맥 :
(set-face-attribute 'default nil :font "Monaco-16" )
Emacs Wiki 에서 기본 글꼴을 전체적으로 변경하면 다음 중 하나를 사용할 수 있습니다.
(set-face-attribute 'default nil :font FONT )
(set-frame-font FONT nil t)
어디 FONT
같은 것입니다 "Monaco-16"
예를 들면 :
(set-face-attribute 'default nil :font "Monaco-16" )
위키에 대한 첫 번째 제안에서 추가 닫는 괄호가있어 시작시 오류가 발생했습니다. 마지막으로 추가 괄호를 발견 한 후 위키의 제안을 수정했습니다. 그런 다음 두 제안 모두 나를 위해 일했습니다.
내가 사용하는 히드라 눌러 연속 감소 / 제어 글꼴 증가로 패키지를 f2 + + + +
/ f2 - - - -
을 눌러 것을하는 수단 f2
번 한 다음 사용 +
/ -
전용 제어에 의해 기본 글꼴 크기를 복원합니다 f2 0
. 키패드가 있으므로 글꼴 설정에 키패드도 바인딩합니다.
(defhydra hydra-zoom (global-map "<f2>")
"zoom"
("<kp-add>" text-scale-increase "in")
("+" text-scale-increase "in")
("-" text-scale-decrease "out")
("<kp-subtract>" text-scale-decrease "out")
("0" (text-scale-set 0) "reset")
("<kp-0>" (text-scale-set 0) "reset"))
그리고 아래의 키 바인딩으로 지원되는 최신 편집기 마우스 제어 기능, 제어 + 마우스 휠을 눌러 글꼴을 늘리거나 줄입니다.
(global-set-key (kbd "<C-wheel-up>") 'text-scale-increase)
(global-set-key (kbd "<C-wheel-down>") 'text-scale-decrease)
GNU Emacs 24.3.1 (x86_64-pc-linux-gnu, GTK+ Version 3.10.7)
(global-set-key (kbd "<C-mouse-4>") 'text-scale-increase) (global-set-key (kbd "<C-mouse-5>") 'text-scale-decrease)
내 버전의 이맥스에 있을 것입니다 (25)