Skip to content
View kobapan's full-sized avatar

Block or report kobapan

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. scheme-chicken-hyde scheme-chicken-hyde Public

    Scheme

  2. kokopelli.el kokopelli.el Public

    List class and function. Jump to it.

    Emacs Lisp 2

  3. resize.sh resize.sh Public

    画像サイズを変換するユーティリティプログラム

    Shell 2 1

  4. bookmark-buffers.el bookmark-buffers.el Public

    プロジェクト管理

    Emacs Lisp

  5. elisp *scratch* の永続化 elisp *scratch* の永続化
    1
    (setq initial-scratch-message "")           ; とりあえず initial message を消す
    2
    (add-hook 'kill-emacs-hook 'scratch-save)   ; Emacs終了時に *scratch* を保存
    3
    (add-hook 'window-setup-hook 'scratch-resume); 起動時に.scratchを読み込み
    4
    ;;  window-setup-hook が最後に呼ばれるっぽい
    5
    ;;  @see info 38.1.1 Summary: Sequence of Actions at Startup
  6. 終了時のフレームサイズで起動する 終了時のフレームサイズで起動する
    1
    (add-hook 'kill-emacs-hook 'frame-size-save); Emacs終了時
    2
    (add-hook 'window-setup-hook 'frame-size-resume); Emacs起動時
    3
    (defun frame-size-save ()
    4
      (set-buffer
    5
       (find-file-noselect (expand-file-name "~/.emacs.d/.framesize")))