windows10のWSLでUbuntuを動かしており、ターミナル上でemacsを使っているのですが、カーソルの点滅設定がうまく出来なくて困っています。
#####Ubuntu
Ubuntu 18.04 LTS
#####emacs
GNU Emacs 24.5.1
#####init.el
(require 'package)
(add-to-list 'load-path "~/.emacs.d/elisp/")
(add-to-list 'package-archives '("melpa" . "http://melpa.milkbox.net/packages/"))
(add-to-list 'package-archives '("marmalade" . "http://marmalade-repo.org/packages/"))
(package-initialize)
(custom-set-variables
;; custom-set-variables 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.
'(blink-cursor-blinks 10)
'(blink-cursor-delay 0.5)
'(blink-cursor-interval 0.5)
'(blink-cursor-mode t))
(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.
'(cursor ((t (:background "color-194")))))
####ためしてみたこと
・M-x cutomize-group [ret] enterから設定を弄り、init.elに書き込ませる -> 反応なし
・直接init.elに書き込む -> 反応なし
M-`でメニューバーにアクセスし、Options ==> Blink Cursorを選択したら"Blink-Cursor mode disabled"と出たので、恐らく設定上ではenabledになっているものと思われます。
足りない情報などあればご指摘いただけると嬉しいです。
よろしくお願いします。

回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2018/09/28 05:06