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.
 
 
 
 
 
 

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