LoginSignup
1
1

More than 5 years have passed since last update.

SKK の句讀點を「、。」と「,.」で toggle できるやうにした.

Posted at

次のやうに init.el に書いてやればいい.

init.el
(defun toggle-skk-kutouten-type nil
  (interactive)
  (cond
   ((equal skk-kutouten-type 'en)
    (setq-default skk-kutouten-type 'jp))
   ((equal skk-kutouten-type 'jp)
    (setq-default skk-kutouten-type 'en))
   ((t nil))))


(global-set-key (kbd "<f7>") 'toggle-skk-kutouten-type)
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1