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.
 
 
 
 
 
 

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