Quellcode durchsuchen

misc change for darwin

pull/1/head
10sr vor 11 Jahren
Ursprung
Commit
a7e16d7f7c
1 geänderte Dateien mit 6 neuen und 4 gelöschten Zeilen
  1. +6
    -4
      emacs.el

+ 6
- 4
emacs.el Datei anzeigen

@@ -128,7 +128,7 @@ otherwise the path where the library installed."
(kill-buffer "*scratch*"))) (kill-buffer "*scratch*")))


;; modifier keys ;; modifier keys
(setq mac-option-modifier 'control)
;; (setq mac-option-modifier 'control)
(setq w32-apps-modifier 'meta) (setq w32-apps-modifier 'meta)


;; display ;; display
@@ -300,9 +300,11 @@ drill-instructor.el"


;; (set-face-background 'vertical-border (face-foreground 'mode-line)) ;; (set-face-background 'vertical-border (face-foreground 'mode-line))


(when (eq system-type 'Darwin)
(mac-set-input-method-parameter 'japanese 'cursor-color "red")
(mac-set-input-method-parameter 'roman 'cursor-color "black"))
(and (or (eq system-type 'Darwin)
(eq system-type 'darwin))
(fboundp 'mac-set-input-method-parameter)
(mac-set-input-method-parameter 'japanese 'cursor-color "red")
(mac-set-input-method-parameter 'roman 'cursor-color "black"))


(when (and (boundp 'input-method-activate-hook) ; i dont know this is correct (when (and (boundp 'input-method-activate-hook) ; i dont know this is correct
(boundp 'input-method-inactivate-hook)) (boundp 'input-method-inactivate-hook))


Laden…
Abbrechen
Speichern