Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 
 
 

1848 linhas
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. (archive-default (my-compress-file-extension (file-name-nondirectory (car infiles))))
  851. (archive (if (interactive-p)
  852. (read-file-name "Output file to compress : " ;; (format "Output file to compress (default for %s) : "
  853. ;; archive-default)
  854. dir-default
  855. nil ;; archive-default
  856. nil
  857. archive-default)
  858. (concat dir-default archive-default))))
  859. (apply 'my-compress
  860. archive
  861. infiles)
  862. (revert-buffer)))
  863. (dired-unmark-all-marks)))
  864. (defun my-file-name-extension-with-tar (filename)
  865. "if FILENAME has extension with tar, like \"tar.gz\", return that.
  866. otherwise, return extension normally."
  867. (if (string-equal "tar" (file-name-extension (file-name-sans-extension filename)))
  868. (concat "tar."
  869. (file-name-extension filename))
  870. (file-name-extension filename)))
  871. (defun my-compress-file-extension (filename)
  872. "if FILENAME has extension and it can be used for compress, return FILENAME.
  873. otherwise, return FILENAME with `my-compress-default-extension'"
  874. (if (assoc (file-name-extension filename)
  875. my-compress-program-alist)
  876. filename
  877. (concat filename "." my-compress-default-extension)))
  878. (defvar my-7z-program
  879. (or (executable-find "7z")
  880. (executable-find "7za")
  881. (executable-find "7zr")))
  882. (defvar my-compress-default-extension
  883. "7z")
  884. (defvar my-compress-program-alist
  885. `(("7z" ,my-7z-program "a" ,my-7z-program "x")
  886. ("tar" "tar" "cvf" "tar" "xvf")
  887. ("tgz" "tar" "czf" "tar" "xzf")
  888. ("txz" "tar" "cJf" "tar" "xJf")
  889. ("zip" "zip" "-r" "unzip" nil)))
  890. (defun my-uncompress (archive)
  891. ""
  892. (interactive "fArchive to extract: ")
  893. (let* ((earchive (expand-file-name archive))
  894. (ext (file-name-extension earchive))
  895. (lst (assoc ext
  896. my-compress-program-alist))
  897. (com (nth 3 lst))
  898. (op (nth 4 lst))
  899. (args (if op
  900. (list op earchive)
  901. (list earchive))))
  902. (message "uncompressing %s..." archive)
  903. (apply 'call-process
  904. com
  905. nil
  906. (my-pop-to-buffer-erase-noselect "*compressing output*")
  907. t
  908. args)
  909. (message "uncompressing %s...done." archive)))
  910. (defun my-compress (archive &rest files)
  911. "if archive have extension for compress, use it.
  912. otherwise, use `my-compress-default-extension'. for compress."
  913. (let* ((archive-ext (my-compress-file-extension (expand-file-name archive)))
  914. (ext (file-name-extension archive-ext))
  915. (lst (assoc ext
  916. my-compress-program-alist))
  917. (com (nth 1 lst))
  918. (op (nth 2 lst))
  919. (args (if op
  920. (apply 'list
  921. op
  922. archive-ext
  923. files)
  924. (apply 'list
  925. archive-ext
  926. files))))
  927. (message "compressing to %s..." archive)
  928. (apply 'call-process
  929. com
  930. nil
  931. (my-pop-to-buffer-erase-noselect "*compressing output*")
  932. t
  933. args)
  934. (message "compressing to %s...done." archive)))
  935. (defun my-pop-to-buffer-erase-noselect (buffer-or-name)
  936. "pop up buffer using `display-buffer' and return that buffer."
  937. (let ((bf (get-buffer-create buffer-or-name)))
  938. (with-current-buffer bf
  939. (cd ".")
  940. (erase-buffer))
  941. (display-buffer bf)
  942. bf))
  943. (defun my-replace-nasi-none ()
  944. ""
  945. (save-excursion
  946. (let ((buffer-read-only nil))
  947. (goto-char (point-min))
  948. (while (search-forward "なし" nil t)
  949. (replace-match "none")))))
  950. (defun dired-get-du () ;em-unix.el使えるかも
  951. "dired get disk usage"
  952. (interactive)
  953. (message "calculating du...")
  954. (dired-do-shell-command "du -hs * " nil (dired-get-marked-files)))
  955. (defun my-dired-scroll-up ()
  956. ""
  957. (interactive)
  958. (my-dired-previous-line (- (window-height) 1)))
  959. (defun my-dired-scroll-down ()
  960. ""
  961. (interactive)
  962. (my-dired-next-line (- (window-height) 1)))
  963. (defun my-dired-previous-line (&optional arg)
  964. ""
  965. (interactive)
  966. (dired-previous-line (or arg 1))
  967. (my-dired-print-current-dir-and-file))
  968. (defun my-dired-next-line (&optional arg)
  969. ""
  970. (interactive)
  971. (dired-next-line (or arg 1))
  972. (my-dired-print-current-dir-and-file))
  973. (defun my-dired-print-current-dir-and-file ()
  974. (message "%s %s"
  975. default-directory
  976. (buffer-substring-no-properties (point-at-bol)
  977. (point-at-eol))))
  978. (defun dired-do-execute-as-command ()
  979. ""
  980. (interactive)
  981. (let ((file (dired-get-filename t)))
  982. (if (file-executable-p file)
  983. (start-process file nil file)
  984. (when (y-or-n-p "this file cant be executed. mark as executable and go? : ")
  985. (set-file-modes file (file-modes-symbolic-to-number "u+x" (file-modes file)))
  986. (start-process file nil file)))))
  987. ;;http://bach.istc.kobe-u.ac.jp/lect/tamlab/ubuntu/emacs.html
  988. (defun my-dired-x-open ()
  989. ""
  990. (interactive)
  991. (my-x-open (dired-get-filename t t)))
  992. (defun my-dired-up-directory ()
  993. ""
  994. (interactive)
  995. (my-dired-find-file ".."))
  996. (defun my-dired-find-file (&optional filename)
  997. ""
  998. (interactive)
  999. (let ((f (expand-file-name (or filename
  1000. (dired-get-filename))))
  1001. (bf (current-buffer)))
  1002. (find-file f)
  1003. (when (and (file-directory-p f)
  1004. (not (get-buffer-window bf)))
  1005. (kill-buffer bf))))
  1006. (setq dired-listing-switches "-lhFG --time-style=long-iso")
  1007. (define-minor-mode my-dired-display-all-mode
  1008. ""
  1009. :init-value nil
  1010. (if my-dired-display-all-mode
  1011. (setq dired-actual-switches
  1012. (concat "-A "
  1013. dired-actual-switches))
  1014. (setq dired-actual-switches
  1015. (replace-regexp-in-string "-A " "" dired-actual-switches)))
  1016. (when (eq major-mode 'dired-mode)
  1017. (revert-buffer)))
  1018. (put 'dired-find-alternate-file 'disabled nil)
  1019. (require 'ls-lisp)
  1020. ;; (setq ls-lisp-use-insert-directory-program nil)
  1021. (setq ls-lisp-dirs-first t)
  1022. (setq dired-ls-F-marks-symlinks t)
  1023. (setq dired-dwim-target t)
  1024. ;; (add-hook 'dired-after-readin-hook
  1025. ;; 'my-replace-nasi-none)
  1026. (add-hook 'after-init-hook
  1027. (lambda ()
  1028. (dired ".")))
  1029. (add-hook 'dired-mode-hook
  1030. (lambda ()
  1031. (define-key dired-mode-map "o" 'my-dired-x-open)
  1032. (define-key dired-mode-map "i" 'dired-get-du)
  1033. (define-key dired-mode-map "!" 'shell-command)
  1034. (define-key dired-mode-map "&" 'async-shell-command)
  1035. (define-key dired-mode-map "X" 'dired-do-async-shell-command)
  1036. (define-key dired-mode-map "B" 'gtkbm-add-current-dir)
  1037. (define-key dired-mode-map "b" 'gtkbm)
  1038. (define-key dired-mode-map "@" (lambda () (interactive) (my-x-open ".")))
  1039. (define-key dired-mode-map (kbd "TAB") 'other-window)
  1040. (define-key dired-mode-map "Z" 'my-dired-do-compress-or-uncompress)
  1041. (define-key dired-mode-map "a" 'my-dired-display-all-mode)
  1042. (define-key dired-mode-map "h" 'my-dired-display-all-mode)
  1043. (substitute-key-definition 'dired-advertised-find-file 'my-dired-find-file dired-mode-map)
  1044. (substitute-key-definition 'dired-up-directory 'my-dired-up-directory dired-mode-map)
  1045. (define-key dired-mode-map (kbd "DEL") 'my-dired-up-directory)
  1046. (substitute-key-definition 'dired-next-line 'my-dired-next-line dired-mode-map)
  1047. (substitute-key-definition 'dired-previous-line 'my-dired-previous-line dired-mode-map)
  1048. (define-key dired-mode-map (kbd "<left>") 'my-dired-scroll-up)
  1049. (define-key dired-mode-map (kbd "<right>") 'my-dired-scroll-down)
  1050. (let ((file "._Icon\015"))
  1051. (when (file-readable-p file)
  1052. (delete-file file)))))
  1053. ;; http://homepage1.nifty.com/blankspace/emacs/dired.html
  1054. ;; (add-hook 'dired-load-hook
  1055. ;; (lambda ()
  1056. ;; (load-library "ls-lisp")
  1057. ;; (setq ls-lisp-dirs-first t)
  1058. ;; (setq dired-listing-switches "-alhF"))) ;これ書く場所間違えてね?
  1059. ;; (defadvice dired-next-line (after dired-next-line-print-directory activate)
  1060. ;; "print current directory when go down line"
  1061. ;; (dired-print-current-dir-and-file))
  1062. ;; (defadvice dired-previous-line (after dired-previous-line-print-directory activate)
  1063. ;; "print current directory when go up line"
  1064. ;; (dired-print-current-dir-and-file))
  1065. ;; http://blog.livedoor.jp/tek_nishi/archives/4693204.html
  1066. (defun my-dired-toggle-mark()
  1067. (let ((cur (cond ((eq (following-char) dired-marker-char) ?\040)
  1068. (t dired-marker-char))))
  1069. (delete-char 1)
  1070. (insert cur)))
  1071. (defun my-dired-mark (arg)
  1072. "toggle mark the current (or next ARG) files.
  1073. If on a subdir headerline, mark all its files except `.' and `..'.
  1074. Use \\[dired-unmark-all-files] to remove all marks
  1075. and \\[dired-unmark] on a subdir to remove the marks in
  1076. this subdir."
  1077. (interactive "P")
  1078. (if (dired-get-subdir)
  1079. (save-excursion (dired-mark-subdir-files))
  1080. (let ((inhibit-read-only t))
  1081. (dired-repeat-over-lines
  1082. (prefix-numeric-value arg)
  1083. 'my-dired-toggle-mark))))
  1084. (defun my-dired-mark-backward (arg)
  1085. "In Dired, move up lines and toggle mark there.
  1086. Optional prefix ARG says how many lines to unflag; default is one line."
  1087. (interactive "p")
  1088. (my-dired-mark (- arg)))
  1089. (defun dired-mode-hooks()
  1090. (local-set-key (kbd "SPC") 'my-dired-mark)
  1091. (local-set-key (kbd "S-SPC") 'my-dired-mark-backward))
  1092. (add-hook 'dired-mode-hook 'dired-mode-hooks)
  1093. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1094. ;; eshell
  1095. (defun my-eshell-backward-delete-char ()
  1096. (interactive)
  1097. (when (< (save-excursion
  1098. (eshell-bol)
  1099. (point))
  1100. (point))
  1101. (backward-delete-char 1)))
  1102. (defvar my-eshell-frame-buffer-alist nil)
  1103. (defun my-eshell-frame-buffer (frame)
  1104. "get buffer associated with FRAME. if buffer doesnt exist or killed, return nil."
  1105. (let ((bf (cdr (assq frame my-eshell-frame-buffer-alist))))
  1106. (and bf ;関連付けられたバッファが存在し
  1107. (buffer-name bf) ;かつkillされてない
  1108. bf)))
  1109. (add-hook 'eshell-mode-hook
  1110. (lambda ()
  1111. (add-to-list 'my-eshell-frame-buffer-alist
  1112. (cons (selected-frame) (current-buffer)))))
  1113. (defun my-file-owner-p (file)
  1114. "t if FILE is owned by me."
  1115. (eq (user-uid) (nth 2 (file-attributes file))))
  1116. ;; ;; http://www.bookshelf.jp/pukiwiki/pukiwiki.php?Eshell%A4%F2%BB%C8%A4%A4%A4%B3%A4%CA%A4%B9
  1117. ;; ;; written by Stefan Reichoer <reichoer@web.de>
  1118. ;; (defun eshell/less (&rest args)
  1119. ;; "Invoke `view-file' on the file.
  1120. ;; \"less +42 foo\" also goes to line 42 in the buffer."
  1121. ;; (if args
  1122. ;; (while args
  1123. ;; (if (string-match "\\`\\+\\([0-9]+\\)\\'" (car args))
  1124. ;; (let* ((line (string-to-number (match-string 1 (pop args))))
  1125. ;; (file (pop args)))
  1126. ;; (view-file file)
  1127. ;; (goto-line line))
  1128. ;; (view-file (pop args))))))
  1129. (defun eshell/o (&optional file)
  1130. (my-x-open (or file ".")))
  1131. ;; (defun eshell/vi (&rest args)
  1132. ;; "Invoke `find-file' on the file.
  1133. ;; \"vi +42 foo\" also goes to line 42 in the buffer."
  1134. ;; (while args
  1135. ;; (if (string-match "\\`\\+\\([0-9]+\\)\\'" (car args))
  1136. ;; (let* ((line (string-to-number (match-string 1 (pop args))))
  1137. ;; (file (pop args)))
  1138. ;; (find-file file)
  1139. ;; (goto-line line))
  1140. ;; (find-file (pop args)))))
  1141. (defun eshell/clear ()
  1142. "Clear the current buffer, leaving one prompt at the top."
  1143. (let ((inhibit-read-only t))
  1144. (erase-buffer)))
  1145. (defun eshell/d (&optional dirname switches)
  1146. "if first arg is omitted open current directory."
  1147. (dired (or dirname ".") switches))
  1148. (defun eshell/v ()
  1149. (view-mode 1))
  1150. (defalias 'eshell/: 'ignore)
  1151. (defalias 'eshell/type 'eshell/which)
  1152. ;; (defalias 'eshell/vim 'eshell/vi)
  1153. (defalias 'eshell/ff 'find-file)
  1154. (defun eshell-goto-prompt ()
  1155. ""
  1156. (interactive)
  1157. (goto-char (point-max)))
  1158. (defun eshell-cd-default-directory (&optional eshell-buffer-or-name)
  1159. "open eshell and change wd
  1160. if arg given, use that eshell buffer, otherwise make new eshell buffer."
  1161. (interactive)
  1162. (let ((dir (expand-file-name default-directory)))
  1163. (switch-to-buffer (or eshell-buffer-or-name
  1164. (eshell t)))
  1165. (unless (equal dir (expand-file-name default-directory))
  1166. ;; (cd dir)
  1167. ;; (eshell-interactive-print (concat "cd " dir "\n"))
  1168. ;; (eshell-emit-prompt)
  1169. (goto-char (point-max))
  1170. (eshell-kill-input)
  1171. (insert "cd " dir)
  1172. (eshell-send-input))))
  1173. (setq eshell-directory-name "~/.emacs.d/eshell/")
  1174. (setq eshell-scroll-to-bottom-on-input t)
  1175. (setq eshell-cmpl-ignore-case t)
  1176. (setq eshell-cmpl-cycle-completions nil)
  1177. (setq eshell-highlight-prompt nil)
  1178. (setq eshell-ls-initial-args "-FG") ; "-hF")
  1179. (setq eshell-prompt-function
  1180. (lambda ()
  1181. (with-temp-buffer
  1182. (let (p1 p2 p3 p4)
  1183. (insert " [")
  1184. (setq p1 (point))
  1185. (insert (abbreviate-file-name default-directory))
  1186. (setq p2 (point))
  1187. (insert "]"
  1188. "\n")
  1189. (setq p3 (point))
  1190. (insert user-login-name
  1191. "@"
  1192. (or (getenv "HOSTNAME")
  1193. (substring (shell-command-to-string (or (executable-find "hostname")
  1194. ":"))
  1195. 0
  1196. -1)))
  1197. (setq p4 (point))
  1198. (insert " "
  1199. (format-time-string "%a, %d %b %Y %T %z")
  1200. " ESHELL\n"
  1201. "last:"
  1202. (number-to-string eshell-last-command-status)
  1203. (if (= (user-uid)
  1204. 0)
  1205. " # "
  1206. " $ "))
  1207. (add-text-properties p1
  1208. p2
  1209. '(face ((foreground-color . "red"))))
  1210. (add-text-properties p3
  1211. p4
  1212. '(face ((foreground-color . "blue"))))
  1213. (buffer-substring (point-min)
  1214. (point-max))))))
  1215. (add-hook 'eshell-mode-hook
  1216. (lambda ()
  1217. ;; (define-key eshell-mode-map (kbd "C-x C-x") (lambda ()
  1218. ;; (interactive)
  1219. ;; (switch-to-buffer (other-buffer))))
  1220. (define-key eshell-mode-map (kbd "C-u") (lambda ()
  1221. (interactive)
  1222. (eshell-goto-prompt)
  1223. (eshell-kill-input)))
  1224. (define-key eshell-mode-map (kbd "C-g") (lambda ()
  1225. (interactive)
  1226. (eshell-goto-prompt)
  1227. (my-keyboard-quit)))
  1228. (define-key eshell-mode-map (kbd "DEL") 'my-eshell-backward-delete-char)
  1229. (define-key eshell-mode-map (kbd "C-p") 'eshell-previous-matching-input-from-input)
  1230. (define-key eshell-mode-map (kbd "C-n") 'eshell-next-matching-input-from-input)
  1231. (mapcar (lambda (alias)
  1232. (add-to-list 'eshell-command-aliases-list
  1233. alias))
  1234. '(("ll" "ls -l")
  1235. ("la" "ls -a")
  1236. ("lla" "ls -al")
  1237. ("ut" "slogin 03110414@un001.ecc.u-tokyo.ac.jp")
  1238. ("aptin" "sudo apt-get install")
  1239. ("u" "uname")
  1240. ("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*\"))")))
  1241. (add-to-list 'eshell-output-filter-functions 'eshell-truncate-buffer)
  1242. (apply 'eshell/addpath exec-path)
  1243. (set (make-variable-buffer-local 'scroll-margin) 0)
  1244. (eshell/export "GIT_PAGER=")
  1245. (eshell/export "GIT_EDITOR=")
  1246. (eshell/export "LC_MESSAGES=C")
  1247. ))
  1248. ;; (eval-after-load "em-alias"
  1249. ;; '(progn ;; (eshell/alias "ll" "ls -l")
  1250. ;; ;; (eshell/alias "la" "ls -a")
  1251. ;; ;; (eshell/alias "lla" "ls -al")
  1252. ;; (eshell/alias "sgcc" (if (eq system-type 'windows-nt)
  1253. ;; "gcc -o win.$1.exe $1"
  1254. ;; "gcc -o ${uname}.$1.out $1"))
  1255. ;; (eshell/alias "slmgcc" (if (eq system-type 'windows-nt)
  1256. ;; "gcc -lm -o win.$1.exe $1"
  1257. ;; "gcc -lm -o ${uname}.$1.out $1"))
  1258. ;; ;; (eshell/alias "ut" "ssh g841105@un001.ecc.u-tokyo.ac.jp")
  1259. ;; (add-to-list 'recentf-exclude (concat eshell-directory-name "alias"))))
  1260. (define-key my-prefix-map (kbd "C-s") (lambda ()
  1261. (interactive)
  1262. (eshell-cd-default-directory (buffer-name (or (my-eshell-frame-buffer (selected-frame))
  1263. (eshell t))))))
  1264. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1265. ;; 最終更新日時を得る
  1266. (defvar my-buffer-file-last-modified-time nil "")
  1267. (make-variable-buffer-local 'my-buffer-file-last-modified-time)
  1268. (defun my-get-file-last-modified-time (file)
  1269. ""
  1270. (nth 5
  1271. (file-attributes file)))
  1272. (defun my-set-buffer-file-last-modified-time ()
  1273. ""
  1274. (make-local-variable 'my-buffer-file-last-modified-time)
  1275. (setq my-buffer-file-last-modified-time
  1276. (format-time-string "%Y/%m/%d %H:%M" (my-get-file-last-modified-time buffer-file-name))))
  1277. (add-hook 'find-file-hook
  1278. 'my-set-buffer-file-last-modified-time)
  1279. (add-hook 'after-save-hook
  1280. 'my-set-buffer-file-last-modified-time)
  1281. (add-hook 'after-revert-hook
  1282. 'my-set-buffer-file-last-modified-time)
  1283. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1284. ;; auto saving
  1285. (defun my-save-this-buffer (silent-p)
  1286. "save current buffer if can without asking"
  1287. (let ((cm (if (current-message)
  1288. (format "%s\n" (current-message))
  1289. ""))
  1290. (fun (symbol-function (if silent-p
  1291. 'ignore
  1292. 'message))))
  1293. (cond ((active-minibuffer-window) nil)
  1294. ((not buffer-file-name) (funcall fun "%ssaving... this buffer doesn't visit any file." cm) nil)
  1295. (buffer-read-only (funcall fun "%ssaving... this buffer is read-only." cm) nil)
  1296. ((not (buffer-modified-p)) (funcal fun "%ssaving... not modified yet." cm) nil)
  1297. ((not (file-writable-p buffer-file-name)) (funcall fun "%ssaving... you cannot change this file." cm) nil)
  1298. (t (funcall fun "%ssaving..." cm)
  1299. (save-buffer)
  1300. (funcall fun "%ssaving... done." cm)))))
  1301. ;; (if (and buffer-file-name
  1302. ;; (not buffer-read-only)
  1303. ;; (buffer-modified-p)
  1304. ;; (file-writable-p buffer-file-name))
  1305. ;; (save-buffer))) ; 静かな方
  1306. (defvar my-auto-save-this-buffer nil "auto save timer object")
  1307. (defun my-auto-save-this-buffer (secs &optional silent-p)
  1308. "auto save current buffer if idle for SEC.
  1309. when SEC is nil, stop auto save if enabled."
  1310. (if secs
  1311. (progn (when my-auto-save-this-buffer
  1312. (cancel-timer my-auto-save-this-buffer)
  1313. (setq my-auto-save-this-buffer nil))
  1314. (setq my-auto-save-this-buffer (run-with-idle-timer secs t 'my-save-this-buffer silent-p)))
  1315. (when my-auto-save-this-buffer
  1316. (cancel-timer my-auto-save-this-buffer)
  1317. (setq my-auto-save-this-buffer nil))))
  1318. (my-auto-save-this-buffer 2 t)
  1319. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1320. ;; misc funcs
  1321. (defun my-format-time-string (&optional time)
  1322. ""
  1323. (let ((system-time-locale "C"))
  1324. (format-time-string "%a, %d %b %Y %T" time)))
  1325. (defvar my-filer nil)
  1326. (setq my-filer (or (executable-find "pcmanfm")
  1327. (executable-find "nautilus")))
  1328. (defun my-x-open (file)
  1329. "open file."
  1330. (interactive "FOpen File: ")
  1331. (setq file (expand-file-name file))
  1332. (message "Opening %s..." file)
  1333. (cond ((eq system-type 'windows-nt)
  1334. (call-process "cmd.exe" nil 0 nil "/c" "start" "" (convert-standard-filename file)))
  1335. ((eq system-type 'darwin)
  1336. (call-process "open" nil 0 nil file))
  1337. ((not (getenv "DESKTOP_SESSION"))
  1338. (find-file file))
  1339. (t
  1340. (if (file-directory-p file)
  1341. (call-process my-filer nil 0 nil file)
  1342. (call-process "xdg-open" nil 0 nil file))))
  1343. (recentf-add-file file)
  1344. (message "Opening %s...done" file))
  1345. (defvar my-indent-buffer-mode-list
  1346. '(emacs-lisp-mode
  1347. sh-mode
  1348. js-mode
  1349. sgml-mode
  1350. c-mode))
  1351. (defun my-indent-buffer ()
  1352. ""
  1353. (interactive)
  1354. (indent-region (point-min)
  1355. (point-max)))
  1356. (add-hook 'before-save-hook
  1357. (lambda ()
  1358. (when (memq major-mode my-indent-buffer-mode-list)
  1359. (my-indent-buffer))))
  1360. (defun my-keyboard-quit ()
  1361. ""
  1362. (interactive)
  1363. (run-hooks 'before-keyboard-quit-hook)
  1364. (redisplay)
  1365. (keyboard-quit)
  1366. (run-hooks 'after-keyboard-quit-hook))
  1367. (substitute-key-definition 'keyboard-quit 'my-keyboard-quit global-map)
  1368. ;; (global-set-key (kbd "C-g") 'my-keyboard-quit)
  1369. (defun my-convmv-sjis2utf8-test ()
  1370. "run `convmv -r -f sjis -t utf8 *'
  1371. this is test, does not rename files"
  1372. (interactive)
  1373. (shell-command "convmv -r -f sjis -t utf8 *"))
  1374. (defun my-convmv-sjis2utf8-notest ()
  1375. "run `convmv -r -f sjis -t utf8 * --notest'"
  1376. (interactive)
  1377. (shell-command "convmv -r -f sjis -t utf8 * --notest"))
  1378. (defun my-copy-whole-line ()
  1379. ""
  1380. (interactive)
  1381. (kill-new (concat (buffer-substring (point-at-bol)
  1382. (point-at-eol))
  1383. "\n")))
  1384. (defun kill-ring-save-buffer-file-name ()
  1385. "get current filename"
  1386. (interactive)
  1387. (let ((file buffer-file-name))
  1388. (if file
  1389. (progn (kill-new file)
  1390. (message file))
  1391. (message "not visiting file."))))
  1392. ;; ;; コマンド的な
  1393. ;; (defvar my-execute-func-list nil "func list")
  1394. ;; (defvar my-execute-func-hist-list nil "func hist list")
  1395. ;; (setq my-execute-func-list '("(call-interactively 'my-francaiscd-b)"
  1396. ;; "(call-interactively 'my-francaiscd-a)"
  1397. ;; "parsec47"
  1398. ;; "chromium-browser"
  1399. ;; "inkscape"
  1400. ;; "audacious"
  1401. ;; "gnome-terminal"
  1402. ;; "zkaicd.py"
  1403. ;; "glchess"))
  1404. ;; (defun my-execute-start-process-or-eval-sexp ()
  1405. ;; "execute something"
  1406. ;; (interactive)
  1407. ;; (let ((func (completing-read "command?: " my-execute-func-list nil nil "" my-execute-func-hist-list)))
  1408. ;; (if (string= "(" (substring func 0 1))
  1409. ;; (with-temp-buffer (insert func)
  1410. ;; (eval-buffer))
  1411. ;; (start-process "ps"
  1412. ;; nil
  1413. ;; func))))
  1414. ;; delete-trailing-whitespace
  1415. ;; (defun my-delete-blanks-on-eol ()
  1416. ;; ""
  1417. ;; (interactive)
  1418. ;; (save-excursion
  1419. ;; (goto-char (point-min))
  1420. ;; (while (re-search-forward "[ \t]+$" nil t)
  1421. ;; (replace-match "" nil nil))))
  1422. (defun my-revert-buffer-if-needed ()
  1423. ""
  1424. (interactive)
  1425. (unless (verify-visited-file-modtime (current-buffer))
  1426. (revert-buffer t t)))
  1427. (add-hook 'window-configuration-change-hook
  1428. (lambda ()
  1429. (run-with-timer 0.5
  1430. nil
  1431. 'my-revert-buffer-if-needed)))
  1432. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1433. ;; forked from http://d.hatena.ne.jp/khiker/20100119/window_resize
  1434. (define-key my-prefix-map (kbd "C-w") 'my-window-organizer)
  1435. (defun my-window-organizer ()
  1436. "Control window size and position."
  1437. (interactive)
  1438. (save-selected-window
  1439. (select-window (window-at 0 0))
  1440. (let ( ;; (window-obj (selected-window))
  1441. ;; (current-width (window-width))
  1442. ;; (current-height (window-height))
  1443. action
  1444. c)
  1445. (catch 'end-flag
  1446. (while t
  1447. (setq action
  1448. (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."
  1449. (window-width)
  1450. (window-height))))
  1451. (setq c (aref action 0))
  1452. (cond ((= c ?l)
  1453. (unless (eq (window-width) (frame-width))
  1454. (enlarge-window-horizontally 1)))
  1455. ((= c ?h)
  1456. (unless (eq (window-width) (frame-width))
  1457. (shrink-window-horizontally 1)))
  1458. ((= c ?j)
  1459. (enlarge-window 1))
  1460. ((= c ?k)
  1461. (shrink-window 1))
  1462. ((= c ?o)
  1463. (other-window 1))
  1464. ((memq c '(?d ?0))
  1465. (unless (eq (selected-window) (next-window (selected-window) 0 1))
  1466. (delete-window (selected-window))))
  1467. ((= c ?1)
  1468. (delete-other-windows))
  1469. ((= c ?2)
  1470. (split-window-vertically))
  1471. ((= c ?3)
  1472. (split-window-horizontally))
  1473. ((memq c '(?q ?\C-g))
  1474. (message "Quit")
  1475. (throw 'end-flag t))
  1476. (t
  1477. (beep))))))))
  1478. ;; (aref (read-key-sequence-vector "aa") 0)
  1479. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1480. ;; save and restore frame size
  1481. ;;http://www.bookshelf.jp/soft/meadow_30.html#SEC416
  1482. (defun my-window-size-save ()
  1483. (let* ((rlist (frame-parameters (selected-frame)))
  1484. (ilist initial-frame-alist)
  1485. (nCHeight (frame-height))
  1486. (nCWidth (frame-width))
  1487. (tMargin (if (integerp (cdr (assoc 'top rlist)))
  1488. (cdr (assoc 'top rlist)) 0))
  1489. (lMargin (if (integerp (cdr (assoc 'left rlist)))
  1490. (cdr (assoc 'left rlist)) 0))
  1491. buf
  1492. (file "~/.emacs.d/.framesize.el")
  1493. (recentf-exclude '("\\.emacs\\.d/\\.framesize\\.el$")))
  1494. (if (get-file-buffer (expand-file-name file))
  1495. (setq buf (get-file-buffer (expand-file-name file)))
  1496. (setq buf (find-file-noselect file)))
  1497. (set-buffer buf)
  1498. (erase-buffer)
  1499. (insert (concat
  1500. ;; 初期値をいじるよりも modify-frame-parameters
  1501. ;; で変えるだけの方がいい?
  1502. "(delete 'width default-frame-alist)\n"
  1503. "(delete 'height default-frame-alist)\n"
  1504. "(delete 'top default-frame-alist)\n"
  1505. "(delete 'left default-frame-alist)\n"
  1506. "(setq default-frame-alist (append (list\n"
  1507. "'(width . " (int-to-string nCWidth) ")\n"
  1508. "'(height . " (int-to-string nCHeight) ")\n"
  1509. "'(top . " (int-to-string tMargin) ")\n"
  1510. "'(left . " (int-to-string lMargin) "))\n"
  1511. "default-frame-alist))\n"
  1512. ;;"(setq default-frame-alist default-frame-alist)"
  1513. ))
  1514. (save-buffer)
  1515. ))
  1516. (defun my-window-size-load ()
  1517. (let* ((file "~/.emacs.d/.framesize.el"))
  1518. (if (file-exists-p file)
  1519. (load file))))
  1520. (when window-system
  1521. (my-window-size-load)
  1522. (add-hook 'after-init-hook ;何かがframeの大きさ勝手に変えやがる
  1523. (lambda ()
  1524. (run-with-timer 1
  1525. nil
  1526. (lambda ()
  1527. (modify-frame-parameters (selected-frame)
  1528. default-frame-alist))))
  1529. t)
  1530. ;; (add-hook 'make-frame-hook
  1531. ;; (lambda ()
  1532. ;; (run-with-timer 1
  1533. ;; nil
  1534. ;; (lambda ()
  1535. ;; (modify-frame-parameters (selected-frame)
  1536. ;; initial-frame-alist))))
  1537. ;; t)
  1538. (add-hook 'kill-emacs-hook
  1539. 'my-window-size-save))
  1540. ;; windowサイズを固定
  1541. ;; setq default-frame-alist
  1542. ;; (append (list '(width . 80)
  1543. ;; '(height . 35)
  1544. ;; )
  1545. ;; default-frame-alist)
  1546. ;; ) ;;デフォルトのフレーム設定
  1547. ;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1548. ;; ;; emacsを殺伐とさせる
  1549. ;; ;; 補完させるとき失敗するからなし
  1550. ;; ;; http://e-arrows.sakura.ne.jp/2010/05/emacs-should-be-more-savage.html
  1551. ;; (defadvice message (before message-for-stupid (arg &rest arg2) activate)
  1552. ;; (setq arg
  1553. ;; (concat arg
  1554. ;; (if (eq nil (string-match "\\. *$" arg)) ".")
  1555. ;; " And You are a Coward!")))
  1556. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1557. ;; ubuntu
  1558. (defun my-load-scim ()
  1559. "use scim-bridge.el as japanese im."
  1560. ;; Load scim-bridge.
  1561. (require 'scim-bridge)
  1562. ;; Turn on scim-mode automatically after loading .emacs
  1563. (add-hook 'after-init-hook 'scim-mode-on)
  1564. (setq scim-cursor-color "red")
  1565. (scim-define-preedit-key ?\^h t)
  1566. (scim-define-common-key ?\* nil)
  1567. (scim-define-common-key ?\^/ nil))
  1568. (defun my-load-anthy ()
  1569. "use anthy.el as japanese im."
  1570. ;; anthy
  1571. (require 'anthy)
  1572. (global-set-key [muhenkan] (lambda () (interactive) (anthy-mode-off)))
  1573. (global-set-key [henkan] (lambda () (interactive) (anthy-mode-on)))
  1574. (when (>= emacs-major-version 23)
  1575. (setq anthy-accept-timeout 1)))
  1576. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1577. ;; windows用設定
  1578. ;; (add-to-list 'exec-path "c:/Program Files/Gauche/bin/")
  1579. (defun start-ckw-bash ()
  1580. ""
  1581. (interactive)
  1582. (start-process "ckw_bash"
  1583. nil
  1584. "C:/Documents and Settings/sr/Application Data/dbx/apps/ckw/ckw.exe")) ; cじゃないといけないらしい
  1585. (defun my-w32-add-export-path (&rest args)
  1586. ""
  1587. (mapcar (lambda (path)
  1588. (add-to-list 'exec-path (expand-file-name path)))
  1589. args)
  1590. (setenv "PATH"
  1591. (mapconcat 'convert-standard-filename
  1592. exec-path
  1593. ";")))
  1594. (when (eq system-type 'windows-nt)
  1595. ;; (setq scheme-program-name "\"c:/Program Files/Gauche/bin/gosh.exe\" -i")
  1596. ;; (setq python-python-command "c:/Python26/python.exe")
  1597. (define-key my-prefix-map (kbd "C-c") 'start-ckw-bash)
  1598. (my-w32-add-export-path "c:/WINDOWS"
  1599. (expand-file-name "~/bin")
  1600. (expand-file-name "~/dbx/apps/bin"))
  1601. (when window-system
  1602. (setq w32-enable-synthesized-fonts t))
  1603. (setq file-name-coding-system 'sjis))