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.
 
 
 
 
 
 

1972 lines
67 KiB

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