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.
 
 
 
 
 
 

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