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.
 
 
 
 
 
 

1845 lines
66 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. (setq delete-by-moving-to-trash t
  77. trash-directory "~/.emacs.d/trash")
  78. ;; change color for border
  79. (set-face-foreground (make-face 'vertical-border-face) "red")
  80. (set-display-table-slot standard-display-table 'vertical-border
  81. (make-glyph-code #x3a 'vertical-border-face))
  82. ;; kill scratch
  83. (add-hook 'after-init-hook
  84. (lambda ()
  85. (kill-buffer "*scratch*")))
  86. (defun my-delete-frame-or-kill-emacs ()
  87. "delete frame when opening multiple frame, kill emacs when only one."
  88. (interactive)
  89. (if (eq 1
  90. (length (frame-list)))
  91. (save-buffers-kill-emacs)
  92. (delete-frame)))
  93. (global-set-key (kbd "C-x C-c") 'my-delete-frame-or-kill-emacs)
  94. (define-key my-prefix-map (kbd "C-x C-c") 'save-buffers-kill-emacs)
  95. ;; modifier keys
  96. (setq mac-option-modifier 'control)
  97. (setq w32-apps-modifier 'meta)
  98. ;; http://www.emacswiki.org/emacs/ChangingCursorDynamically
  99. ;; bufferの保存はなんで必要なんだろう?
  100. ;; Change cursor color according to mode
  101. (defvar hcz-set-cursor-color-color "")
  102. (defvar hcz-set-cursor-color-buffer "")
  103. (defun hcz-set-cursor-color-according-to-mode ()
  104. "change cursor color according to some minor modes."
  105. ;; set-cursor-color is somewhat costly, so we only call it when needed:
  106. (let ((color
  107. (if buffer-read-only "blue"
  108. (if overwrite-mode "yellow"
  109. "black"))))
  110. (unless (and
  111. (string= color hcz-set-cursor-color-color)
  112. (string= (buffer-name) hcz-set-cursor-color-buffer))
  113. (set-cursor-color (setq hcz-set-cursor-color-color color))
  114. (setq hcz-set-cursor-color-buffer (buffer-name)))))
  115. (add-hook 'post-command-hook 'hcz-set-cursor-color-according-to-mode)
  116. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  117. ;; minibuffer
  118. (setq insert-default-directory t)
  119. (setq completion-ignore-case t
  120. read-file-name-completion-ignore-case t
  121. read-buffer-completion-ignore-case t)
  122. (setq resize-mini-window t)
  123. (temp-buffer-resize-mode 1)
  124. (fset 'yes-or-no-p 'y-or-n-p)
  125. (define-key read-expression-map (kbd "TAB") 'lisp-complete-symbol) ; complete symbol when `eval'
  126. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  127. ;; editting
  128. (setq require-final-newline t)
  129. (setq kill-whole-line t)
  130. (setq scroll-conservatively 35
  131. scroll-margin 2
  132. scroll-step 0) ;4行ずつスクロール?
  133. (setq default-major-mode 'text-mode)
  134. (setq next-line-add-newlines nil)
  135. (setq kill-read-only-ok t)
  136. (setq truncate-partial-width-windows nil) ; when splitted horizontally
  137. ;; (setq-default line-spacing 0.2)
  138. (setq-default indicate-empty-lines t) ; なんだろうこれ
  139. (setq-default tab-width 4)
  140. (setq-default indent-tabs-mode nil)
  141. (pc-selection-mode 1)
  142. (delete-selection-mode 1)
  143. ;; key bindings
  144. (global-set-key (kbd "C-m") 'newline-and-indent)
  145. (global-set-key (kbd "C-o") (lambda ()
  146. (interactive)
  147. (goto-char (point-at-eol))
  148. (newline-and-indent)))
  149. (global-set-key (kbd "C-k") 'kill-whole-line)
  150. (global-set-key (kbd "M-k") 'my-copy-whole-line)
  151. ;; (global-set-key "\C-z" 'undo) ; undo is C-/
  152. ;; (global-set-key (kbd "C-<return>") (lambda () (interactive) (insert "\f\n")))
  153. (global-set-key (kbd "M-u") 'undo)
  154. (global-set-key (kbd "C-r") 'query-replace-regexp)
  155. (global-set-key (kbd "C-s") 'isearch-forward-regexp)
  156. (global-set-key (kbd "M-i") (lambda ()
  157. (interactive)
  158. (call-interactively (key-binding (kbd "M-TAB")))))
  159. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  160. ;; letters, font-lock mode and fonts
  161. (show-paren-mode 1)
  162. (setq show-paren-style 'mixed)
  163. (transient-mark-mode 1)
  164. (global-font-lock-mode 1)
  165. (standard-display-ascii ?\n "$\n")
  166. (defface my-eol-face
  167. '((t (:foreground "gray")))
  168. "eol.")
  169. (standard-display-ascii ?\f "---------------------------------------------------------------------------------------^L")
  170. (defface my-pagebreak-face
  171. '((t (:foreground "gray")))
  172. "pagebreak.")
  173. (defvar my-eol-face
  174. '(("\n" . '(0 my-eol-face t nil))))
  175. (defvar my-pagebreak-face
  176. '(("\f" . 'my-pagebreak-face)))
  177. (defvar my-highlight-face
  178. '(("\t" . '(0 highlight t nil))
  179. (" " . '(0 highlight t nil))))
  180. ;; (defvar my-face
  181. ;; '(("\t" . 'highlight)
  182. ;; (" " . 'highlight)
  183. ;; ("\n" . '(0 my-eol-face t nil))
  184. ;; ("\f" . 'my-pagebreak-face)))
  185. ;; 現在行をハイライト
  186. ;; http://wiki.riywo.com/index.php?Meadow
  187. (defface hlline-face
  188. '((((type x w32)
  189. (class color)
  190. (background dark))
  191. (:background "midnightblue")) ; :foreground "white")) ;; ハイライトの文字色は変えない方がいいかも
  192. (((type x w32)
  193. (class color)
  194. (background light))
  195. (:background "gainsboro"))
  196. (t
  197. (:underline "black")))
  198. "*Face used by hl-line.")
  199. ;; (defface hlline-ul-face
  200. ;; '((t (:underline "yellow")))
  201. ;; "underline yellow")
  202. (setq hl-line-face 'hlline-face) ;; (setq hl-line-face nil)
  203. (global-hl-line-mode 1) ;; (hl-line-mode 1)
  204. (setq hl-line-global-modes nil)
  205. (setq font-lock-global-modes
  206. '(not
  207. help-mode
  208. eshell-mode
  209. term-mode
  210. Man-mode))
  211. (add-hook 'font-lock-mode-hook
  212. (lambda ()
  213. (font-lock-add-keywords nil my-eol-face)
  214. (font-lock-add-keywords nil my-highlight-face)))
  215. (set-face-foreground 'font-lock-regexp-grouping-backslash "#666")
  216. (set-face-foreground 'font-lock-regexp-grouping-construct "#f60")
  217. ;; fonts
  218. ;; (defun my-w32-set-font ()
  219. ;; "set font for windows."
  220. ;; ((lambda (&rest lists)
  221. ;; (let ((dir "c:/WINDOWS/Fonts")
  222. ;; lfs)
  223. ;; (while lists
  224. ;; (setq lfs (pop lists))
  225. ;; (when (directory-files dir nil (car lfs))
  226. ;; (my-set-ascii-and-jp-font-with-size (cdr lfs))
  227. ;; (setq lists nil)))))
  228. ;; '("^DejaVuSansMono" "dejavu sans mono" 80 "ms gothic" 12)
  229. ;; '("^inconsolata" "inconsolata" 100 "ms gothic" 12)))
  230. ;; (defun my-w32-set-available-ascii-and-jp-font-with-size (&rest lists)
  231. ;; ""
  232. ;; (let ((dir "c:/WINDOWS/Fonts")
  233. ;; lfs)
  234. ;; (while lists
  235. ;; (setq lfs (pop lists))
  236. ;; (when (directory-files dir nil (car lfs))
  237. ;; (my-set-ascii-and-jp-font-with-size (cdr lfs))
  238. ;; (setq lists nil)))))
  239. (defun my-set-ascii-and-jp-font-with-size (list)
  240. ""
  241. (set-face-attribute 'default nil
  242. :family (nth 0 list)
  243. :height (nth 1 list))
  244. (set-fontset-font "fontset-default"
  245. 'japanese-jisx0208
  246. (font-spec :family (nth 2 list) :size (nth 3 list)))
  247. (set-fontset-font "fontset-default"
  248. 'katakana-jisx0201
  249. (font-spec :family (nth 2 list) :size (nth 3 list)))) ; font spec is available in emacs23 and later, cannot used in emacs22
  250. ;; (my-set-ascii-and-jp-font-with-size '("dejavu sans mono" 90 "takaogothic" 13))
  251. ;; (my-set-ascii-and-jp-font-with-size '("dejavu sans mono" 100 "takaogothic" 14))
  252. ;; (my-set-ascii-and-jp-font-with-size '("monaco" 75 "takaogothic" 11))
  253. ;; (my-set-ascii-and-jp-font-with-size '("monaco" 90 "takaogothic" 13))
  254. ;; (my-set-ascii-and-jp-font-with-size '("ProggyCleanTTSZ" 120 "takaogothic" 11))
  255. ;; あ a
  256. (defun my-22-set-ascii-and-jp-font-with-size (list)
  257. ""
  258. (set-face-attribute 'default nil
  259. :family (nth 0 list)
  260. :height (nth 1 list))
  261. (set-fontset-font "fontset-default"
  262. 'japanese-jisx0208
  263. (cons (nth 2 list) "jisx0208.*"))
  264. (set-fontset-font "fontset-default"
  265. 'katakana-jisx0201
  266. (cons (nth 2 list) "jisx0201.*")))
  267. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  268. ;; mode-line
  269. (which-function-mode 0)
  270. (line-number-mode 0)
  271. (column-number-mode 0)
  272. (size-indication-mode 0)
  273. (setq mode-line-position
  274. '(:eval (format "L%%l/%d,C%%c"
  275. (count-lines (point-max)
  276. (point-min)))))
  277. ;; http://www.geocities.jp/simizu_daisuke/bunkei-meadow.html#frame-title
  278. ;; display date
  279. (add-hook 'after-init-hook
  280. (lambda ()
  281. (setq display-time-string-forms
  282. '(dayname ", " day " " monthname " " year " " 24-hours ":"minutes ":" seconds))
  283. (setq display-time-string-forms
  284. '((my-format-time-string)))
  285. (when display-time-mode
  286. (display-time-update))
  287. ))
  288. (setq display-time-interval 29)
  289. (setq display-time-day-and-date t)
  290. (if window-system
  291. (display-time-mode 0)
  292. (display-time-mode 1))
  293. ;; current directory
  294. (let ((ls (member 'mode-line-buffer-identification
  295. mode-line-format)))
  296. (setcdr ls
  297. (cons '(:eval (concat " ("
  298. (abbreviate-file-name default-directory)
  299. ")"))
  300. (cdr ls))))
  301. (let ((ls (member 'mode-line-buffer-identification
  302. mode-line-format)))
  303. (setcdr ls
  304. (cons '(:eval (concat " "
  305. my-buffer-file-last-modified-time))
  306. (cdr ls))))
  307. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  308. ;; back up and auto saving
  309. ;; http://www.bookshelf.jp/soft/meadow_24.html#SEC260
  310. (setq make-backup-files t)
  311. ;; (make-directory (expand-file-name "~/.emacsbackup"))
  312. (setq backup-directory-alist
  313. (cons (cons "\\.*$" (expand-file-name "~/.emacs.d/backup"))
  314. backup-directory-alist))
  315. (setq version-control t)
  316. (setq delete-old-versions t)
  317. (setq auto-save-list-file-prefix (expand-file-name "~/.emacs.d/autosave/"))
  318. (setq delete-auto-save-files t)
  319. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  320. ;; for emacsclient
  321. ;; (if window-system (server-start))
  322. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  323. ;; global keys
  324. (define-key my-prefix-map (kbd "C-f") 'make-frame-command)
  325. (define-key my-prefix-map (kbd "C-o") 'occur)
  326. ;; moving around
  327. ;; (global-set-key (kbd "M-j") 'next-line)
  328. ;; (global-set-key (kbd "M-k") 'previous-line)
  329. ;; (global-set-key (kbd "M-h") 'backward-char)
  330. ;; (global-set-key (kbd "M-l") 'forward-char)
  331. ;;(keyboard-translate ?\M-j ?\C-j)
  332. (global-set-key (kbd "M-p") 'backward-paragraph)
  333. (global-set-key (kbd "M-n") 'forward-paragraph)
  334. (global-set-key (kbd "C-<up>") (lambda () (interactive)(scroll-down 1)))
  335. (global-set-key (kbd "C-<down>") (lambda () (interactive)(scroll-up 1)))
  336. (global-set-key (kbd "C-<left>") 'scroll-down)
  337. (global-set-key (kbd "C-<right>") 'scroll-up)
  338. (global-set-key (kbd "C-x M-x") 'execute-extended-command)
  339. (global-set-key (kbd "C-x M-:") 'eval-expression)
  340. ;; C-h and DEL
  341. ;; (global-set-key (kbd "C-h") 'backward-delete-char-untabify)
  342. ;; (global-set-key (kbd "DEL") help-map)
  343. (global-set-key (kbd "C-h") (lambda ()
  344. (interactive)
  345. (call-interactively (key-binding (kbd "DEL")))))
  346. ;; (keyboard-translate ?\^h ?\^?) ; scimにはC-hを送りたい
  347. ;; (keyboard-translate ?\b ?\^h) ; dont translate backspace
  348. ;; (define-key my-prefix-map (kbd "C-h") help-map)
  349. (global-set-key (kbd "C-\\") help-map)
  350. (global-set-key (kbd "C-x DEL") help-map)
  351. (global-set-key (kbd "C-x C-h") help-map)
  352. (define-key help-map "a" 'apropos)
  353. ;; compose window
  354. (global-set-key [?\C--] 'other-window)
  355. (global-set-key [?\C-0] 'delete-window)
  356. (global-set-key [?\C-1] 'delete-other-windows)
  357. (global-set-key [?\C-2] 'split-window-vertically)
  358. (global-set-key [?\C-3] 'split-window-horizontally)
  359. ;; disable annoying keys
  360. (global-set-key [prior] 'ignore)
  361. (global-set-key (kbd "<next>") 'ignore)
  362. (global-set-key [menu] 'ignore)
  363. (global-set-key [down-mouse-1] 'ignore)
  364. (global-set-key [down-mouse-2] 'ignore)
  365. (global-set-key [down-mouse-3] 'ignore)
  366. (global-set-key [mouse-1] 'ignore)
  367. (global-set-key [mouse-2] 'ignore)
  368. (global-set-key [mouse-3] 'ignore)
  369. (global-set-key (kbd "<eisu-toggle>") 'ignore)
  370. (global-set-key (kbd "C-<eisu-toggle>") 'ignore)
  371. (mouse-avoidance-mode 'banish)
  372. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  373. ;; download library from web
  374. ;; (require 'url)
  375. ;; (defun dllib-if-needed (lib url &optional callback bite-compile-p force-download-p) ; dont use it
  376. ;; "if LIB does not exist, download it from URL and rename to \"~/emacs.d/lisp/LIB.el\".
  377. ;; after download LIB successfully call CALLBACK. if LIB already exist, call CALLBACK immediately."
  378. ;; (let* ((dir (expand-file-name "~/.emacs.d/lisp/"))
  379. ;; (lpath (concat dir lib ".el")))
  380. ;; (and (if (or force-download-p (not (locate-library lib)))
  381. ;; (condition-case nil
  382. ;; (progn (url-copy-file url
  383. ;; lpath
  384. ;; t)
  385. ;; (and bite-compile-p
  386. ;; (byte-compile-file lpath)
  387. ;; t))
  388. ;; (error (message "downloading %s...something wrong happened!" url)
  389. ;; nil))
  390. ;; t)
  391. ;; callback
  392. ;; (funcall callback))))
  393. (defun dllib-if-unfound (lib url &optional bite-compile-p force-download-p) ; new version
  394. "if LIB does not exist, download it from URL and locate it to \"~/emacs.d/lisp/LIB.el\".
  395. return nil if LIB unfound and downloading failed, otherwise the path of LIB."
  396. (let* ((dir (expand-file-name "~/.emacs.d/lisp/"))
  397. (lpath (concat dir lib ".el"))
  398. (locate-p (locate-library lib)))
  399. (if (or force-download-p (not locate-p))
  400. (progn (condition-case nil
  401. (progn (message "downloading %s..." url)
  402. (url-copy-file url
  403. lpath
  404. t)
  405. (when bite-compile-p
  406. (byte-compile-file lpath)))
  407. (error (message "downloading %s...something wrong happened!" url)
  408. nil))
  409. (locate-library lib))
  410. locate-p)))
  411. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  412. ;;requireが必要なelispおよびhook
  413. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  414. ;; share clipboard with x
  415. (when (or window-system
  416. (getenv "DESKTOP_SESSION"))
  417. (setq x-select-enable-clipboard t))
  418. ;; urlに細かい説明あり。でも設定は上記だけでよさそう
  419. ;; http://garin.jp/doc/Linux/xwindow_clipboard
  420. (and x-select-enable-clipboard
  421. (executable-find "xclip")
  422. (dllib-if-unfound "xclip" "http://www.emacswiki.org/emacs/download/xclip.el" t)
  423. (require 'xclip nil t)
  424. (turn-on-xclip))
  425. ;; カーソルの場所を保存する
  426. (when (require 'saveplace nil t)
  427. (setq-default save-place t))
  428. ;; その他のhook
  429. (add-hook 'after-save-hook
  430. 'executable-make-buffer-file-executable-if-script-p)
  431. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  432. ;; mode関連
  433. ;; (ffap-bindings)
  434. (add-hook 'inferior-python-mode-hook
  435. (lambda ()
  436. (define-key inferior-python-mode-map (kbd "<up>") 'comint-previous-input)
  437. (define-key inferior-python-mode-map (kbd "<down>") 'comint-next-input)))
  438. (add-to-list 'Info-default-directory-list (expand-file-name "~/.info/emacs-ja"))
  439. (setq bookmark-default-file "~/.emacs.d/bmk")
  440. (add-hook 'apropos-mode-hook
  441. (lambda ()
  442. (define-key apropos-mode-map "j" 'next-line)
  443. (define-key apropos-mode-map "k" 'previous-line)))
  444. (define-key minibuffer-local-map (kbd "C-u") (lambda () (interactive) (delete-region (point-at-bol) (point-at-eol))))
  445. (add-hook 'isearch-mode-hook
  446. (lambda ()
  447. ;; (define-key isearch-mode-map (kbd "C-j") 'isearch-other-control-char)
  448. ;; (define-key isearch-mode-map (kbd "C-k") 'isearch-other-control-char)
  449. ;; (define-key isearch-mode-map (kbd "C-h") 'isearch-other-control-char)
  450. (define-key isearch-mode-map (kbd "C-h") 'isearch-delete-char)
  451. (define-key isearch-mode-map (kbd "M-r") 'isearch-query-replace-regexp)))
  452. (add-hook 'outline-mode-hook
  453. (lambda ()
  454. (if (string-match "\\.md$" buffer-file-name)
  455. (set (make-local-variable 'outline-regexp) "#+ "))))
  456. (add-to-list 'auto-mode-alist (cons "\\.ol$" 'outline-mode))
  457. (add-to-list 'auto-mode-alist (cons "\\.md$" 'outline-mode))
  458. (when (dllib-if-unfound "markdown-mode"
  459. "http://jblevins.org/projects/markdown-mode/markdown-mode.el"
  460. t)
  461. (add-to-list 'auto-mode-alist (cons "\\.md$" 'markdown-mode))
  462. (autoload 'markdown-mode "markdown-mode" "Major mode for editing Markdown files." nil)
  463. (add-hook 'markdown-mode-hook
  464. (lambda ()
  465. (outline-minor-mode 1)
  466. (set (make-local-variable 'comment-start) ";"))))
  467. ;; (add-hook 'c-mode-hook
  468. ;; (lambda ()
  469. ;; (set (make-local-variable 'comment-start) "//")
  470. ;; (set (make-local-variable 'comment-end) "")))
  471. ;; http://d.hatena.ne.jp/emergent/20070203/1170512717
  472. ;; c-mode
  473. ;; (setq c-default-style "bsd")
  474. ;; BackSpace キーを「賢く」し,インデント幅は2桁,タブはスペースに展開
  475. (add-hook 'c-mode-common-hook
  476. (lambda ()
  477. (setq c-basic-offset 2
  478. indent-tabs-mode nil)
  479. ;; (set-face-foreground 'font-lock-keyword-face "blue")
  480. (c-toggle-hungry-state 1)
  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. ;; (define-key c-mode-base-map "\C-h" 'c-electric-backspace)
  489. ;; (when (require 'c nil t)(c-toggle-hungry-state t)
  490. (when (dllib-if-unfound "js2-mode"
  491. "https://github.com/mooz/js2-mode/raw/master/js2-mode.el"
  492. t)
  493. (autoload 'js2-mode "js2-mode" nil t)
  494. (add-to-list 'auto-mode-alist '("\\.js$" . js2-mode)))
  495. ;; (add-hook 'js2-mode-hook
  496. ;; (lambda ()
  497. ;; (add-hook 'before-save-hook
  498. ;; 'my-indent-buffer
  499. ;; nil
  500. ;; t)))
  501. (add-hook 'js2-mode-hook
  502. (lambda ()
  503. (define-key js2-mode-map (kbd "C-m") (lambda ()
  504. (interactive)
  505. (js2-enter-key)
  506. (indent-for-tab-command)))
  507. (add-hook (kill-local-variable 'before-save-hook)
  508. 'js2-before-save)))
  509. (when (require 'zone nil t)
  510. ;; (zone-when-idle 180)
  511. (run-with-idle-timer 180 t (lambda ()
  512. (unless (memq major-mode
  513. '(term-mode))
  514. (zone)))))
  515. (when (require 'uniquify nil t)
  516. (setq uniquify-buffer-name-style 'post-forward-angle-brackets)
  517. (setq uniquify-ignore-buffers-re "*[^*]+*")
  518. (setq uniquify-min-dir-content 1))
  519. (add-hook 'view-mode-hook
  520. (lambda()
  521. (define-key view-mode-map "j" (lambda() (interactive) (scroll-up 1)))
  522. (define-key view-mode-map "k" (lambda() (interactive) (scroll-down 1)))
  523. (define-key view-mode-map "/" 'isearch-forward)
  524. (define-key view-mode-map "v" 'toggle-read-only)
  525. (define-key view-mode-map "q" 'kill-this-buffer)))
  526. (global-set-key "\M-r" 'view-mode)
  527. (setq view-read-only t)
  528. ;; (add-hook 'find-file-hook
  529. ;; (lambda ()
  530. ;; (when buffer-read-only
  531. ;; (view-mode 1))))
  532. (add-hook 'Man-mode-hook
  533. (lambda ()
  534. (view-mode 1)
  535. (setq truncate-lines nil)))
  536. (setq Man-notify-method (if window-system
  537. 'newframe
  538. 'pushy))
  539. ;; (setq multi-term-program shell-file-name)
  540. (and (dllib-if-unfound "multi-term"
  541. "http://www.emacswiki.org/emacs/download/multi-term.el"
  542. t)
  543. (require 'multi-term nil t))
  544. ;; http://d.hatena.ne.jp/goinger/20100416/1271399150
  545. ;; (setq term-ansi-default-program shell-file-name)
  546. (add-hook 'term-setup-hook (lambda ()
  547. (setq term-display-table (make-display-table))))
  548. (add-hook 'term-mode-hook (lambda ()
  549. (unless (memq (current-buffer) (and (require 'multi-term nil t) ; current buffer is not multi-term buffer
  550. (multi-term-list)))
  551. (define-key term-raw-map "\C-y" 'term-paste)
  552. ;; (define-key term-raw-map "\C-q" 'move-beginning-of-line)
  553. ;; (define-key term-raw-map "\C-r" 'term-send-raw)
  554. ;; (define-key term-raw-map "\C-s" 'term-send-raw)
  555. ;; (define-key term-raw-map "\C-f" 'forward-char)
  556. ;; (define-key term-raw-map "\C-b" 'backward-char)
  557. ;; (define-key term-raw-map "\C-t" 'set-mark-command)
  558. (define-key term-raw-map (kbd "ESC") 'term-send-raw)
  559. (define-key term-raw-map [delete] 'term-send-raw)
  560. (define-key term-raw-map "\C-c" 'term-send-raw)
  561. (define-key term-raw-map "\C-x" (lookup-key (current-global-map) "\C-x"))
  562. (define-key term-raw-map "\C-z" (lookup-key (current-global-map) "\C-z")))
  563. (set (make-variable-buffer-local 'scroll-margin) 0)))
  564. ;; (add-hook 'term-exec-hook 'forward-char)
  565. ;; (when (and (executable-find "git")
  566. ;; (require 'sgit-mode nil t))
  567. ;; (add-hook 'find-file-hook
  568. ;; 'sgit-load))
  569. (when (require 'gtkbm nil t)
  570. (global-set-key (kbd "C-x C-d") 'gtkbm))
  571. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  572. ;; gmail
  573. (setq mail-interactive t
  574. send-mail-function 'smtpmail-send-it
  575. ;; message-send-mail-function 'smtpmail-send-it
  576. smtpmail-smtp-server "smtp.gmail.com"
  577. smtpmail-smtp-service 587
  578. smtpmail-starttls-credentials '(("smtp.gmail.com" 587 "8.slashes@gmail.com" nil))
  579. smtpmail-auth-credentials '(("smtp.gmail.com" 587 "8.slashes@gmail.com" nil))
  580. user-mail-address "8.slashes@gmail.com")
  581. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  582. ;; buffer killing
  583. ;; (add-hook 'kill-buffer-hook
  584. ;; (lambda ()
  585. ;; (when buffer-file-name
  586. ;; (dired "."))))
  587. (defun kill-buffer-by-major-mode (mode &optional exclude-current-buffer-p) ;mapcarとかつかって全部書き換える
  588. "kill buffers.
  589. if EXCLUDE-CURRENT-BUFFER-P is non-nil, never kill current buffer"
  590. (interactive "xmajor mode of buffer to kill: ")
  591. (save-excursion
  592. (let ((bflist (buffer-list))
  593. (cbf (current-buffer))
  594. bf)
  595. (while bflist
  596. (setq bf (pop bflist))
  597. (set-buffer bf)
  598. (if (and (eq mode major-mode) ;メジャーモードが一致し、かつ
  599. (not (and exclude-current-buffer-p ;今のバッファを除外、今のバッファと一致 がともには満たされない
  600. (eq bf cbf))))
  601. (kill-buffer bf))))))
  602. (defun my-kill-this-buffer-when-hide (&optional buffer all-frames)
  603. ""
  604. (interactive)
  605. (let ((bf (or buffer
  606. (current-buffer))))
  607. (if (or (not buffer) (get-buffer-window bf all-frames))
  608. (run-with-timer 3 nil 'my-kill-this-buffer-when-hide bf all-frames)
  609. (kill-buffer bf))))
  610. ;; (add-hook 'dired-mode-hook
  611. ;; 'my-kill-this-buffer-when-hide)
  612. (defvar my-kill-previous-buffer nil)
  613. (defun my-kill-previous-buffer ()
  614. ""
  615. (when my-kill-previous-buffer
  616. (kill-buffer my-kill-previous-buffer))
  617. (setq my-kill-previous-buffer (current-buffer)))
  618. ;; (add-hook 'dired-mode-hook
  619. ;; 'my-kill-previous-buffer)
  620. (defun my-query-kill-this-buffer ()
  621. ""
  622. (interactive)
  623. (if (y-or-n-p (concat "kill this buffer? :"))
  624. (kill-buffer (current-buffer))))
  625. (substitute-key-definition 'kill-buffer 'my-query-kill-this-buffer global-map)
  626. ;;(global-set-key "\C-xk" 'my-query-kill-this-buffer)
  627. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  628. ;; buffer switching
  629. (when (require 'bs nil t)
  630. ;; (global-set-key "\C-x\C-b" 'bs-show)
  631. (defalias 'list-buffers 'bs-show))
  632. ;; (add-to-list 'bs-configurations '("processes" nil get-buffer-process ".*" nil nil))
  633. (add-to-list 'bs-configurations '("same-dir" nil buffer-same-dir-p ".*" nil nil))
  634. ;; (setq bs-configurations (list '("processes" nil get-buffer-process ".*" nil nil)
  635. ;; '("files-and-scratch" "^\\*scratch\\*$" nil nil bs-visits-non-file bs-sort-buffer-interns-are-last)))
  636. (setq bs-default-configuration "all")
  637. (add-hook 'bs-mode-hook
  638. (lambda ()
  639. (setq bs-default-configuration "all")))
  640. (defun buffer-same-dir-p (bf)
  641. "return t if BF's dir is same as current dir, otherwise nil."
  642. (let ((cdir (expand-file-name default-directory)))
  643. (with-current-buffer bf
  644. (equal (expand-file-name default-directory) cdir))))
  645. (defun echo-buffer-list (&optional blist)
  646. "echo buffer list as string. BLIST is list with buffer objects as elements.
  647. if arg is omitted use value of `buffer-list'."
  648. (interactive)
  649. (message (or (mapconcat (lambda (bf)
  650. (concat (buffer-name bf)
  651. "\t"
  652. (with-current-buffer bf
  653. (symbol-name major-mode))
  654. "\t"
  655. (abbreviate-file-name (buffer-file-name bf))))
  656. (or blist
  657. (buffer-list))
  658. "\n")
  659. "")))
  660. (defun my-buffer-list ()
  661. "return buffer list."
  662. (delq nil
  663. (mapcar (lambda (bf)
  664. (with-current-buffer bf
  665. (and buffer-file-name
  666. bf)))
  667. (buffer-list (selected-frame)))))
  668. (defvar buffer-switch-list-function 'my-buffer-list)
  669. (defun switch-to-previous-buffer-cycle (&optional silent-p)
  670. ""
  671. (interactive)
  672. (let ((bl (funcall buffer-switch-list-function)))
  673. (when bl
  674. (bury-buffer (car bl))
  675. (switch-to-buffer (or (nth 1 bl)
  676. (car bl)))
  677. (or silent-p
  678. (echo-buffer-list (funcall buffer-switch-list-function))))))
  679. (defun switch-to-next-buffer-cycle (&optional silent-p)
  680. ""
  681. (interactive)
  682. (let* ((bl (funcall buffer-switch-list-function))
  683. (bf (nth (- (length bl)
  684. 1)
  685. bl)))
  686. (when bl
  687. (switch-to-buffer bf)
  688. (or silent-p
  689. (echo-buffer-list (funcall buffer-switch-list-function))))))
  690. (iswitchb-mode 1)
  691. (defun iswitchb-buffer-display-other-window ()
  692. ""
  693. (interactive)
  694. (let ((iswitchb-default-method 'display))
  695. (call-interactively 'iswitchb-buffer)))
  696. (defun switch-to-other-buffer ()
  697. ""
  698. (interactive)
  699. (let ((buffer-switch-list-function 'buffer-list))
  700. (switch-to-previous-buffer-cycle t)))
  701. (global-set-key (kbd "C-.") 'switch-to-previous-buffer-cycle)
  702. (global-set-key (kbd "C-,") 'switch-to-next-buffer-cycle)
  703. ;; (global-set-key (kbd "C-\\") 'switch-to-other-buffer)
  704. ;; (global-set-key (kbd "C-\\") 'bury-buffer)
  705. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  706. ;; sdic
  707. (defun sdic-describe-word-echo ()
  708. ""
  709. (interactive)
  710. (save-window-excursion
  711. (sdic-describe-word-at-point))
  712. (save-excursion
  713. (set-buffer sdic-buffer-name)
  714. (message (buffer-substring (point-min)
  715. (progn (goto-char (point-min))
  716. (or (and (re-search-forward "^\\w" nil t 4)
  717. (progn (previous-line) t)
  718. (point-at-eol))
  719. (point-max)))))))
  720. (setq sdic-eiwa-dictionary-list '((sdicf-client "/usr/share/dict/gene.sdic")))
  721. (setq sdic-waei-dictionary-list '((sdicf-client "/usr/share/dict/jedict.sdic" (add-keys-to-headword t))))
  722. (setq sdic-disable-select-window t)
  723. (setq sdic-window-height 7)
  724. (when (require 'sdic nil t)
  725. (global-set-key "\C-cw" 'sdic-describe-word)
  726. (global-set-key "\C-ct" 'sdic-describe-word-at-point)
  727. (global-set-key "\C-t" 'sdic-describe-word-echo))
  728. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  729. ;; vc
  730. ;; (require 'vc)
  731. (setq vc-handled-backends nil)
  732. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  733. ;; gauche-mode
  734. (setq scheme-program-name "gosh")
  735. (defun run-gauche-other-window ()
  736. "Run gauche on other window"
  737. (interactive)
  738. (switch-to-buffer-other-window
  739. (get-buffer-create "*scheme*"))
  740. (run-gauche))
  741. (defun run-gauche ()
  742. "run gauche"
  743. (run-scheme "gosh"))
  744. (defun scheme-send-buffer ()
  745. ""
  746. (interactive)
  747. (scheme-send-region (point-min) (point-max)))
  748. (add-hook 'scheme-mode-hook
  749. (lambda ()
  750. (define-key scheme-mode-map "\C-c\C-b" 'scheme-send-buffer)))
  751. ;; http://d.hatena.ne.jp/kobapan/20090305/1236261804
  752. ;; http://www.katch.ne.jp/~leque/software/repos/gauche-mode/gauche-mode.el
  753. (when (dllib-if-unfound "gauche-mode"
  754. "http://www.katch.ne.jp/~leque/software/repos/gauche-mode/gauche-mode.el"
  755. t)
  756. (setq auto-mode-alist
  757. (cons '("\.scm$" . gauche-mode) auto-mode-alist))
  758. (autoload 'gauche-mode "gauche-mode" "Major mode for Scheme." t)
  759. (autoload 'run-scheme "gauche-mode" "Run an inferior Scheme process." t)
  760. (add-hook 'gauche-mode-hook
  761. (lambda ()
  762. (define-key scheme-mode-map "\C-c\C-z" 'run-gauche-other-window))))
  763. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  764. ;; recentf-mode
  765. (add-hook 'recentf-dialog-mode-hook
  766. 'my-recentf-abbrev-list)
  767. (defun my-recentf-delete-entry ()
  768. ""
  769. (interactive)
  770. (let ((p (point)))
  771. (setq recentf-list
  772. (delete (my-recentf-get-filename) recentf-list))
  773. (recentf-open-files)
  774. (goto-char p)))
  775. (defun my-recentf-abbrev-list ()
  776. ""
  777. (setq recentf-list
  778. (mapcar 'abbreviate-file-name
  779. recentf-list)))
  780. (defun my-recentf-view-file ()
  781. ""
  782. (interactive)
  783. (view-file (my-recentf-get-filename)))
  784. (defun my-recentf-dired ()
  785. ""
  786. (interactive)
  787. (let ((file (my-recentf-get-filename)))
  788. (if (file-directory-p file)
  789. (dired file)
  790. (dired (or (file-name-directory file)
  791. ".")))))
  792. (defun my-recentf-x-open ()
  793. ""
  794. (interactive)
  795. (my-x-open (my-recentf-get-filename)))
  796. (defun my-recentf-cd-and-find-file ()
  797. ""
  798. (interactive)
  799. (cd (file-name-directory (my-recentf-get-filename)))
  800. (call-interactively 'find-file))
  801. (defun my-recentf-get-filename ()
  802. "get file name in recentf-mode"
  803. (replace-regexp-in-string " \\(\\[.+?\\] \\)?" ; " " or " [\\d] "
  804. ""
  805. (buffer-substring-no-properties (point-at-bol)
  806. (point-at-eol))))
  807. (setq recentf-save-file (expand-file-name "~/.emacs.d/.recentf")
  808. recentf-max-menu-items 20
  809. recentf-max-saved-items 30
  810. recentf-show-file-shortcuts-flag nil)
  811. (when (require 'recentf nil t)
  812. (global-set-key "\C-x\C-r" 'recentf-open-files)
  813. ;; (add-hook 'find-file-hook
  814. ;; (lambda ()
  815. ;; (recentf-add-file default-directory)))
  816. (recentf-mode 1)
  817. (add-to-list 'recentf-filename-handlers 'abbreviate-file-name)
  818. (add-to-list 'recentf-exclude "\\.emacs\\.d/\\.recentf"))
  819. (add-hook 'recentf-dialog-mode-hook
  820. (lambda ()
  821. (recentf-save-list)
  822. ;; (define-key recentf-dialog-mode-map (kbd "C-x C-f") 'my-recentf-cd-and-find-file)
  823. (define-key recentf-dialog-mode-map (kbd "<up>") 'previous-line)
  824. (define-key recentf-dialog-mode-map (kbd "<down>") 'next-line)
  825. (define-key recentf-dialog-mode-map "o" 'my-recentf-x-open)
  826. (define-key recentf-dialog-mode-map "d" 'my-recentf-delete-entry)
  827. (define-key recentf-dialog-mode-map "@" 'my-recentf-dired)
  828. (define-key recentf-dialog-mode-map "v" 'my-recentf-view-file)
  829. (cd "~/")))
  830. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  831. ;; dired
  832. (require 'dired)
  833. (require 'dired-aux) ;; needed to use dired-dwim-target-directory
  834. (defun my-dired-do-compress-or-uncompress ()
  835. ""
  836. (interactive)
  837. (let* ((infiles (dired-get-marked-files t))
  838. (onefile (and (eq 1 ; filename if only one file targeted, otherwise nil.
  839. (length infiles))
  840. (car infiles))))
  841. (if (and onefile
  842. (assoc (file-name-extension onefile)
  843. my-compress-program-alist))
  844. (when (y-or-n-p (format "uncompress %s? " onefile))
  845. (my-uncompress onefile)
  846. (revert-buffer))
  847. (let* ((dir-default (dired-dwim-target-directory))
  848. (archive-default (my-compress-file-extension (file-name-nondirectory (car infiles))))
  849. (archive (if (interactive-p)
  850. (read-file-name "Output file to compress : " ;; (format "Output file to compress (default for %s) : "
  851. ;; archive-default)
  852. dir-default
  853. nil ;; archive-default
  854. nil
  855. archive-default)
  856. (concat dir-default archive-default))))
  857. (apply 'my-compress
  858. archive
  859. infiles)
  860. (revert-buffer)))
  861. (dired-unmark-all-marks)))
  862. (defun my-file-name-extension-with-tar (filename)
  863. "if FILENAME has extension with tar, like \"tar.gz\", return that.
  864. otherwise, return extension normally."
  865. (if (string-equal "tar" (file-name-extension (file-name-sans-extension filename)))
  866. (concat "tar."
  867. (file-name-extension filename))
  868. (file-name-extension filename)))
  869. (defun my-compress-file-extension (filename)
  870. "if FILENAME has extension and it can be used for compress, return FILENAME.
  871. otherwise, return FILENAME with `my-compress-default-extension'"
  872. (if (assoc (file-name-extension filename)
  873. my-compress-program-alist)
  874. filename
  875. (concat filename "." my-compress-default-extension)))
  876. (defvar my-7z-program
  877. (or (executable-find "7z")
  878. (executable-find "7za")
  879. (executable-find "7zr")))
  880. (defvar my-compress-default-extension
  881. "7z")
  882. (defvar my-compress-program-alist
  883. `(("7z" ,my-7z-program "a" ,my-7z-program "x")
  884. ("tar" "tar" "cvf" "tar" "xvf")
  885. ("tgz" "tar" "czf" "tar" "xzf")
  886. ("txz" "tar" "cJf" "tar" "xJf")
  887. ("zip" "zip" "-r" "unzip" nil)))
  888. (defun my-uncompress (archive)
  889. ""
  890. (interactive "fArchive to extract: ")
  891. (let* ((earchive (expand-file-name archive))
  892. (ext (file-name-extension earchive))
  893. (lst (assoc ext
  894. my-compress-program-alist))
  895. (com (nth 3 lst))
  896. (op (nth 4 lst))
  897. (args (if op
  898. (list op earchive)
  899. (list earchive))))
  900. (message "uncompressing %s..." archive)
  901. (apply 'call-process
  902. com
  903. nil
  904. (my-pop-to-buffer-erase-noselect "*compressing output*")
  905. t
  906. args)
  907. (message "uncompressing %s...done." archive)))
  908. (defun my-compress (archive &rest files)
  909. "if archive have extension for compress, use it.
  910. otherwise, use `my-compress-default-extension'. for compress."
  911. (let* ((archive-ext (my-compress-file-extension (expand-file-name archive)))
  912. (ext (file-name-extension archive-ext))
  913. (lst (assoc ext
  914. my-compress-program-alist))
  915. (com (nth 1 lst))
  916. (op (nth 2 lst))
  917. (args (if op
  918. (apply 'list
  919. op
  920. archive-ext
  921. files)
  922. (apply 'list
  923. archive-ext
  924. files))))
  925. (message "compressing to %s..." archive)
  926. (apply 'call-process
  927. com
  928. nil
  929. (my-pop-to-buffer-erase-noselect "*compressing output*")
  930. t
  931. args)
  932. (message "compressing to %s...done." archive)))
  933. (defun my-pop-to-buffer-erase-noselect (buffer-or-name)
  934. "pop up buffer using `display-buffer' and return that buffer."
  935. (let ((bf (get-buffer-create buffer-or-name)))
  936. (with-current-buffer bf
  937. (cd ".")
  938. (erase-buffer))
  939. (display-buffer bf)
  940. bf))
  941. (defun my-replace-nasi-none ()
  942. ""
  943. (save-excursion
  944. (let ((buffer-read-only nil))
  945. (goto-char (point-min))
  946. (while (search-forward "なし" nil t)
  947. (replace-match "none")))))
  948. (defun dired-get-du () ;em-unix.el使えるかも
  949. "dired get disk usage"
  950. (interactive)
  951. (message "calculating du...")
  952. (dired-do-shell-command "du -hs * " nil (dired-get-marked-files)))
  953. (defun my-dired-scroll-up ()
  954. ""
  955. (interactive)
  956. (my-dired-previous-line (- (window-height) 1)))
  957. (defun my-dired-scroll-down ()
  958. ""
  959. (interactive)
  960. (my-dired-next-line (- (window-height) 1)))
  961. (defun my-dired-previous-line (&optional arg)
  962. ""
  963. (interactive)
  964. (dired-previous-line (or arg 1))
  965. (my-dired-print-current-dir-and-file))
  966. (defun my-dired-next-line (&optional arg)
  967. ""
  968. (interactive)
  969. (dired-next-line (or arg 1))
  970. (my-dired-print-current-dir-and-file))
  971. (defun my-dired-print-current-dir-and-file ()
  972. (message "%s %s"
  973. default-directory
  974. (buffer-substring-no-properties (point-at-bol)
  975. (point-at-eol))))
  976. (defun dired-do-execute-as-command ()
  977. ""
  978. (interactive)
  979. (let ((file (dired-get-filename t)))
  980. (if (file-executable-p file)
  981. (start-process file nil file)
  982. (when (y-or-n-p "this file cant be executed. mark as executable and go? : ")
  983. (set-file-modes file (file-modes-symbolic-to-number "u+x" (file-modes file)))
  984. (start-process file nil file)))))
  985. ;;http://bach.istc.kobe-u.ac.jp/lect/tamlab/ubuntu/emacs.html
  986. (defun my-dired-x-open ()
  987. ""
  988. (interactive)
  989. (my-x-open (dired-get-filename t t)))
  990. (defun my-dired-up-directory ()
  991. ""
  992. (interactive)
  993. (my-dired-find-file ".."))
  994. (defun my-dired-find-file (&optional filename)
  995. ""
  996. (interactive)
  997. (let ((f (expand-file-name (or filename
  998. (dired-get-filename))))
  999. (bf (current-buffer)))
  1000. (find-file f)
  1001. (when (and (file-directory-p f)
  1002. (not (get-buffer-window bf)))
  1003. (kill-buffer bf))))
  1004. (setq dired-listing-switches "-lhFG --time-style=long-iso")
  1005. (define-minor-mode my-dired-display-all-mode
  1006. ""
  1007. :init-value nil
  1008. (if my-dired-display-all-mode
  1009. (setq dired-actual-switches
  1010. (concat "-A "
  1011. dired-actual-switches))
  1012. (setq dired-actual-switches
  1013. (replace-regexp-in-string "-A " "" dired-actual-switches)))
  1014. (when (eq major-mode 'dired-mode)
  1015. (revert-buffer)))
  1016. (put 'dired-find-alternate-file 'disabled nil)
  1017. (require 'ls-lisp)
  1018. ;; (setq ls-lisp-use-insert-directory-program nil)
  1019. (setq ls-lisp-dirs-first t)
  1020. (setq dired-ls-F-marks-symlinks t)
  1021. (setq dired-dwim-target t)
  1022. ;; (add-hook 'dired-after-readin-hook
  1023. ;; 'my-replace-nasi-none)
  1024. (add-hook 'after-init-hook
  1025. (lambda ()
  1026. (dired ".")))
  1027. (add-hook 'dired-mode-hook
  1028. (lambda ()
  1029. (define-key dired-mode-map "o" 'my-dired-x-open)
  1030. (define-key dired-mode-map "i" 'dired-get-du)
  1031. (define-key dired-mode-map "!" 'shell-command)
  1032. (define-key dired-mode-map "&" 'async-shell-command)
  1033. (define-key dired-mode-map "X" 'dired-do-async-shell-command)
  1034. (define-key dired-mode-map "B" 'gtkbm-add-current-dir)
  1035. (define-key dired-mode-map "b" 'gtkbm)
  1036. (define-key dired-mode-map "@" (lambda () (interactive) (my-x-open ".")))
  1037. (define-key dired-mode-map (kbd "TAB") 'other-window)
  1038. (define-key dired-mode-map "Z" 'my-dired-do-compress-or-uncompress)
  1039. (define-key dired-mode-map "a" 'my-dired-display-all-mode)
  1040. (define-key dired-mode-map "h" 'my-dired-display-all-mode)
  1041. (substitute-key-definition 'dired-advertised-find-file 'my-dired-find-file dired-mode-map)
  1042. (substitute-key-definition 'dired-up-directory 'my-dired-up-directory dired-mode-map)
  1043. (define-key dired-mode-map (kbd "DEL") 'my-dired-up-directory)
  1044. (substitute-key-definition 'dired-next-line 'my-dired-next-line dired-mode-map)
  1045. (substitute-key-definition 'dired-previous-line 'my-dired-previous-line dired-mode-map)
  1046. (define-key dired-mode-map (kbd "<left>") 'my-dired-scroll-up)
  1047. (define-key dired-mode-map (kbd "<right>") 'my-dired-scroll-down)
  1048. (let ((file "._Icon\015"))
  1049. (when (file-readable-p file)
  1050. (delete-file file)))))
  1051. ;; http://homepage1.nifty.com/blankspace/emacs/dired.html
  1052. ;; (add-hook 'dired-load-hook
  1053. ;; (lambda ()
  1054. ;; (load-library "ls-lisp")
  1055. ;; (setq ls-lisp-dirs-first t)
  1056. ;; (setq dired-listing-switches "-alhF"))) ;これ書く場所間違えてね?
  1057. ;; (defadvice dired-next-line (after dired-next-line-print-directory activate)
  1058. ;; "print current directory when go down line"
  1059. ;; (dired-print-current-dir-and-file))
  1060. ;; (defadvice dired-previous-line (after dired-previous-line-print-directory activate)
  1061. ;; "print current directory when go up line"
  1062. ;; (dired-print-current-dir-and-file))
  1063. ;; http://blog.livedoor.jp/tek_nishi/archives/4693204.html
  1064. (defun my-dired-toggle-mark()
  1065. (let ((cur (cond ((eq (following-char) dired-marker-char) ?\040)
  1066. (t dired-marker-char))))
  1067. (delete-char 1)
  1068. (insert cur)))
  1069. (defun my-dired-mark (arg)
  1070. "toggle mark the current (or next ARG) files.
  1071. If on a subdir headerline, mark all its files except `.' and `..'.
  1072. Use \\[dired-unmark-all-files] to remove all marks
  1073. and \\[dired-unmark] on a subdir to remove the marks in
  1074. this subdir."
  1075. (interactive "P")
  1076. (if (dired-get-subdir)
  1077. (save-excursion (dired-mark-subdir-files))
  1078. (let ((inhibit-read-only t))
  1079. (dired-repeat-over-lines
  1080. (prefix-numeric-value arg)
  1081. 'my-dired-toggle-mark))))
  1082. (defun my-dired-mark-backward (arg)
  1083. "In Dired, move up lines and toggle mark there.
  1084. Optional prefix ARG says how many lines to unflag; default is one line."
  1085. (interactive "p")
  1086. (my-dired-mark (- arg)))
  1087. (defun dired-mode-hooks()
  1088. (local-set-key (kbd "SPC") 'my-dired-mark)
  1089. (local-set-key (kbd "S-SPC") 'my-dired-mark-backward))
  1090. (add-hook 'dired-mode-hook 'dired-mode-hooks)
  1091. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1092. ;; eshell
  1093. (defun my-eshell-backward-delete-char ()
  1094. (interactive)
  1095. (when (< (save-excursion
  1096. (eshell-bol)
  1097. (point))
  1098. (point))
  1099. (backward-delete-char 1)))
  1100. (defvar my-eshell-frame-buffer-alist nil)
  1101. (defun my-eshell-frame-buffer (frame)
  1102. "get buffer associated with FRAME. if buffer doesnt exist or killed, return nil."
  1103. (let ((bf (cdr (assq frame my-eshell-frame-buffer-alist))))
  1104. (and bf ;関連付けられたバッファが存在し
  1105. (buffer-name bf) ;かつkillされてない
  1106. bf)))
  1107. (add-hook 'eshell-mode-hook
  1108. (lambda ()
  1109. (add-to-list 'my-eshell-frame-buffer-alist
  1110. (cons (selected-frame) (current-buffer)))))
  1111. (defun my-file-owner-p (file)
  1112. "t if FILE is owned by me."
  1113. (eq (user-uid) (nth 2 (file-attributes file))))
  1114. ;; ;; http://www.bookshelf.jp/pukiwiki/pukiwiki.php?Eshell%A4%F2%BB%C8%A4%A4%A4%B3%A4%CA%A4%B9
  1115. ;; ;; written by Stefan Reichoer <reichoer@web.de>
  1116. ;; (defun eshell/less (&rest args)
  1117. ;; "Invoke `view-file' on the file.
  1118. ;; \"less +42 foo\" also goes to line 42 in the buffer."
  1119. ;; (if args
  1120. ;; (while args
  1121. ;; (if (string-match "\\`\\+\\([0-9]+\\)\\'" (car args))
  1122. ;; (let* ((line (string-to-number (match-string 1 (pop args))))
  1123. ;; (file (pop args)))
  1124. ;; (view-file file)
  1125. ;; (goto-line line))
  1126. ;; (view-file (pop args))))))
  1127. (defun eshell/o (&optional file)
  1128. (my-x-open (or file ".")))
  1129. ;; (defun eshell/vi (&rest args)
  1130. ;; "Invoke `find-file' on the file.
  1131. ;; \"vi +42 foo\" also goes to line 42 in the buffer."
  1132. ;; (while args
  1133. ;; (if (string-match "\\`\\+\\([0-9]+\\)\\'" (car args))
  1134. ;; (let* ((line (string-to-number (match-string 1 (pop args))))
  1135. ;; (file (pop args)))
  1136. ;; (find-file file)
  1137. ;; (goto-line line))
  1138. ;; (find-file (pop args)))))
  1139. (defun eshell/clear ()
  1140. "Clear the current buffer, leaving one prompt at the top."
  1141. (let ((inhibit-read-only t))
  1142. (erase-buffer)))
  1143. (defun eshell/d (&optional dirname switches)
  1144. "if first arg is omitted open current directory."
  1145. (dired (or dirname ".") switches))
  1146. (defun eshell/v ()
  1147. (view-mode 1))
  1148. (defalias 'eshell/: 'ignore)
  1149. (defalias 'eshell/type 'eshell/which)
  1150. ;; (defalias 'eshell/vim 'eshell/vi)
  1151. (defalias 'eshell/ff 'find-file)
  1152. (defun eshell-goto-prompt ()
  1153. ""
  1154. (interactive)
  1155. (goto-char (point-max)))
  1156. (defun eshell-cd-default-directory (&optional eshell-buffer-or-name)
  1157. "open eshell and change wd
  1158. if arg given, use that eshell buffer, otherwise make new eshell buffer."
  1159. (interactive)
  1160. (let ((dir (expand-file-name default-directory)))
  1161. (switch-to-buffer (or eshell-buffer-or-name
  1162. (eshell t)))
  1163. (unless (equal dir (expand-file-name default-directory))
  1164. ;; (cd dir)
  1165. ;; (eshell-interactive-print (concat "cd " dir "\n"))
  1166. ;; (eshell-emit-prompt)
  1167. (goto-char (point-max))
  1168. (eshell-kill-input)
  1169. (insert "cd " dir)
  1170. (eshell-send-input))))
  1171. (setq eshell-directory-name "~/.emacs.d/eshell/")
  1172. (setq eshell-scroll-to-bottom-on-input t)
  1173. (setq eshell-cmpl-ignore-case t)
  1174. (setq eshell-cmpl-cycle-completions nil)
  1175. (setq eshell-highlight-prompt nil)
  1176. (setq eshell-ls-initial-args "-FG") ; "-hF")
  1177. (setq eshell-prompt-function
  1178. (lambda ()
  1179. (with-temp-buffer
  1180. (let (p1 p2 p3 p4)
  1181. (insert " [")
  1182. (setq p1 (point))
  1183. (insert (abbreviate-file-name default-directory))
  1184. (setq p2 (point))
  1185. (insert "]"
  1186. "\n")
  1187. (setq p3 (point))
  1188. (insert user-login-name
  1189. "@"
  1190. (or (getenv "HOSTNAME")
  1191. (substring (shell-command-to-string (or (executable-find "hostname")
  1192. ":"))
  1193. 0
  1194. -1)))
  1195. (setq p4 (point))
  1196. (insert " "
  1197. (format-time-string "%a, %d %b %Y %T %z")
  1198. " ESHELL\n"
  1199. "last:"
  1200. (number-to-string eshell-last-command-status)
  1201. (if (= (user-uid)
  1202. 0)
  1203. " # "
  1204. " $ "))
  1205. (add-text-properties p1
  1206. p2
  1207. '(face ((foreground-color . "red"))))
  1208. (add-text-properties p3
  1209. p4
  1210. '(face ((foreground-color . "blue"))))
  1211. (buffer-substring (point-min)
  1212. (point-max))))))
  1213. (add-hook 'eshell-mode-hook
  1214. (lambda ()
  1215. ;; (define-key eshell-mode-map (kbd "C-x C-x") (lambda ()
  1216. ;; (interactive)
  1217. ;; (switch-to-buffer (other-buffer))))
  1218. (define-key eshell-mode-map (kbd "C-u") (lambda ()
  1219. (interactive)
  1220. (eshell-goto-prompt)
  1221. (eshell-kill-input)))
  1222. (define-key eshell-mode-map (kbd "C-g") (lambda ()
  1223. (interactive)
  1224. (eshell-goto-prompt)
  1225. (my-keyboard-quit)))
  1226. (define-key eshell-mode-map (kbd "DEL") 'my-eshell-backward-delete-char)
  1227. (define-key eshell-mode-map (kbd "C-p") 'eshell-previous-matching-input-from-input)
  1228. (define-key eshell-mode-map (kbd "C-n") 'eshell-next-matching-input-from-input)
  1229. (mapcar (lambda (alias)
  1230. (add-to-list 'eshell-command-aliases-list
  1231. alias))
  1232. '(("ll" "ls -l")
  1233. ("la" "ls -a")
  1234. ("lla" "ls -al")
  1235. ("ut" "slogin 03110414@un001.ecc.u-tokyo.ac.jp")
  1236. ("aptin" "sudo apt-get install")
  1237. ("u" "uname")
  1238. ("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*\"))")))
  1239. (add-to-list 'eshell-output-filter-functions 'eshell-truncate-buffer)
  1240. (apply 'eshell/addpath exec-path)
  1241. (set (make-variable-buffer-local 'scroll-margin) 0)
  1242. (eshell/export "GIT_PAGER=")
  1243. (eshell/export "GIT_EDITOR=")
  1244. (eshell/export "LC_MESSAGES=C")
  1245. (eshell/export "TERM=xterm")
  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))