You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

1847 lines
65 KiB

  1. ;; 外部ファイル読み込み
  2. ;; (load-file "~/filepath")
  3. ;; (thing-at-point 'word)
  4. ;; (define-generic-mode)
  5. (unless (file-directory-p (expand-file-name "~/.emacs.d"))
  6. (make-directory (expand-file-name "~/.emacs.d")))
  7. (unless (file-directory-p (expand-file-name "~/.emacs.d/lisp"))
  8. (make-directory (expand-file-name "~/.emacs.d/lisp")))
  9. (add-to-list 'load-path "~/.emacs.d/lisp")
  10. (add-to-list 'load-path "~/dbx/Public/myelisp")
  11. (require 'cl)
  12. (defvar my-prefix-map
  13. (make-sparse-keymap))
  14. (global-set-key (kbd "C-z") my-prefix-map)
  15. (define-key my-prefix-map (kbd "C-z") 'suspend-frame)
  16. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  17. ;; start and quit
  18. (setq inhibit-startup-message t)
  19. (setq frame-title-format (list '(:eval (my-format-time-string))
  20. " | %b "
  21. '(:eval (number-to-string (length (buffer-list-not-start-with-space))))
  22. " buffers ["
  23. invocation-name
  24. " "
  25. emacs-version
  26. " "
  27. (symbol-name system-type)
  28. "] "
  29. '(:eval (symbol-name last-command))))
  30. (defun buffer-list-not-start-with-space ()
  31. (let ((bl (buffer-list))
  32. b nbl)
  33. (while bl
  34. (setq b (pop bl))
  35. (unless (string-equal " "
  36. (substring (buffer-name b)
  37. 0
  38. 1))
  39. (add-to-list 'nbl b)))
  40. nbl))
  41. (setq confirm-kill-emacs 'y-or-n-p)
  42. (setq gc-cons-threshold (* 1024 1024 4))
  43. (when window-system
  44. (add-to-list 'default-frame-alist '(cursor-type . box))
  45. (add-to-list 'default-frame-alist '(background-color . "white"))
  46. (add-to-list 'default-frame-alist '(foreground-color . "gray10"))
  47. ;; (add-to-list 'default-frame-alist '(alpha . (80 100 100 100))) ;聞いてないみたい
  48. )
  49. (if window-system (menu-bar-mode 1) (menu-bar-mode 0))
  50. (tool-bar-mode 0)
  51. (set-scroll-bar-mode nil)
  52. (add-hook 'kill-emacs-hook ; 終了時に読み込んで壊れてないか調べる
  53. (lambda ()
  54. (when (file-readable-p "~/.emacs")
  55. (load-file "~/.emacs"))))
  56. (when (eq system-type 'Darwin)
  57. (mac-set-input-method-parameter ’japanese ’cursor-color ”red”)
  58. (mac-set-input-method-parameter ’roman ’cursor-color ”black”))
  59. (when (and (boundp 'input-method-activate-hook) ;ちょっと正しいかわかんない
  60. (boundp 'input-method-inactivate-hook))
  61. (add-hook 'input-method-activate-hook
  62. (lambda () (set-cursor-color "red")))
  63. (add-hook 'input-method-inactivate-hook
  64. (lambda () (set-cursor-color "black"))))
  65. (cd ".") ; when using windows use / instead of \ in default-directory
  66. ;; locale
  67. (set-language-environment "Japanese")
  68. (set-default-coding-systems 'utf-8)
  69. (prefer-coding-system 'utf-8)
  70. (setq system-time-locale "C")
  71. ;; display
  72. (setq redisplay-dont-pause t)
  73. (setq visible-bell t)
  74. (setq ring-bell-function 'ignore)
  75. ;; (comint-show-maximum-output)
  76. ;; change color for border
  77. (set-face-foreground (make-face 'vertical-border-face) "red")
  78. (set-display-table-slot standard-display-table 'vertical-border
  79. (make-glyph-code #x3a 'vertical-border-face))
  80. ;; kill scratch
  81. (add-hook 'after-init-hook
  82. (lambda ()
  83. (kill-buffer "*scratch*")))
  84. (defun my-delete-frame-or-kill-emacs ()
  85. "delete frame when opening multiple frame, kill emacs when only one."
  86. (interactive)
  87. (if (eq 1
  88. (length (frame-list)))
  89. (save-buffers-kill-emacs)
  90. (delete-frame)))
  91. (global-set-key (kbd "C-x C-c") 'my-delete-frame-or-kill-emacs)
  92. (define-key my-prefix-map (kbd "C-x C-c") 'save-buffers-kill-emacs)
  93. ;; modifier keys
  94. (setq mac-option-modifier 'control)
  95. (setq w32-apps-modifier 'meta)
  96. ;; http://www.emacswiki.org/emacs/ChangingCursorDynamically
  97. ;; bufferの保存はなんで必要なんだろう?
  98. ;; Change cursor color according to mode
  99. (defvar hcz-set-cursor-color-color "")
  100. (defvar hcz-set-cursor-color-buffer "")
  101. (defun hcz-set-cursor-color-according-to-mode ()
  102. "change cursor color according to some minor modes."
  103. ;; set-cursor-color is somewhat costly, so we only call it when needed:
  104. (let ((color
  105. (if buffer-read-only "blue"
  106. (if overwrite-mode "yellow"
  107. "black"))))
  108. (unless (and
  109. (string= color hcz-set-cursor-color-color)
  110. (string= (buffer-name) hcz-set-cursor-color-buffer))
  111. (set-cursor-color (setq hcz-set-cursor-color-color color))
  112. (setq hcz-set-cursor-color-buffer (buffer-name)))))
  113. (add-hook 'post-command-hook 'hcz-set-cursor-color-according-to-mode)
  114. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  115. ;; minibuffer
  116. (setq insert-default-directory t)
  117. (setq completion-ignore-case t
  118. read-file-name-completion-ignore-case t
  119. read-buffer-completion-ignore-case t)
  120. (setq resize-mini-window t)
  121. (temp-buffer-resize-mode 1)
  122. (fset 'yes-or-no-p 'y-or-n-p)
  123. (define-key read-expression-map (kbd "TAB") 'lisp-complete-symbol) ; complete symbol when `eval'
  124. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  125. ;; editting
  126. (setq require-final-newline t)
  127. (setq kill-whole-line t)
  128. (setq scroll-conservatively 35
  129. scroll-margin 2
  130. scroll-step 0) ;4行ずつスクロール?
  131. (setq default-major-mode 'text-mode)
  132. (setq next-line-add-newlines nil)
  133. (setq kill-read-only-ok t)
  134. (setq truncate-partial-width-windows nil) ; when splitted horizontally
  135. ;; (setq-default line-spacing 0.2)
  136. (setq-default indicate-empty-lines t) ; なんだろうこれ
  137. (setq-default tab-width 4)
  138. (setq-default indent-tabs-mode nil)
  139. (pc-selection-mode 1)
  140. (delete-selection-mode 1)
  141. ;; key bindings
  142. (global-set-key (kbd "C-m") 'newline-and-indent)
  143. (global-set-key (kbd "C-o") (lambda ()
  144. (interactive)
  145. (goto-char (point-at-eol))
  146. (newline-and-indent)))
  147. (global-set-key (kbd "C-k") 'kill-whole-line)
  148. (global-set-key (kbd "M-k") 'my-copy-whole-line)
  149. ;; (global-set-key "\C-z" 'undo) ; undo is C-/
  150. ;; (global-set-key (kbd "C-<return>") (lambda () (interactive) (insert "\f\n")))
  151. (global-set-key (kbd "M-u") 'undo)
  152. (global-set-key (kbd "C-r") 'query-replace-regexp)
  153. (global-set-key (kbd "C-s") 'isearch-forward-regexp)
  154. (global-set-key (kbd "M-i") (lambda ()
  155. (interactive)
  156. (call-interactively (key-binding (kbd "M-TAB")))))
  157. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  158. ;; letters, font-lock mode and fonts
  159. (show-paren-mode 1)
  160. (setq show-paren-style 'mixed)
  161. (transient-mark-mode 1)
  162. (global-font-lock-mode 1)
  163. (standard-display-ascii ?\n "$\n")
  164. (defface my-eol-face
  165. '((t (:foreground "gray")))
  166. "eol.")
  167. (standard-display-ascii ?\f "---------------------------------------------------------------------------------------^L")
  168. (defface my-pagebreak-face
  169. '((t (:foreground "gray")))
  170. "pagebreak.")
  171. (defvar my-eol-face
  172. '(("\n" . '(0 my-eol-face t nil))))
  173. (defvar my-pagebreak-face
  174. '(("\f" . 'my-pagebreak-face)))
  175. (defvar my-highlight-face
  176. '(("\t" . '(0 highlight t nil))
  177. (" " . '(0 highlight t nil))))
  178. ;; (defvar my-face
  179. ;; '(("\t" . 'highlight)
  180. ;; (" " . 'highlight)
  181. ;; ("\n" . '(0 my-eol-face t nil))
  182. ;; ("\f" . 'my-pagebreak-face)))
  183. ;; 現在行をハイライト
  184. ;; http://wiki.riywo.com/index.php?Meadow
  185. (defface hlline-face
  186. '((((type x w32)
  187. (class color)
  188. (background dark))
  189. (:background "midnightblue")) ; :foreground "white")) ;; ハイライトの文字色は変えない方がいいかも
  190. (((type x w32)
  191. (class color)
  192. (background light))
  193. (:background "gainsboro"))
  194. (t
  195. (:underline "black")))
  196. "*Face used by hl-line.")
  197. ;; (defface hlline-ul-face
  198. ;; '((t (:underline "yellow")))
  199. ;; "underline yellow")
  200. (setq hl-line-face 'hlline-face) ;; (setq hl-line-face nil)
  201. (global-hl-line-mode 1) ;; (hl-line-mode 1)
  202. (setq font-lock-global-modes
  203. '(not
  204. help-mode
  205. eshell-mode
  206. term-mode
  207. Man-mode))
  208. (add-hook 'font-lock-mode-hook
  209. (lambda ()
  210. (font-lock-add-keywords nil my-eol-face)
  211. (font-lock-add-keywords nil my-highlight-face)))
  212. (set-face-foreground 'font-lock-regexp-grouping-backslash "#666")
  213. (set-face-foreground 'font-lock-regexp-grouping-construct "#f60")
  214. ;; fonts
  215. ;; (defun my-w32-set-font ()
  216. ;; "set font for windows."
  217. ;; ((lambda (&rest lists)
  218. ;; (let ((dir "c:/WINDOWS/Fonts")
  219. ;; lfs)
  220. ;; (while lists
  221. ;; (setq lfs (pop lists))
  222. ;; (when (directory-files dir nil (car lfs))
  223. ;; (my-set-ascii-and-jp-font-with-size (cdr lfs))
  224. ;; (setq lists nil)))))
  225. ;; '("^DejaVuSansMono" "dejavu sans mono" 80 "ms gothic" 12)
  226. ;; '("^inconsolata" "inconsolata" 100 "ms gothic" 12)))
  227. ;; (defun my-w32-set-available-ascii-and-jp-font-with-size (&rest lists)
  228. ;; ""
  229. ;; (let ((dir "c:/WINDOWS/Fonts")
  230. ;; lfs)
  231. ;; (while lists
  232. ;; (setq lfs (pop lists))
  233. ;; (when (directory-files dir nil (car lfs))
  234. ;; (my-set-ascii-and-jp-font-with-size (cdr lfs))
  235. ;; (setq lists nil)))))
  236. (defun my-set-ascii-and-jp-font-with-size (list)
  237. ""
  238. (set-face-attribute 'default nil
  239. :family (nth 0 list)
  240. :height (nth 1 list))
  241. (set-fontset-font "fontset-default"
  242. 'japanese-jisx0208
  243. (font-spec :family (nth 2 list) :size (nth 3 list)))
  244. (set-fontset-font "fontset-default"
  245. 'katakana-jisx0201
  246. (font-spec :family (nth 2 list) :size (nth 3 list)))) ; font spec is available in emacs23 and later, cannot used in emacs22
  247. ;; (my-set-ascii-and-jp-font-with-size '("dejavu sans mono" 90 "takaogothic" 13))
  248. ;; (my-set-ascii-and-jp-font-with-size '("dejavu sans mono" 100 "takaogothic" 14))
  249. ;; (my-set-ascii-and-jp-font-with-size '("monaco" 75 "takaogothic" 11))
  250. ;; (my-set-ascii-and-jp-font-with-size '("monaco" 90 "takaogothic" 13))
  251. ;; (my-set-ascii-and-jp-font-with-size '("ProggyCleanTTSZ" 120 "takaogothic" 11))
  252. ;; あ
  253. (defun my-22-set-ascii-and-jp-font-with-size (list)
  254. ""
  255. (set-face-attribute 'default nil
  256. :family (nth 0 list)
  257. :height (nth 1 list))
  258. (set-fontset-font "fontset-default"
  259. 'japanese-jisx0208
  260. (cons (nth 2 list) "jisx0208.*"))
  261. (set-fontset-font "fontset-default"
  262. 'katakana-jisx0201
  263. (cons (nth 2 list) "jisx0201.*")))
  264. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  265. ;; mode-line
  266. (which-function-mode 0)
  267. (line-number-mode 0)
  268. (column-number-mode 0)
  269. (size-indication-mode 0)
  270. (setq mode-line-position
  271. '(:eval (format "L%%l/%d,C%%c"
  272. (count-lines (point-max)
  273. (point-min)))))
  274. ;; http://www.geocities.jp/simizu_daisuke/bunkei-meadow.html#frame-title
  275. ;; display date
  276. (add-hook 'after-init-hook
  277. (lambda ()
  278. (setq display-time-string-forms
  279. '(dayname ", " day " " monthname " " year " " 24-hours ":"minutes ":" seconds))
  280. (setq display-time-string-forms
  281. '((my-format-time-string)))
  282. (when display-time-mode
  283. (display-time-update))
  284. ))
  285. (setq display-time-interval 29)
  286. (setq display-time-day-and-date t)
  287. (if window-system
  288. (display-time-mode 0)
  289. (display-time-mode 1))
  290. ;; current directory
  291. (let ((ls (member 'mode-line-buffer-identification
  292. mode-line-format)))
  293. (setcdr ls
  294. (cons '(:eval (concat " ("
  295. (abbreviate-file-name default-directory)
  296. ")"))
  297. (cdr ls))))
  298. (let ((ls (member 'mode-line-buffer-identification
  299. mode-line-format)))
  300. (setcdr ls
  301. (cons '(:eval (concat " "
  302. my-buffer-file-last-modified-time))
  303. (cdr ls))))
  304. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  305. ;; back up and auto saving
  306. ;; http://www.bookshelf.jp/soft/meadow_24.html#SEC260
  307. (setq make-backup-files t)
  308. ;; (make-directory (expand-file-name "~/.emacsbackup"))
  309. (setq backup-directory-alist
  310. (cons (cons "\\.*$" (expand-file-name "~/.emacs.d/backup"))
  311. backup-directory-alist))
  312. (setq version-control t)
  313. (setq delete-old-versions t)
  314. (setq auto-save-list-file-prefix (expand-file-name "~/.emacs.d/autosave/"))
  315. (setq delete-auto-save-files t)
  316. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  317. ;; for emacsclient
  318. ;; (if window-system (server-start))
  319. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  320. ;; global keys
  321. (define-key my-prefix-map (kbd "C-f") 'make-frame-command)
  322. (define-key my-prefix-map (kbd "C-o") 'occur)
  323. ;; moving around
  324. ;; (global-set-key (kbd "M-j") 'next-line)
  325. ;; (global-set-key (kbd "M-k") 'previous-line)
  326. ;; (global-set-key (kbd "M-h") 'backward-char)
  327. ;; (global-set-key (kbd "M-l") 'forward-char)
  328. ;;(keyboard-translate ?\M-j ?\C-j)
  329. (global-set-key (kbd "M-p") 'backward-paragraph)
  330. (global-set-key (kbd "M-n") 'forward-paragraph)
  331. (global-set-key (kbd "C-<up>") (lambda () (interactive)(scroll-down 1)))
  332. (global-set-key (kbd "C-<down>") (lambda () (interactive)(scroll-up 1)))
  333. (global-set-key (kbd "C-<left>") 'scroll-down)
  334. (global-set-key (kbd "C-<right>") 'scroll-up)
  335. (global-set-key (kbd "C-x M-x") 'execute-extended-command)
  336. (global-set-key (kbd "C-x M-:") 'eval-expression)
  337. ;; C-h and DEL
  338. ;; (global-set-key (kbd "C-h") 'backward-delete-char-untabify)
  339. ;; (global-set-key (kbd "DEL") help-map)
  340. (global-set-key (kbd "C-h") (lambda ()
  341. (interactive)
  342. (call-interactively (key-binding (kbd "DEL")))))
  343. ;; (keyboard-translate ?\^h ?\^?) ; scimにはC-hを送りたい
  344. ;; (keyboard-translate ?\b ?\^h) ; dont translate backspace
  345. ;; (define-key my-prefix-map (kbd "C-h") help-map)
  346. (global-set-key (kbd "C-\\") help-map)
  347. (global-set-key (kbd "C-x DEL") help-map)
  348. (global-set-key (kbd "C-x C-h") help-map)
  349. (define-key help-map "a" 'apropos)
  350. ;; compose window
  351. (global-set-key [?\C--] 'other-window)
  352. (global-set-key [?\C-0] 'delete-window)
  353. (global-set-key [?\C-1] 'delete-other-windows)
  354. (global-set-key [?\C-2] 'split-window-vertically)
  355. (global-set-key [?\C-3] 'split-window-horizontally)
  356. ;; disable annoying keys
  357. (global-set-key [prior] 'ignore)
  358. (global-set-key (kbd "<next>") 'ignore)
  359. (global-set-key [menu] 'ignore)
  360. (global-set-key [down-mouse-1] 'ignore)
  361. (global-set-key [down-mouse-2] 'ignore)
  362. (global-set-key [down-mouse-3] 'ignore)
  363. (global-set-key [mouse-1] 'ignore)
  364. (global-set-key [mouse-2] 'ignore)
  365. (global-set-key [mouse-3] 'ignore)
  366. (global-set-key (kbd "<eisu-toggle>") 'ignore)
  367. (global-set-key (kbd "C-<eisu-toggle>") 'ignore)
  368. (mouse-avoidance-mode 'banish)
  369. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  370. ;; download library from web
  371. ;; (require 'url)
  372. ;; (defun dllib-if-needed (lib url &optional callback bite-compile-p force-download-p) ; dont use it
  373. ;; "if LIB does not exist, download it from URL and rename to \"~/emacs.d/lisp/LIB.el\".
  374. ;; after download LIB successfully call CALLBACK. if LIB already exist, call CALLBACK immediately."
  375. ;; (let* ((dir (expand-file-name "~/.emacs.d/lisp/"))
  376. ;; (lpath (concat dir lib ".el")))
  377. ;; (and (if (or force-download-p (not (locate-library lib)))
  378. ;; (condition-case nil
  379. ;; (progn (url-copy-file url
  380. ;; lpath
  381. ;; t)
  382. ;; (and bite-compile-p
  383. ;; (byte-compile-file lpath)
  384. ;; t))
  385. ;; (error (message "downloading %s...something wrong happened!" url)
  386. ;; nil))
  387. ;; t)
  388. ;; callback
  389. ;; (funcall callback))))
  390. (defun dllib-if-unfound (lib url &optional bite-compile-p force-download-p) ; new version
  391. "if LIB does not exist, download it from URL and locate it to \"~/emacs.d/lisp/LIB.el\".
  392. return nil if LIB unfound and downloading failed, otherwise the path of LIB."
  393. (let* ((dir (expand-file-name "~/.emacs.d/lisp/"))
  394. (lpath (concat dir lib ".el"))
  395. (locate-p (locate-library lib)))
  396. (if (or force-download-p (not locate-p))
  397. (progn (condition-case nil
  398. (progn (message "downloading %s..." url)
  399. (url-copy-file url
  400. lpath
  401. t)
  402. (when bite-compile-p
  403. (byte-compile-file lpath)))
  404. (error (message "downloading %s...something wrong happened!" url)
  405. nil))
  406. (locate-library lib))
  407. locate-p)))
  408. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  409. ;;requireが必要なelispおよびhook
  410. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  411. ;; share clipboard with x
  412. (when (or window-system
  413. (getenv "DESKTOP_SESSION"))
  414. (setq x-select-enable-clipboard t))
  415. ;; urlに細かい説明あり。でも設定は上記だけでよさそう
  416. ;; http://garin.jp/doc/Linux/xwindow_clipboard
  417. (and x-select-enable-clipboard
  418. (executable-find "xclip")
  419. (dllib-if-unfound "xclip" "http://www.emacswiki.org/emacs/download/xclip.el" t)
  420. (require 'xclip nil t)
  421. (turn-on-xclip))
  422. ;; カーソルの場所を保存する
  423. (when (require 'saveplace nil t)
  424. (setq-default save-place t))
  425. ;; その他のhook
  426. (add-hook 'after-save-hook
  427. 'executable-make-buffer-file-executable-if-script-p)
  428. (add-hook 'find-file-hook
  429. (lambda ()
  430. (when buffer-read-only
  431. (view-mode 1))))
  432. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  433. ;; mode関連
  434. ;; (ffap-bindings)
  435. (add-hook 'inferior-python-mode-hook
  436. (lambda ()
  437. (define-key inferior-python-mode-map (kbd "<up>") 'comint-previous-input)
  438. (define-key inferior-python-mode-map (kbd "<down>") 'comint-next-input)))
  439. (add-to-list 'Info-default-directory-list (expand-file-name "~/.info/emacs-ja"))
  440. (setq bookmark-default-file "~/.emacs.d/bmk")
  441. (add-hook 'apropos-mode-hook
  442. (lambda ()
  443. (define-key apropos-mode-map "j" 'next-line)
  444. (define-key apropos-mode-map "k" 'previous-line)))
  445. (define-key minibuffer-local-map (kbd "C-u") (lambda () (interactive) (delete-region (point-at-bol) (point-at-eol))))
  446. (add-hook 'isearch-mode-hook
  447. (lambda ()
  448. ;; (define-key isearch-mode-map (kbd "C-j") 'isearch-other-control-char)
  449. ;; (define-key isearch-mode-map (kbd "C-k") 'isearch-other-control-char)
  450. ;; (define-key isearch-mode-map (kbd "C-h") 'isearch-other-control-char)
  451. (define-key isearch-mode-map (kbd "C-h") 'isearch-delete-char)
  452. (define-key isearch-mode-map (kbd "M-r") 'isearch-query-replace-regexp)))
  453. (add-hook 'outline-mode-hook
  454. (lambda ()
  455. (if (string-match "\\.md$" buffer-file-name)
  456. (set (make-local-variable 'outline-regexp) "#+ "))))
  457. (add-to-list 'auto-mode-alist (cons "\\.ol$" 'outline-mode))
  458. (add-to-list 'auto-mode-alist (cons "\\.md$" 'outline-mode))
  459. (when (dllib-if-unfound "markdown-mode"
  460. "http://jblevins.org/projects/markdown-mode/markdown-mode.el"
  461. t)
  462. (add-to-list 'auto-mode-alist (cons "\\.md$" 'markdown-mode))
  463. (autoload 'markdown-mode "markdown-mode" "Major mode for editing Markdown files." nil)
  464. (add-hook 'markdown-mode-hook
  465. (lambda ()
  466. (outline-minor-mode 1)
  467. (set (make-local-variable 'comment-start) ";"))))
  468. ;; (add-hook 'c-mode-hook
  469. ;; (lambda ()
  470. ;; (set (make-local-variable 'comment-start) "//")
  471. ;; (set (make-local-variable 'comment-end) "")))
  472. ;; http://d.hatena.ne.jp/emergent/20070203/1170512717
  473. ;; c-mode
  474. ;; (setq c-default-style "bsd")
  475. ;; BackSpace キーを「賢く」し,インデント幅は2桁,タブはスペースに展開
  476. (add-hook 'c-mode-common-hook
  477. (lambda ()
  478. (setq c-basic-offset 2
  479. indent-tabs-mode nil)
  480. ;; (set-face-foreground 'font-lock-keyword-face "blue")
  481. ))
  482. (defun my-compile-c-this-file ()
  483. ""
  484. (interactive)
  485. (compile (format "gcc -Wall -g -o %s %s"
  486. (file-name-sans-extension buffer-file-name)
  487. buffer-file-name)))
  488. (when (dllib-if-unfound "js2-mode"
  489. "https://github.com/mooz/js2-mode/raw/master/js2-mode.el"
  490. t)
  491. (autoload 'js2-mode "js2-mode" nil t)
  492. (add-to-list 'auto-mode-alist '("\\.js$" . js2-mode)))
  493. ;; (add-hook 'js2-mode-hook
  494. ;; (lambda ()
  495. ;; (add-hook 'before-save-hook
  496. ;; 'my-indent-buffer
  497. ;; nil
  498. ;; t)))
  499. (add-hook 'js2-mode-hook
  500. (lambda ()
  501. (define-key js2-mode-map (kbd "C-m") (lambda ()
  502. (interactive)
  503. (js2-enter-key)
  504. (indent-for-tab-command)))
  505. (add-hook (kill-local-variable 'before-save-hook)
  506. 'js2-before-save)))
  507. (when (require 'zone nil t)
  508. ;; (zone-when-idle 180)
  509. (run-with-idle-timer 180 t (lambda ()
  510. (unless (memq major-mode
  511. '(term-mode))
  512. (zone))))
  513. )
  514. (when (require 'uniquify nil t)
  515. (setq uniquify-buffer-name-style 'post-forward-angle-brackets)
  516. (setq uniquify-ignore-buffers-re "*[^*]+*")
  517. (setq uniquify-min-dir-content 1))
  518. (add-hook 'view-mode-hook
  519. (lambda()
  520. (define-key view-mode-map "j" (lambda() (interactive) (scroll-up 1)))
  521. (define-key view-mode-map "k" (lambda() (interactive) (scroll-down 1)))
  522. (define-key view-mode-map "/" 'isearch-forward)
  523. (define-key view-mode-map "v" 'toggle-read-only)
  524. (define-key view-mode-map "q" 'kill-this-buffer)))
  525. (global-set-key "\M-r" 'view-mode)
  526. (add-hook 'Man-mode-hook
  527. (lambda ()
  528. (view-mode 1)
  529. (setq truncate-lines nil)))
  530. (setq Man-notify-method (if window-system
  531. 'newframe
  532. 'pushy))
  533. ;; (setq multi-term-program shell-file-name)
  534. (and (dllib-if-unfound "multi-term"
  535. "http://www.emacswiki.org/emacs/download/multi-term.el"
  536. t)
  537. (require 'multi-term nil t))
  538. ;; http://d.hatena.ne.jp/goinger/20100416/1271399150
  539. ;; (setq term-ansi-default-program shell-file-name)
  540. (add-hook 'term-setup-hook (lambda ()
  541. (setq term-display-table (make-display-table))))
  542. (add-hook 'term-mode-hook (lambda ()
  543. (define-key term-raw-map "\C-y" 'term-paste)
  544. ;; (define-key term-raw-map "\C-q" 'move-beginning-of-line)
  545. ;; (define-key term-raw-map "\C-r" 'term-send-raw)
  546. ;; (define-key term-raw-map "\C-s" 'term-send-raw)
  547. ;; (define-key term-raw-map "\C-f" 'forward-char)
  548. ;; (define-key term-raw-map "\C-b" 'backward-char)
  549. ;; (define-key term-raw-map "\C-t" 'set-mark-command)
  550. (define-key term-raw-map (kbd "ESC") 'term-send-raw)
  551. (define-key term-raw-map [delete] 'term-send-raw)
  552. (define-key term-raw-map "\C-c" 'term-send-raw)
  553. (define-key term-raw-map "\C-x" (lookup-key (current-global-map) "\C-x"))
  554. (define-key term-raw-map "\C-z" (lookup-key (current-global-map) "\C-z"))
  555. (set (make-variable-buffer-local 'scroll-margin) 0)))
  556. ;; (add-hook 'term-exec-hook 'forward-char)
  557. ;; (when (and (executable-find "git")
  558. ;; (require 'sgit-mode nil t))
  559. ;; (add-hook 'find-file-hook
  560. ;; 'sgit-load))
  561. (when (require 'gtkbm nil t)
  562. (global-set-key (kbd "C-x C-d") 'gtkbm))
  563. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  564. ;; gmail
  565. (setq mail-interactive t
  566. send-mail-function 'smtpmail-send-it
  567. ;; message-send-mail-function 'smtpmail-send-it
  568. smtpmail-smtp-server "smtp.gmail.com"
  569. smtpmail-smtp-service 587
  570. smtpmail-starttls-credentials '(("smtp.gmail.com" 587 "8.slashes@gmail.com" nil))
  571. smtpmail-auth-credentials '(("smtp.gmail.com" 587 "8.slashes@gmail.com" nil))
  572. user-mail-address "8.slashes@gmail.com")
  573. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  574. ;; buffer killing
  575. ;; (add-hook 'kill-buffer-hook
  576. ;; (lambda ()
  577. ;; (when buffer-file-name
  578. ;; (dired "."))))
  579. (defun kill-buffer-by-major-mode (mode &optional exclude-current-buffer-p) ;mapcarとかつかって全部書き換える
  580. "kill buffers.
  581. if EXCLUDE-CURRENT-BUFFER-P is non-nil, never kill current buffer"
  582. (interactive "xmajor mode of buffer to kill: ")
  583. (save-excursion
  584. (let ((bflist (buffer-list))
  585. (cbf (current-buffer))
  586. bf)
  587. (while bflist
  588. (setq bf (pop bflist))
  589. (set-buffer bf)
  590. (if (and (eq mode major-mode) ;メジャーモードが一致し、かつ
  591. (not (and exclude-current-buffer-p ;今のバッファを除外、今のバッファと一致 がともには満たされない
  592. (eq bf cbf))))
  593. (kill-buffer bf))))))
  594. (defun my-kill-this-buffer-when-hide (&optional buffer all-frames)
  595. ""
  596. (interactive)
  597. (let ((bf (or buffer
  598. (current-buffer))))
  599. (if (or (not buffer) (get-buffer-window bf all-frames))
  600. (run-with-timer 3 nil 'my-kill-this-buffer-when-hide bf all-frames)
  601. (kill-buffer bf))))
  602. ;; (add-hook 'dired-mode-hook
  603. ;; 'my-kill-this-buffer-when-hide)
  604. (defvar my-kill-previous-buffer nil)
  605. (defun my-kill-previous-buffer ()
  606. ""
  607. (when my-kill-previous-buffer
  608. (kill-buffer my-kill-previous-buffer))
  609. (setq my-kill-previous-buffer (current-buffer)))
  610. ;; (add-hook 'dired-mode-hook
  611. ;; 'my-kill-previous-buffer)
  612. (defun my-query-kill-this-buffer ()
  613. ""
  614. (interactive)
  615. (if (y-or-n-p (concat "kill this buffer? :"))
  616. (kill-buffer (current-buffer))))
  617. (substitute-key-definition 'kill-buffer 'my-query-kill-this-buffer global-map)
  618. ;;(global-set-key "\C-xk" 'my-query-kill-this-buffer)
  619. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  620. ;; buffer switching
  621. (when (require 'bs nil t)
  622. (global-set-key "\C-x\C-b" 'bs-show))
  623. ;; (add-to-list 'bs-configurations '("processes" nil get-buffer-process ".*" nil nil))
  624. (add-to-list 'bs-configurations '("same-dir" nil buffer-same-dir-p ".*" nil nil))
  625. ;; (setq bs-configurations (list '("processes" nil get-buffer-process ".*" nil nil)
  626. ;; '("files-and-scratch" "^\\*scratch\\*$" nil nil bs-visits-non-file bs-sort-buffer-interns-are-last)))
  627. (setq bs-default-configuration "all")
  628. (add-hook 'bs-mode-hook
  629. (lambda ()
  630. (setq bs-default-configuration "all")))
  631. (defun buffer-same-dir-p (bf)
  632. "return t if BF's dir is same as current dir, otherwise nil."
  633. (let ((cdir (expand-file-name default-directory)))
  634. (with-current-buffer bf
  635. (equal (expand-file-name default-directory) cdir))))
  636. (defun echo-buffer-list (&optional blist)
  637. "echo buffer list as string. BLIST is list with buffer objects as elements.
  638. if arg is omitted use value of `buffer-list'."
  639. (interactive)
  640. (message (or (mapconcat (lambda (bf)
  641. (concat (buffer-name bf)
  642. "\t"
  643. (with-current-buffer bf
  644. (symbol-name major-mode))
  645. "\t"
  646. (abbreviate-file-name (buffer-file-name bf))))
  647. (or blist
  648. (buffer-list))
  649. "\n")
  650. "")))
  651. (defun my-buffer-list ()
  652. "return buffer list."
  653. (delq nil
  654. (mapcar (lambda (bf)
  655. (with-current-buffer bf
  656. (and buffer-file-name
  657. bf)))
  658. (buffer-list (selected-frame)))))
  659. (defvar buffer-switch-list-function 'my-buffer-list)
  660. (defun switch-to-previous-buffer-cycle (&optional silent-p)
  661. ""
  662. (interactive)
  663. (let ((bl (funcall buffer-switch-list-function)))
  664. (when bl
  665. (bury-buffer (car bl))
  666. (switch-to-buffer (or (nth 1 bl)
  667. (car bl)))
  668. (or silent-p
  669. (echo-buffer-list (funcall buffer-switch-list-function))))))
  670. (defun switch-to-next-buffer-cycle (&optional silent-p)
  671. ""
  672. (interactive)
  673. (let* ((bl (funcall buffer-switch-list-function))
  674. (bf (nth (- (length bl)
  675. 1)
  676. bl)))
  677. (when bl
  678. (switch-to-buffer bf)
  679. (or silent-p
  680. (echo-buffer-list (funcall buffer-switch-list-function))))))
  681. (iswitchb-mode 1)
  682. (defun iswitchb-buffer-display-other-window ()
  683. ""
  684. (interactive)
  685. (let ((iswitchb-default-method 'display))
  686. (call-interactively 'iswitchb-buffer)))
  687. (defun switch-to-other-buffer ()
  688. ""
  689. (interactive)
  690. (let ((buffer-switch-list-function 'buffer-list))
  691. (switch-to-previous-buffer-cycle t)))
  692. (global-set-key (kbd "C-.") 'switch-to-previous-buffer-cycle)
  693. (global-set-key (kbd "C-,") 'switch-to-next-buffer-cycle)
  694. ;; (global-set-key (kbd "C-\\") 'switch-to-other-buffer)
  695. ;; (global-set-key (kbd "C-\\") 'bury-buffer)
  696. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  697. ;; sdic
  698. (defun sdic-describe-word-echo ()
  699. ""
  700. (interactive)
  701. (save-window-excursion
  702. (sdic-describe-word-at-point))
  703. (save-excursion
  704. (set-buffer sdic-buffer-name)
  705. (message (buffer-substring (point-min)
  706. (progn (goto-char (point-min))
  707. (or (and (re-search-forward "^\\w" nil t 4)
  708. (progn (previous-line) t)
  709. (point-at-eol))
  710. (point-max)))))))
  711. (setq sdic-eiwa-dictionary-list '((sdicf-client "/usr/share/dict/gene.sdic")))
  712. (setq sdic-waei-dictionary-list '((sdicf-client "/usr/share/dict/jedict.sdic" (add-keys-to-headword t))))
  713. (setq sdic-disable-select-window t)
  714. (setq sdic-window-height 7)
  715. (when (require 'sdic nil t)
  716. (global-set-key "\C-cw" 'sdic-describe-word)
  717. (global-set-key "\C-ct" 'sdic-describe-word-at-point)
  718. (global-set-key "\C-t" 'sdic-describe-word-echo))
  719. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  720. ;; vc
  721. ;; (require 'vc)
  722. (unless (executable-find "rcs")
  723. (setq vc-handled-backends (delq 'RCS vc-handled-backends)))
  724. (unless (executable-find "git")
  725. (setq vc-handled-backends (delq 'Git vc-handled-backends)))
  726. (defadvice vc-rcs-register (after rcs-register-non-strict-locking activate)
  727. ""
  728. (when (eq (vc-backend (buffer-file-name)) 'RCS)
  729. (vc-rcs-set-non-strict-locking (buffer-file-name))))
  730. (defadvice vc-next-action (before rcs-save-before-next-action activate)
  731. ""
  732. (save-buffer))
  733. (setq vc-command-messages t)
  734. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  735. ;; gauche-mode
  736. (setq scheme-program-name "gosh")
  737. (defun run-gauche-other-window ()
  738. "Run gauche on other window"
  739. (interactive)
  740. (switch-to-buffer-other-window
  741. (get-buffer-create "*scheme*"))
  742. (run-gauche))
  743. (defun run-gauche ()
  744. "run gauche"
  745. (run-scheme "gosh"))
  746. (defun scheme-send-buffer ()
  747. ""
  748. (interactive)
  749. (scheme-send-region (point-min) (point-max)))
  750. (add-hook 'scheme-mode-hook
  751. (lambda ()
  752. (define-key scheme-mode-map "\C-c\C-b" 'scheme-send-buffer)))
  753. ;; http://d.hatena.ne.jp/kobapan/20090305/1236261804
  754. ;; http://www.katch.ne.jp/~leque/software/repos/gauche-mode/gauche-mode.el
  755. (when (dllib-if-unfound "gauche-mode"
  756. "http://www.katch.ne.jp/~leque/software/repos/gauche-mode/gauche-mode.el"
  757. t)
  758. (setq auto-mode-alist
  759. (cons '("\.scm$" . gauche-mode) auto-mode-alist))
  760. (autoload 'gauche-mode "gauche-mode" "Major mode for Scheme." t)
  761. (autoload 'run-scheme "gauche-mode" "Run an inferior Scheme process." t)
  762. (add-hook 'gauche-mode-hook
  763. (lambda ()
  764. (define-key scheme-mode-map "\C-c\C-z" 'run-gauche-other-window))))
  765. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  766. ;; recentf-mode
  767. (add-hook 'recentf-dialog-mode-hook
  768. 'my-recentf-abbrev-list)
  769. (defun my-recentf-delete-entry ()
  770. ""
  771. (interactive)
  772. (let ((p (point)))
  773. (setq recentf-list
  774. (delete (my-recentf-get-filename) recentf-list))
  775. (recentf-open-files)
  776. (goto-char p)))
  777. (defun my-recentf-abbrev-list ()
  778. ""
  779. (setq recentf-list
  780. (mapcar 'abbreviate-file-name
  781. recentf-list)))
  782. (defun my-recentf-view-file ()
  783. ""
  784. (interactive)
  785. (view-file (my-recentf-get-filename)))
  786. (defun my-recentf-dired ()
  787. ""
  788. (interactive)
  789. (let ((file (my-recentf-get-filename)))
  790. (if (file-directory-p file)
  791. (dired file)
  792. (dired (or (file-name-directory file)
  793. ".")))))
  794. (defun my-recentf-x-open ()
  795. ""
  796. (interactive)
  797. (my-x-open (my-recentf-get-filename)))
  798. (defun my-recentf-cd-and-find-file ()
  799. ""
  800. (interactive)
  801. (cd (file-name-directory (my-recentf-get-filename)))
  802. (call-interactively 'find-file))
  803. (defun my-recentf-get-filename ()
  804. "get file name in recentf-mode"
  805. (replace-regexp-in-string " \\(\\[.+?\\] \\)?" ; " " or " [\\d] "
  806. ""
  807. (buffer-substring-no-properties (point-at-bol)
  808. (point-at-eol))))
  809. (setq recentf-save-file (expand-file-name "~/.emacs.d/.recentf")
  810. recentf-max-menu-items 20
  811. recentf-max-saved-items 30
  812. recentf-show-file-shortcuts-flag nil)
  813. (when (require 'recentf nil t)
  814. (global-set-key "\C-x\C-r" 'recentf-open-files)
  815. ;; (add-hook 'find-file-hook
  816. ;; (lambda ()
  817. ;; (recentf-add-file default-directory)))
  818. (recentf-mode 1)
  819. (add-to-list 'recentf-filename-handlers 'abbreviate-file-name)
  820. (add-to-list 'recentf-exclude "\\.emacs\\.d/\\.recentf"))
  821. (add-hook 'recentf-dialog-mode-hook
  822. (lambda ()
  823. (recentf-save-list)
  824. ;; (define-key recentf-dialog-mode-map (kbd "C-x C-f") 'my-recentf-cd-and-find-file)
  825. (define-key recentf-dialog-mode-map (kbd "<up>") 'previous-line)
  826. (define-key recentf-dialog-mode-map (kbd "<down>") 'next-line)
  827. (define-key recentf-dialog-mode-map "o" 'my-recentf-x-open)
  828. (define-key recentf-dialog-mode-map "d" 'my-recentf-delete-entry)
  829. (define-key recentf-dialog-mode-map "@" 'my-recentf-dired)
  830. (define-key recentf-dialog-mode-map "v" 'my-recentf-view-file)
  831. (cd "~/")))
  832. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  833. ;; dired
  834. (require 'dired)
  835. (require 'dired-aux) ;; needed to use dired-dwim-target-directory
  836. (defun my-dired-do-compress-or-uncompress ()
  837. ""
  838. (interactive)
  839. (let* ((infiles (dired-get-marked-files t))
  840. (onefile (and (eq 1 ; filename if only one file targeted, otherwise nil.
  841. (length infiles))
  842. (car infiles))))
  843. (if (and onefile
  844. (assoc (file-name-extension onefile)
  845. my-compress-program-alist))
  846. (when (y-or-n-p (format "uncompress %s? " onefile))
  847. (my-uncompress onefile)
  848. (revert-buffer))
  849. (let* ((dir-default (dired-dwim-target-directory))
  850. (outfile-default (my-compress-file-extension (concat dir-default
  851. (file-name-nondirectory (car infiles)))))
  852. (outfile (if (interactive-p)
  853. (read-file-name (format "Output file to compress (default for %s) : "
  854. outfile-default)
  855. dir-default
  856. outfile-default)
  857. outfile-default)))
  858. (apply 'my-compress
  859. outfile
  860. infiles)
  861. (revert-buffer)))
  862. (dired-unmark-all-marks)))
  863. (defun my-file-name-extension-with-tar (filename)
  864. "if FILENAME has extension with tar, like \"tar.gz\", return that.
  865. otherwise, return extension normally."
  866. (if (string-equal "tar" (file-name-extension (file-name-sans-extension filename)))
  867. (concat "tar."
  868. (file-name-extension filename))
  869. (file-name-extension filename)))
  870. (defun my-compress-file-extension (filename)
  871. "if FILENAME has extension and it can be used for compress, return FILENAME.
  872. otherwise, return FILENAME with `my-compress-default-extension'"
  873. (if (assoc (file-name-extension filename)
  874. my-compress-program-alist)
  875. filename
  876. (concat filename "." my-compress-default-extension)))
  877. (defvar my-7z-program
  878. (or (executable-find "7z")
  879. (executable-find "7za")
  880. (executable-find "7zr")))
  881. (defvar my-compress-default-extension
  882. "7z")
  883. (defvar my-compress-program-alist
  884. `(("7z" ,my-7z-program "a" ,my-7z-program "x")
  885. ("tar" "tar" "cvf" "tar" "xvf")
  886. ("tgz" "tar" "czf" "tar" "xzf")
  887. ("txz" "tar" "cJf" "tar" "xJf")
  888. ("zip" "zip" "-r" "unzip" nil)))
  889. (defun my-uncompress (file)
  890. ""
  891. (interactive "fFile to extract: ")
  892. (let* ((efile (expand-file-name file))
  893. (ext (file-name-extension efile))
  894. (lst (assoc ext
  895. my-compress-program-alist))
  896. (com (nth 3 lst))
  897. (op (nth 4 lst))
  898. (args (if op
  899. (list op efile)
  900. (list efile))))
  901. (message "uncompressing %s..." file)
  902. (apply 'call-process
  903. com
  904. nil
  905. (my-pop-to-buffer-erase-noselect "*compressing output*")
  906. t
  907. args)
  908. (message "uncompressing %s...done." file)))
  909. (defun my-compress (outfile &rest infiles)
  910. "if outfile have extension for compress, use it.
  911. otherwise, use `my-compress-default-extension'. for compress."
  912. (let* ((outfile-ext (my-compress-file-extension (expand-file-name outfile)))
  913. (ext (file-name-extension outfile-ext))
  914. (lst (assoc ext
  915. my-compress-program-alist))
  916. (com (nth 1 lst))
  917. (op (nth 2 lst))
  918. (args (if op
  919. (apply 'list
  920. op
  921. outfile-ext
  922. infiles)
  923. (apply 'list
  924. outfile-ext
  925. infiles))))
  926. (message "compressing to %s..." outfile)
  927. (apply 'call-process
  928. com
  929. nil
  930. (my-pop-to-buffer-erase-noselect "*compressing output*")
  931. t
  932. args)
  933. (message "compressing to %s...done." outfile)))
  934. (defun my-pop-to-buffer-erase-noselect (buffer-or-name)
  935. "pop up buffer using `display-buffer' and return that buffer."
  936. (let ((bf (get-buffer-create buffer-or-name)))
  937. (with-current-buffer bf
  938. (cd ".")
  939. (erase-buffer))
  940. (display-buffer bf)
  941. bf))
  942. (defun my-replace-nasi-none ()
  943. ""
  944. (save-excursion
  945. (let ((buffer-read-only nil))
  946. (goto-char (point-min))
  947. (while (search-forward "なし" nil t)
  948. (replace-match "none")))))
  949. (defun dired-get-du () ;em-unix.el使えるかも
  950. "dired get disk usage"
  951. (interactive)
  952. (message "calculating du...")
  953. (dired-do-shell-command "du -hs * " nil (dired-get-marked-files)))
  954. (defun my-dired-scroll-up ()
  955. ""
  956. (interactive)
  957. (my-dired-previous-line (- (window-height) 1)))
  958. (defun my-dired-scroll-down ()
  959. ""
  960. (interactive)
  961. (my-dired-next-line (- (window-height) 1)))
  962. (defun my-dired-previous-line (&optional arg)
  963. ""
  964. (interactive)
  965. (dired-previous-line (or arg 1))
  966. (my-dired-print-current-dir-and-file))
  967. (defun my-dired-next-line (&optional arg)
  968. ""
  969. (interactive)
  970. (dired-next-line (or arg 1))
  971. (my-dired-print-current-dir-and-file))
  972. (defun my-dired-print-current-dir-and-file ()
  973. (message "%s %s"
  974. default-directory
  975. (buffer-substring-no-properties (point-at-bol)
  976. (point-at-eol))))
  977. (defun dired-do-execute-as-command ()
  978. ""
  979. (interactive)
  980. (let ((file (dired-get-filename t)))
  981. (if (file-executable-p file)
  982. (start-process file nil file)
  983. (when (y-or-n-p "this file cant be executed. mark as executable and go? : ")
  984. (set-file-modes file (file-modes-symbolic-to-number "u+x" (file-modes file)))
  985. (start-process file nil file)))))
  986. ;;http://bach.istc.kobe-u.ac.jp/lect/tamlab/ubuntu/emacs.html
  987. (defun my-dired-x-open ()
  988. ""
  989. (interactive)
  990. (my-x-open (dired-get-filename t t)))
  991. (defun my-dired-up-directory ()
  992. ""
  993. (interactive)
  994. (my-dired-find-file ".."))
  995. (defun my-dired-find-file (&optional filename)
  996. ""
  997. (interactive)
  998. (let ((f (expand-file-name (or filename
  999. (dired-get-filename))))
  1000. (bf (current-buffer)))
  1001. (find-file f)
  1002. (when (and (file-directory-p f)
  1003. (not (get-buffer-window bf)))
  1004. (kill-buffer bf))))
  1005. (setq dired-listing-switches "-lhFG --time-style=long-iso")
  1006. (define-minor-mode my-dired-display-all-mode
  1007. ""
  1008. :init-value nil
  1009. (if my-dired-display-all-mode
  1010. (setq dired-actual-switches
  1011. (concat "-A "
  1012. dired-actual-switches))
  1013. (setq dired-actual-switches
  1014. (replace-regexp-in-string "-A " "" dired-actual-switches)))
  1015. (when (eq major-mode 'dired-mode)
  1016. (revert-buffer)))
  1017. (put 'dired-find-alternate-file 'disabled nil)
  1018. (require 'ls-lisp)
  1019. ;; (setq ls-lisp-use-insert-directory-program nil)
  1020. (setq ls-lisp-dirs-first t)
  1021. (setq dired-ls-F-marks-symlinks t)
  1022. (setq dired-dwim-target t)
  1023. ;; (add-hook 'dired-after-readin-hook
  1024. ;; 'my-replace-nasi-none)
  1025. (add-hook 'after-init-hook
  1026. (lambda ()
  1027. (dired ".")))
  1028. (add-hook 'dired-mode-hook
  1029. (lambda ()
  1030. (define-key dired-mode-map "o" 'my-dired-x-open)
  1031. (define-key dired-mode-map "i" 'dired-get-du)
  1032. (define-key dired-mode-map "!" 'shell-command)
  1033. (define-key dired-mode-map "&" 'async-shell-command)
  1034. (define-key dired-mode-map "X" 'dired-do-async-shell-command)
  1035. (define-key dired-mode-map "B" 'gtkbm-add-current-dir)
  1036. (define-key dired-mode-map "b" 'gtkbm)
  1037. (define-key dired-mode-map "@" (lambda () (interactive) (my-x-open ".")))
  1038. (define-key dired-mode-map (kbd "TAB") 'other-window)
  1039. (define-key dired-mode-map "Z" 'my-dired-do-compress-or-uncompress)
  1040. (define-key dired-mode-map "a" 'my-dired-display-all-mode)
  1041. (define-key dired-mode-map "h" 'my-dired-display-all-mode)
  1042. (substitute-key-definition 'dired-advertised-find-file 'my-dired-find-file dired-mode-map)
  1043. (substitute-key-definition 'dired-up-directory 'my-dired-up-directory dired-mode-map)
  1044. (define-key dired-mode-map (kbd "DEL") 'my-dired-up-directory)
  1045. (substitute-key-definition 'dired-next-line 'my-dired-next-line dired-mode-map)
  1046. (substitute-key-definition 'dired-previous-line 'my-dired-previous-line dired-mode-map)
  1047. (define-key dired-mode-map (kbd "<left>") 'my-dired-scroll-up)
  1048. (define-key dired-mode-map (kbd "<right>") 'my-dired-scroll-down)
  1049. (let ((file "._Icon\015"))
  1050. (when (file-readable-p file)
  1051. (delete-file file)))))
  1052. ;; http://homepage1.nifty.com/blankspace/emacs/dired.html
  1053. ;; (add-hook 'dired-load-hook
  1054. ;; (lambda ()
  1055. ;; (load-library "ls-lisp")
  1056. ;; (setq ls-lisp-dirs-first t)
  1057. ;; (setq dired-listing-switches "-alhF"))) ;これ書く場所間違えてね?
  1058. ;; (defadvice dired-next-line (after dired-next-line-print-directory activate)
  1059. ;; "print current directory when go down line"
  1060. ;; (dired-print-current-dir-and-file))
  1061. ;; (defadvice dired-previous-line (after dired-previous-line-print-directory activate)
  1062. ;; "print current directory when go up line"
  1063. ;; (dired-print-current-dir-and-file))
  1064. ;; http://blog.livedoor.jp/tek_nishi/archives/4693204.html
  1065. (defun my-dired-toggle-mark()
  1066. (let ((cur (cond ((eq (following-char) dired-marker-char) ?\040)
  1067. (t dired-marker-char))))
  1068. (delete-char 1)
  1069. (insert cur)))
  1070. (defun my-dired-mark (arg)
  1071. "toggle mark the current (or next ARG) files.
  1072. If on a subdir headerline, mark all its files except `.' and `..'.
  1073. Use \\[dired-unmark-all-files] to remove all marks
  1074. and \\[dired-unmark] on a subdir to remove the marks in
  1075. this subdir."
  1076. (interactive "P")
  1077. (if (dired-get-subdir)
  1078. (save-excursion (dired-mark-subdir-files))
  1079. (let ((inhibit-read-only t))
  1080. (dired-repeat-over-lines
  1081. (prefix-numeric-value arg)
  1082. 'my-dired-toggle-mark))))
  1083. (defun my-dired-mark-backward (arg)
  1084. "In Dired, move up lines and toggle mark there.
  1085. Optional prefix ARG says how many lines to unflag; default is one line."
  1086. (interactive "p")
  1087. (my-dired-mark (- arg)))
  1088. (defun dired-mode-hooks()
  1089. (local-set-key (kbd "SPC") 'my-dired-mark)
  1090. (local-set-key (kbd "S-SPC") 'my-dired-mark-backward))
  1091. (add-hook 'dired-mode-hook 'dired-mode-hooks)
  1092. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1093. ;; eshell
  1094. (defun my-eshell-backward-delete-char ()
  1095. (interactive)
  1096. (when (< (save-excursion
  1097. (eshell-bol)
  1098. (point))
  1099. (point))
  1100. (backward-delete-char 1)))
  1101. (defvar my-eshell-frame-buffer-alist nil)
  1102. (defun my-eshell-frame-buffer (frame)
  1103. "get buffer associated with FRAME. if buffer doesnt exist or killed, return nil."
  1104. (let ((bf (cdr (assq frame my-eshell-frame-buffer-alist))))
  1105. (and bf ;関連付けられたバッファが存在し
  1106. (buffer-name bf) ;かつkillされてない
  1107. bf)))
  1108. (add-hook 'eshell-mode-hook
  1109. (lambda ()
  1110. (add-to-list 'my-eshell-frame-buffer-alist
  1111. (cons (selected-frame) (current-buffer)))))
  1112. (defun my-file-owner-p (file)
  1113. "t if FILE is owned by me."
  1114. (eq (user-uid) (nth 2 (file-attributes file))))
  1115. ;; ;; http://www.bookshelf.jp/pukiwiki/pukiwiki.php?Eshell%A4%F2%BB%C8%A4%A4%A4%B3%A4%CA%A4%B9
  1116. ;; ;; written by Stefan Reichoer <reichoer@web.de>
  1117. ;; (defun eshell/less (&rest args)
  1118. ;; "Invoke `view-file' on the file.
  1119. ;; \"less +42 foo\" also goes to line 42 in the buffer."
  1120. ;; (if args
  1121. ;; (while args
  1122. ;; (if (string-match "\\`\\+\\([0-9]+\\)\\'" (car args))
  1123. ;; (let* ((line (string-to-number (match-string 1 (pop args))))
  1124. ;; (file (pop args)))
  1125. ;; (view-file file)
  1126. ;; (goto-line line))
  1127. ;; (view-file (pop args))))))
  1128. (defun eshell/o (&optional file)
  1129. (my-x-open (or file ".")))
  1130. ;; (defun eshell/vi (&rest args)
  1131. ;; "Invoke `find-file' on the file.
  1132. ;; \"vi +42 foo\" also goes to line 42 in the buffer."
  1133. ;; (while args
  1134. ;; (if (string-match "\\`\\+\\([0-9]+\\)\\'" (car args))
  1135. ;; (let* ((line (string-to-number (match-string 1 (pop args))))
  1136. ;; (file (pop args)))
  1137. ;; (find-file file)
  1138. ;; (goto-line line))
  1139. ;; (find-file (pop args)))))
  1140. (defun eshell/clear ()
  1141. "Clear the current buffer, leaving one prompt at the top."
  1142. (let ((inhibit-read-only t))
  1143. (erase-buffer)))
  1144. (defun eshell/d (&optional dirname switches)
  1145. "if first arg is omitted open current directory."
  1146. (dired (or dirname ".") switches))
  1147. (defun eshell/v ()
  1148. (view-mode 1))
  1149. (defalias 'eshell/: 'ignore)
  1150. (defalias 'eshell/type 'eshell/which)
  1151. ;; (defalias 'eshell/vim 'eshell/vi)
  1152. (defalias 'eshell/ff 'find-file)
  1153. (defun eshell-goto-prompt ()
  1154. ""
  1155. (interactive)
  1156. (goto-char (point-max)))
  1157. (defun eshell-cd-default-directory (&optional eshell-buffer-or-name)
  1158. "open eshell and change wd
  1159. if arg given, use that eshell buffer, otherwise make new eshell buffer."
  1160. (interactive)
  1161. (let ((dir (expand-file-name default-directory)))
  1162. (switch-to-buffer (or eshell-buffer-or-name
  1163. (eshell t)))
  1164. (unless (equal dir (expand-file-name default-directory))
  1165. ;; (cd dir)
  1166. ;; (eshell-interactive-print (concat "cd " dir "\n"))
  1167. ;; (eshell-emit-prompt)
  1168. (goto-char (point-max))
  1169. (eshell-kill-input)
  1170. (insert "cd " dir)
  1171. (eshell-send-input))))
  1172. (setq eshell-directory-name "~/.emacs.d/eshell/")
  1173. (setq eshell-scroll-to-bottom-on-input t)
  1174. (setq eshell-cmpl-ignore-case t)
  1175. (setq eshell-cmpl-cycle-completions nil)
  1176. (setq eshell-highlight-prompt nil)
  1177. (setq eshell-ls-initial-args "-FG") ; "-hF")
  1178. (setq eshell-prompt-function
  1179. (lambda ()
  1180. (with-temp-buffer
  1181. (let (p1 p2 p3 p4)
  1182. (insert " [")
  1183. (setq p1 (point))
  1184. (insert (abbreviate-file-name default-directory))
  1185. (setq p2 (point))
  1186. (insert "]"
  1187. "\n")
  1188. (setq p3 (point))
  1189. (insert user-login-name
  1190. "@"
  1191. (or (getenv "HOSTNAME")
  1192. (substring (shell-command-to-string (or (executable-find "hostname")
  1193. ":"))
  1194. 0
  1195. -1)))
  1196. (setq p4 (point))
  1197. (insert " "
  1198. (format-time-string "%a, %d %b %Y %T %z")
  1199. " ESHELL\n"
  1200. "last:"
  1201. (number-to-string eshell-last-command-status)
  1202. (if (= (user-uid)
  1203. 0)
  1204. " # "
  1205. " $ "))
  1206. (add-text-properties p1
  1207. p2
  1208. '(face ((foreground-color . "red"))))
  1209. (add-text-properties p3
  1210. p4
  1211. '(face ((foreground-color . "blue"))))
  1212. (buffer-substring (point-min)
  1213. (point-max))))))
  1214. (add-hook 'eshell-mode-hook
  1215. (lambda ()
  1216. ;; (define-key eshell-mode-map (kbd "C-x C-x") (lambda ()
  1217. ;; (interactive)
  1218. ;; (switch-to-buffer (other-buffer))))
  1219. (define-key eshell-mode-map (kbd "C-u") (lambda ()
  1220. (interactive)
  1221. (eshell-goto-prompt)
  1222. (eshell-kill-input)))
  1223. (define-key eshell-mode-map (kbd "C-g") (lambda ()
  1224. (interactive)
  1225. (eshell-goto-prompt)
  1226. (my-keyboard-quit)))
  1227. (define-key eshell-mode-map (kbd "DEL") 'my-eshell-backward-delete-char)
  1228. (define-key eshell-mode-map (kbd "C-p") 'eshell-previous-matching-input-from-input)
  1229. (define-key eshell-mode-map (kbd "C-n") 'eshell-next-matching-input-from-input)
  1230. (mapcar (lambda (alias)
  1231. (add-to-list 'eshell-command-aliases-list
  1232. alias))
  1233. '(("ll" "ls -l")
  1234. ("la" "ls -a")
  1235. ("lla" "ls -al")
  1236. ("ut" "slogin 03110414@un001.ecc.u-tokyo.ac.jp")
  1237. ("aptin" "sudo apt-get install")
  1238. ("u" "uname")
  1239. ("eless" "cat >>> (with-current-buffer (get-buffer-create \"*eshell output\") (erase-buffer) (setq buffer-read-only nil) (current-buffer)); (view-buffer (get-buffer \"*eshell output*\"))")))
  1240. (add-to-list 'eshell-output-filter-functions 'eshell-truncate-buffer)
  1241. (apply 'eshell/addpath exec-path)
  1242. (set (make-variable-buffer-local 'scroll-margin) 0)
  1243. (eshell/export "GIT_PAGER=")
  1244. (eshell/export "GIT_EDITOR=")
  1245. (eshell/export "LC_MESSAGES=C")
  1246. ))
  1247. ;; (eval-after-load "em-alias"
  1248. ;; '(progn ;; (eshell/alias "ll" "ls -l")
  1249. ;; ;; (eshell/alias "la" "ls -a")
  1250. ;; ;; (eshell/alias "lla" "ls -al")
  1251. ;; (eshell/alias "sgcc" (if (eq system-type 'windows-nt)
  1252. ;; "gcc -o win.$1.exe $1"
  1253. ;; "gcc -o ${uname}.$1.out $1"))
  1254. ;; (eshell/alias "slmgcc" (if (eq system-type 'windows-nt)
  1255. ;; "gcc -lm -o win.$1.exe $1"
  1256. ;; "gcc -lm -o ${uname}.$1.out $1"))
  1257. ;; ;; (eshell/alias "ut" "ssh g841105@un001.ecc.u-tokyo.ac.jp")
  1258. ;; (add-to-list 'recentf-exclude (concat eshell-directory-name "alias"))))
  1259. (define-key my-prefix-map (kbd "C-s") (lambda ()
  1260. (interactive)
  1261. (eshell-cd-default-directory (buffer-name (or (my-eshell-frame-buffer (selected-frame))
  1262. (eshell t))))))
  1263. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1264. ;; 最終更新日時を得る
  1265. (defvar my-buffer-file-last-modified-time nil "")
  1266. (make-variable-buffer-local 'my-buffer-file-last-modified-time)
  1267. (defun my-get-file-last-modified-time (file)
  1268. ""
  1269. (nth 5
  1270. (file-attributes file)))
  1271. (defun my-set-buffer-file-last-modified-time ()
  1272. ""
  1273. (make-local-variable 'my-buffer-file-last-modified-time)
  1274. (setq my-buffer-file-last-modified-time
  1275. (format-time-string "%Y/%m/%d %H:%M" (my-get-file-last-modified-time buffer-file-name))))
  1276. (add-hook 'find-file-hook
  1277. 'my-set-buffer-file-last-modified-time)
  1278. (add-hook 'after-save-hook
  1279. 'my-set-buffer-file-last-modified-time)
  1280. (add-hook 'after-revert-hook
  1281. 'my-set-buffer-file-last-modified-time)
  1282. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1283. ;; auto saving
  1284. (defun my-save-this-buffer (silent-p)
  1285. "save current buffer if can without asking"
  1286. (let ((cm (if (current-message)
  1287. (format "%s\n" (current-message))
  1288. ""))
  1289. (fun (symbol-function (if silent-p
  1290. 'ignore
  1291. 'message))))
  1292. (cond ((active-minibuffer-window) nil)
  1293. ((not buffer-file-name) (funcall fun "%ssaving... this buffer doesn't visit any file." cm) nil)
  1294. (buffer-read-only (funcall fun "%ssaving... this buffer is read-only." cm) nil)
  1295. ((not (buffer-modified-p)) (funcal fun "%ssaving... not modified yet." cm) nil)
  1296. ((not (file-writable-p buffer-file-name)) (funcall fun "%ssaving... you cannot change this file." cm) nil)
  1297. (t (funcall fun "%ssaving..." cm)
  1298. (save-buffer)
  1299. (funcall fun "%ssaving... done." cm)))))
  1300. ;; (if (and buffer-file-name
  1301. ;; (not buffer-read-only)
  1302. ;; (buffer-modified-p)
  1303. ;; (file-writable-p buffer-file-name))
  1304. ;; (save-buffer))) ; 静かな方
  1305. (defvar my-auto-save-this-buffer nil "auto save timer object")
  1306. (defun my-auto-save-this-buffer (secs &optional silent-p)
  1307. "auto save current buffer if idle for SEC.
  1308. when SEC is nil, stop auto save if enabled."
  1309. (if secs
  1310. (progn (when my-auto-save-this-buffer
  1311. (cancel-timer my-auto-save-this-buffer)
  1312. (setq my-auto-save-this-buffer nil))
  1313. (setq my-auto-save-this-buffer (run-with-idle-timer secs t 'my-save-this-buffer silent-p)))
  1314. (when my-auto-save-this-buffer
  1315. (cancel-timer my-auto-save-this-buffer)
  1316. (setq my-auto-save-this-buffer nil))))
  1317. (my-auto-save-this-buffer 2 t)
  1318. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1319. ;; misc funcs
  1320. (defun my-format-time-string (&optional time)
  1321. ""
  1322. (let ((system-time-locale "C"))
  1323. (format-time-string "%a, %d %b %Y %T" time)))
  1324. (defvar my-filer nil)
  1325. (setq my-filer (or (executable-find "pcmanfm")
  1326. (executable-find "nautilus")))
  1327. (defun my-x-open (file)
  1328. "open file."
  1329. (interactive "FOpen File: ")
  1330. (setq file (expand-file-name file))
  1331. (message "Opening %s..." file)
  1332. (cond ((eq system-type 'windows-nt)
  1333. (call-process "cmd.exe" nil 0 nil "/c" "start" "" (convert-standard-filename file)))
  1334. ((eq system-type 'darwin)
  1335. (call-process "open" nil 0 nil file))
  1336. ((not (getenv "DESKTOP_SESSION"))
  1337. (find-file file))
  1338. (t
  1339. (if (file-directory-p file)
  1340. (call-process my-filer nil 0 nil file)
  1341. (call-process "xdg-open" nil 0 nil file))))
  1342. (recentf-add-file file)
  1343. (message "Opening %s...done" file))
  1344. (defvar my-indent-buffer-mode-list
  1345. '(emacs-lisp-mode
  1346. sh-mode
  1347. js-mode
  1348. sgml-mode
  1349. c-mode))
  1350. (defun my-indent-buffer ()
  1351. ""
  1352. (interactive)
  1353. (indent-region (point-min)
  1354. (point-max)))
  1355. (add-hook 'before-save-hook
  1356. (lambda ()
  1357. (when (memq major-mode my-indent-buffer-mode-list)
  1358. (my-indent-buffer))))
  1359. (defun my-keyboard-quit ()
  1360. ""
  1361. (interactive)
  1362. (run-hooks 'before-keyboard-quit-hook)
  1363. (redisplay)
  1364. (keyboard-quit)
  1365. (run-hooks 'after-keyboard-quit-hook))
  1366. (substitute-key-definition 'keyboard-quit 'my-keyboard-quit global-map)
  1367. ;; (global-set-key (kbd "C-g") 'my-keyboard-quit)
  1368. (defun my-convmv-sjis2utf8-test ()
  1369. "run `convmv -r -f sjis -t utf8 *'
  1370. this is test, does not rename files"
  1371. (interactive)
  1372. (shell-command "convmv -r -f sjis -t utf8 *"))
  1373. (defun my-convmv-sjis2utf8-notest ()
  1374. "run `convmv -r -f sjis -t utf8 * --notest'"
  1375. (interactive)
  1376. (shell-command "convmv -r -f sjis -t utf8 * --notest"))
  1377. (defun my-copy-whole-line ()
  1378. ""
  1379. (interactive)
  1380. (kill-new (concat (buffer-substring (point-at-bol)
  1381. (point-at-eol))
  1382. "\n")))
  1383. (defun kill-ring-save-buffer-file-name ()
  1384. "get current filename"
  1385. (interactive)
  1386. (let ((file buffer-file-name))
  1387. (if file
  1388. (progn (kill-new file)
  1389. (message file))
  1390. (message "not visiting file."))))
  1391. ;; ;; コマンド的な
  1392. ;; (defvar my-execute-func-list nil "func list")
  1393. ;; (defvar my-execute-func-hist-list nil "func hist list")
  1394. ;; (setq my-execute-func-list '("(call-interactively 'my-francaiscd-b)"
  1395. ;; "(call-interactively 'my-francaiscd-a)"
  1396. ;; "parsec47"
  1397. ;; "chromium-browser"
  1398. ;; "inkscape"
  1399. ;; "audacious"
  1400. ;; "gnome-terminal"
  1401. ;; "zkaicd.py"
  1402. ;; "glchess"))
  1403. ;; (defun my-execute-start-process-or-eval-sexp ()
  1404. ;; "execute something"
  1405. ;; (interactive)
  1406. ;; (let ((func (completing-read "command?: " my-execute-func-list nil nil "" my-execute-func-hist-list)))
  1407. ;; (if (string= "(" (substring func 0 1))
  1408. ;; (with-temp-buffer (insert func)
  1409. ;; (eval-buffer))
  1410. ;; (start-process "ps"
  1411. ;; nil
  1412. ;; func))))
  1413. ;; delete-trailing-whitespace
  1414. ;; (defun my-delete-blanks-on-eol ()
  1415. ;; ""
  1416. ;; (interactive)
  1417. ;; (save-excursion
  1418. ;; (goto-char (point-min))
  1419. ;; (while (re-search-forward "[ \t]+$" nil t)
  1420. ;; (replace-match "" nil nil))))
  1421. (defun my-revert-buffer-if-needed ()
  1422. ""
  1423. (interactive)
  1424. (unless (verify-visited-file-modtime (current-buffer))
  1425. (revert-buffer t t)))
  1426. (add-hook 'window-configuration-change-hook
  1427. (lambda ()
  1428. (run-with-timer 0.5
  1429. nil
  1430. 'my-revert-buffer-if-needed)))
  1431. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1432. ;; forked from http://d.hatena.ne.jp/khiker/20100119/window_resize
  1433. (define-key my-prefix-map (kbd "C-w") 'my-window-organizer)
  1434. (defun my-window-organizer ()
  1435. "Control window size and position."
  1436. (interactive)
  1437. (save-selected-window
  1438. (select-window (window-at 0 0))
  1439. (let ( ;; (window-obj (selected-window))
  1440. ;; (current-width (window-width))
  1441. ;; (current-height (window-height))
  1442. action
  1443. c)
  1444. (catch 'end-flag
  1445. (while t
  1446. (setq action
  1447. (read-key-sequence-vector (format "size[%dx%d] 1 to maximize; 2, 3 to split; 0 to delete; o to select other; j, l to enlarge; h, k to shrink; q to quit."
  1448. (window-width)
  1449. (window-height))))
  1450. (setq c (aref action 0))
  1451. (cond ((= c ?l)
  1452. (unless (eq (window-width) (frame-width))
  1453. (enlarge-window-horizontally 1)))
  1454. ((= c ?h)
  1455. (unless (eq (window-width) (frame-width))
  1456. (shrink-window-horizontally 1)))
  1457. ((= c ?j)
  1458. (enlarge-window 1))
  1459. ((= c ?k)
  1460. (shrink-window 1))
  1461. ((= c ?o)
  1462. (other-window 1))
  1463. ((memq c '(?d ?0))
  1464. (unless (eq (selected-window) (next-window (selected-window) 0 1))
  1465. (delete-window (selected-window))))
  1466. ((= c ?1)
  1467. (delete-other-windows))
  1468. ((= c ?2)
  1469. (split-window-vertically))
  1470. ((= c ?3)
  1471. (split-window-horizontally))
  1472. ((memq c '(?q ?\C-g))
  1473. (message "Quit")
  1474. (throw 'end-flag t))
  1475. (t
  1476. (beep))))))))
  1477. ;; (aref (read-key-sequence-vector "aa") 0)
  1478. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1479. ;; save and restore frame size
  1480. ;;http://www.bookshelf.jp/soft/meadow_30.html#SEC416
  1481. (defun my-window-size-save ()
  1482. (let* ((rlist (frame-parameters (selected-frame)))
  1483. (ilist initial-frame-alist)
  1484. (nCHeight (frame-height))
  1485. (nCWidth (frame-width))
  1486. (tMargin (if (integerp (cdr (assoc 'top rlist)))
  1487. (cdr (assoc 'top rlist)) 0))
  1488. (lMargin (if (integerp (cdr (assoc 'left rlist)))
  1489. (cdr (assoc 'left rlist)) 0))
  1490. buf
  1491. (file "~/.emacs.d/.framesize.el")
  1492. (recentf-exclude '("\\.emacs\\.d/\\.framesize\\.el$")))
  1493. (if (get-file-buffer (expand-file-name file))
  1494. (setq buf (get-file-buffer (expand-file-name file)))
  1495. (setq buf (find-file-noselect file)))
  1496. (set-buffer buf)
  1497. (erase-buffer)
  1498. (insert (concat
  1499. ;; 初期値をいじるよりも modify-frame-parameters
  1500. ;; で変えるだけの方がいい?
  1501. "(delete 'width default-frame-alist)\n"
  1502. "(delete 'height default-frame-alist)\n"
  1503. "(delete 'top default-frame-alist)\n"
  1504. "(delete 'left default-frame-alist)\n"
  1505. "(setq default-frame-alist (append (list\n"
  1506. "'(width . " (int-to-string nCWidth) ")\n"
  1507. "'(height . " (int-to-string nCHeight) ")\n"
  1508. "'(top . " (int-to-string tMargin) ")\n"
  1509. "'(left . " (int-to-string lMargin) "))\n"
  1510. "default-frame-alist))\n"
  1511. ;;"(setq default-frame-alist default-frame-alist)"
  1512. ))
  1513. (save-buffer)
  1514. ))
  1515. (defun my-window-size-load ()
  1516. (let* ((file "~/.emacs.d/.framesize.el"))
  1517. (if (file-exists-p file)
  1518. (load file))))
  1519. (when window-system
  1520. (my-window-size-load)
  1521. (add-hook 'after-init-hook ;何かがframeの大きさ勝手に変えやがる
  1522. (lambda ()
  1523. (run-with-timer 1
  1524. nil
  1525. (lambda ()
  1526. (modify-frame-parameters (selected-frame)
  1527. default-frame-alist))))
  1528. t)
  1529. ;; (add-hook 'make-frame-hook
  1530. ;; (lambda ()
  1531. ;; (run-with-timer 1
  1532. ;; nil
  1533. ;; (lambda ()
  1534. ;; (modify-frame-parameters (selected-frame)
  1535. ;; initial-frame-alist))))
  1536. ;; t)
  1537. (add-hook 'kill-emacs-hook
  1538. 'my-window-size-save))
  1539. ;; windowサイズを固定
  1540. ;; setq default-frame-alist
  1541. ;; (append (list '(width . 80)
  1542. ;; '(height . 35)
  1543. ;; )
  1544. ;; default-frame-alist)
  1545. ;; ) ;;デフォルトのフレーム設定
  1546. ;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1547. ;; ;; emacsを殺伐とさせる
  1548. ;; ;; 補完させるとき失敗するからなし
  1549. ;; ;; http://e-arrows.sakura.ne.jp/2010/05/emacs-should-be-more-savage.html
  1550. ;; (defadvice message (before message-for-stupid (arg &rest arg2) activate)
  1551. ;; (setq arg
  1552. ;; (concat arg
  1553. ;; (if (eq nil (string-match "\\. *$" arg)) ".")
  1554. ;; " And You are a Coward!")))
  1555. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1556. ;; ubuntu
  1557. (defun my-load-scim ()
  1558. "use scim-bridge.el as japanese im."
  1559. ;; Load scim-bridge.
  1560. (require 'scim-bridge)
  1561. ;; Turn on scim-mode automatically after loading .emacs
  1562. (add-hook 'after-init-hook 'scim-mode-on)
  1563. (setq scim-cursor-color "red")
  1564. (scim-define-preedit-key ?\^h t)
  1565. (scim-define-common-key ?\* nil)
  1566. (scim-define-common-key ?\^/ nil))
  1567. (defun my-load-anthy ()
  1568. "use anthy.el as japanese im."
  1569. ;; anthy
  1570. (require 'anthy)
  1571. (global-set-key [muhenkan] (lambda () (interactive) (anthy-mode-off)))
  1572. (global-set-key [henkan] (lambda () (interactive) (anthy-mode-on)))
  1573. (when (>= emacs-major-version 23)
  1574. (setq anthy-accept-timeout 1)))
  1575. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1576. ;; windows用設定
  1577. ;; (add-to-list 'exec-path "c:/Program Files/Gauche/bin/")
  1578. (defun start-ckw-bash ()
  1579. ""
  1580. (interactive)
  1581. (start-process "ckw_bash"
  1582. nil
  1583. "C:/Documents and Settings/sr/Application Data/dbx/apps/ckw/ckw.exe")) ; cじゃないといけないらしい
  1584. (defun my-w32-add-export-path (&rest args)
  1585. ""
  1586. (mapcar (lambda (path)
  1587. (add-to-list 'exec-path (expand-file-name path)))
  1588. args)
  1589. (setenv "PATH"
  1590. (mapconcat 'convert-standard-filename
  1591. exec-path
  1592. ";")))
  1593. (when (eq system-type 'windows-nt)
  1594. ;; (setq scheme-program-name "\"c:/Program Files/Gauche/bin/gosh.exe\" -i")
  1595. ;; (setq python-python-command "c:/Python26/python.exe")
  1596. (define-key my-prefix-map (kbd "C-c") 'start-ckw-bash)
  1597. (my-w32-add-export-path "c:/WINDOWS"
  1598. (expand-file-name "~/bin")
  1599. (expand-file-name "~/dbx/apps/bin"))
  1600. (when window-system
  1601. (setq w32-enable-synthesized-fonts t))
  1602. (setq file-name-coding-system 'sjis))