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

[xyzzy:06962] Re: Jscript-mode,html+-mode の初期化



もう一度確認したら、「アクセスできないシンボルです。:html+-mode」と表示され
ました。
曖昧な記憶で書き込んですいません。。

> | HTML+-modeの読み込み(初期化時)で「html+-modeが無効なキーワードです。」

恥ずかしいですが、これが私のsiteinit.lです。

;; Win
(load-library "winkey")

;; Custom
(setq *show-matched-parenthesis* nil) ; 対応する括弧に飛ばない
(setq *filer-use-recycle-bin* t) ; ごみはごみ箱へ
(setq *move-forward-after-undo-deletion* t) ; ナイスアンドゥ

;; HTML+-Mode
(export 'ed::html+-mode "ed")
(autoload 'html+-mode "html+-mode" t)
(push '("\\.html?$" . html+-mode) *auto-mode-alist*)

;; Jscript Mode
(autoload "jscript-mode")
(push '("\\.js$" . jscript-mode) *auto-mode-alist*)
(setq c-indent-level 4)
(setq *jscript-indent-tabs-mode* t)

;; KaTeX Mode
(require "elisp")
(require "katex")
(push '("\\.tex$" . elisp::katex-mode) *auto-mode-alist*)
(autoload 'elisp::katex-mode "katex" t)

;; Text Mode
(setq *text-mode-hook* 'my-text-mode-hook)
(defun my-text-mode-hook ()
  (auto-fill-mode 1)
  (toggle-ime t))
(push '("\\.TMP$" . text-mode) *auto-mode-alist*)

;; C Mode
(setq c-indent-level 4
      c-continued-statement-offset 4
      c-argdecl-indent 0
      c-brace-offset -4
      c-brace-imaginary-offset 0
      c-label-offset -4)

;; バックアップディレクトリ
(require "backup")
(setq *backup-directory* "d:/temp/")
(setq *hierarchic-backup-directory* t)

;; dabbrev
(setq *dabbrevs-case-fold* t)
(autoload 'dabbrev-expand "dabbrev" t)
(define-key *global-keymap* #\M-/ 'dabbrev-expand)

;; time-stamp
(require "auto-time-stamp")
(define-key ctl-x-map #\C-s 'save-buffer-with-time-stamp)

;;; END

Index Home