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.
 
 
 
 
 
 

1886 lines
65 KiB

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