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.
 
 
 
 
 
 

1894 lines
64 KiB

  1. ;;; emacs.el --- 10sr emacs initialization
  2. ;;; Commentary:
  3. ;;; Code:
  4. ;; SETUP_LOAD: (let ((file "DOTFILES_DIR/emacs.el"))
  5. ;; SETUP_LOAD: (and (file-readable-p file)
  6. ;; SETUP_LOAD: (load-file file)))
  7. (setq debug-on-error t)
  8. ;; make directories
  9. (unless (file-directory-p (expand-file-name user-emacs-directory))
  10. (make-directory (expand-file-name user-emacs-directory)))
  11. (let ((d (expand-file-name (concat user-emacs-directory
  12. "lisp"))))
  13. (unless (file-directory-p d)
  14. (make-directory d))
  15. (add-to-list 'load-path d))
  16. (require 'cl-lib)
  17. (require 'simple)
  18. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  19. ;; Some macros for internals
  20. ;; `emacs --load emacs.el` with Emacs 24.3 requires with-eval-after-load to be
  21. ;; defined at the toplevel (means that it should not be defined inside of some
  22. ;; special forms like `when'. I do not now how to do with about this...)
  23. (unless (fboundp 'with-eval-after-load)
  24. ;; polyfill for Emacs < 24.4
  25. (defmacro with-eval-after-load (file &rest body)
  26. "After FILE is loaded execute BODY."
  27. (declare (indent 1) (debug t))
  28. `(eval-after-load ,file (quote (progn ,@body)))))
  29. (defun call-after-init (func)
  30. "If `after-init-hook' has been run, call FUNC immediately.
  31. Otherwize hook it."
  32. (if after-init-time
  33. (funcall func)
  34. (add-hook 'after-init-hook
  35. func)))
  36. (defmacro safe-require-or-eval (feature)
  37. "Require FEATURE if available.
  38. At compile time the feature will be loaded immediately."
  39. `(eval-and-compile
  40. (require ,feature nil t)))
  41. (defmacro autoload-eval-lazily (feature &optional functions &rest body)
  42. "Define autoloading FEATURE that defines FUNCTIONS.
  43. FEATURE is a symbol. FUNCTIONS is a list of symbols. If FUNCTIONS is nil,
  44. the function same as FEATURE is defined as autoloaded function. BODY is passed
  45. to `eval-after-load'.
  46. After this macro is expanded, this returns the path to library if FEATURE
  47. found, otherwise returns nil."
  48. (declare (indent 2) (debug t))
  49. (let* ((libname (symbol-name (eval feature)))
  50. (libpath (locate-library libname)))
  51. `(progn
  52. (when (locate-library ,libname)
  53. ,@(mapcar (lambda (f)
  54. `(unless (fboundp ',f)
  55. (progn
  56. (message "Autoloaded function `%S' defined (%s)"
  57. (quote ,f)
  58. ,libpath)
  59. (autoload (quote ,f)
  60. ,libname
  61. ,(concat "Autoloaded function defined in \""
  62. libpath
  63. "\".")
  64. t))))
  65. (or (eval functions)
  66. `(,(eval feature)))))
  67. (eval-after-load ,feature
  68. (quote (progn
  69. ,@body)))
  70. (locate-library ,libname))))
  71. (when (autoload-eval-lazily 'tetris nil
  72. (message "Tetris loaded!"))
  73. (message "Tetris found!"))
  74. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  75. ;; download library from web
  76. (defvar fetch-library-enabled-p t
  77. "Set nil to skip downloading with `fetch-library'.")
  78. (defun fetch-library (url &optional byte-compile-p force-download-p)
  79. "Download a library from URL and locate it in \"~/emacs.d/lisp/\".
  80. Return nil if library unfound and failed to download,
  81. otherwise the path where the library installed.
  82. If BYTE-COMPILE-P is t byte compile the file after downloading.
  83. If FORCE-DOWNLOAD-P it t ignore exisiting library and always download.
  84. This function also checks the value of `fetch-library-enabled-p' and do not
  85. fetch libraries if this value is nil. In this case all arguments (including
  86. FORCE-DOWNLOAD-P) will be ignored."
  87. (let* ((dir (expand-file-name (concat user-emacs-directory "lisp/")))
  88. (lib (file-name-sans-extension (file-name-nondirectory url)))
  89. (lpath (concat dir lib ".el"))
  90. (locate-p (locate-library lib)))
  91. (if (and fetch-library-enabled-p
  92. (or force-download-p
  93. (not locate-p)))
  94. (if (progn (message "Downloading %s..."
  95. url)
  96. (download-file url
  97. lpath
  98. t))
  99. (progn (message "Downloading %s...done"
  100. url)
  101. (when (and byte-compile-p
  102. (require 'bytecomp nil t))
  103. (and (file-exists-p (byte-compile-dest-file lpath))
  104. (delete-file (byte-compile-dest-file lpath)))
  105. (message "Byte-compiling %s..."
  106. lpath)
  107. (byte-compile-file lpath)
  108. (message "Byte-compiling %s...done"
  109. lpath)))
  110. (progn (and (file-writable-p lpath)
  111. (delete-file lpath))
  112. (message "Downloading %s...failed"
  113. url))))
  114. (locate-library lib)))
  115. ;; If EMACS_EL_DRY_RUN is set and it is not an empty string, fetch-library
  116. ;; does not actually fetch library.
  117. (let ((dryrun (getenv "EMACS_EL_DRY_RUN")))
  118. (when (and dryrun
  119. (< 0
  120. (length dryrun)))
  121. (setq fetch-library-enabled-p
  122. nil)
  123. (message "EMACS_EL_DRY_RUN is set. Skip fetching libraries.")))
  124. (defun download-file (url path &optional ok-if-already-exists)
  125. "Download file from URL and output to PATH.
  126. IF OK-IF-ALREADY-EXISTS is true force download."
  127. (let ((curl (executable-find "curl"))
  128. (wget (executable-find "wget")))
  129. (cond (wget
  130. (if (and (not ok-if-already-exists)
  131. (file-exists-p path))
  132. nil
  133. (and (eq 0
  134. (call-process wget
  135. nil
  136. nil
  137. nil
  138. "-O"
  139. path
  140. url
  141. ))
  142. path)))
  143. (curl
  144. (if (and (not ok-if-already-exists)
  145. (file-exists-p path))
  146. nil
  147. (and (eq 0
  148. (call-process curl
  149. nil
  150. nil
  151. nil
  152. "--output"
  153. path
  154. "-L"
  155. url
  156. ))
  157. path)))
  158. (t
  159. (ignore-errors
  160. (require 'url)
  161. (url-copy-file url
  162. path
  163. ok-if-already-exists)
  164. path)))))
  165. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  166. ;; package
  167. (set (defvar 10sr-package-list)
  168. '(
  169. markdown-mode
  170. yaml-mode
  171. gnuplot-mode
  172. php-mode
  173. erlang
  174. js2-mode
  175. git-commit
  176. gitignore-mode
  177. adoc-mode
  178. ;; ack
  179. color-moccur
  180. ggtags
  181. flycheck
  182. ;; is flymake installs are required?
  183. ;;flymake-jshint
  184. ;;flymake-python-pyflakes
  185. xclip
  186. foreign-regexp
  187. multi-term
  188. term-run
  189. editorconfig
  190. git-ps1-mode
  191. restart-emacs
  192. fill-column-indicator
  193. pkgbuild-mode
  194. minibuffer-line
  195. scala-mode2
  196. ensime
  197. editorconfig
  198. git-command
  199. prompt-text
  200. ;; 10sr repository
  201. ;; 10sr-extras
  202. terminal-title
  203. recentf-show
  204. dired-list-all-mode
  205. pack
  206. set-modeline-color
  207. read-only-only-mode
  208. smart-revert
  209. autosave
  210. ;;window-organizer
  211. remember-major-modes-mode
  212. ilookup
  213. pasteboard
  214. ))
  215. (when (safe-require-or-eval 'package)
  216. (setq package-archives
  217. `(,@package-archives
  218. ("melpa" . "https://melpa.org/packages/")
  219. ("10sr-el" . "https://10sr.github.io/emacs-lisp/p/")))
  220. (package-initialize)
  221. (defun my-auto-install-package ()
  222. "Install packages semi-automatically."
  223. (interactive)
  224. (package-refresh-contents)
  225. (mapc (lambda (pkg)
  226. (or (package-installed-p pkg)
  227. (locate-library (symbol-name pkg))
  228. (package-install pkg)))
  229. 10sr-package-list))
  230. )
  231. ;; (lazy-load-eval 'sudoku)
  232. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  233. ;; my-idle-hook
  234. (defvar my-idle-hook nil
  235. "Hook run when idle for several secs.")
  236. (defvar my-idle-hook-sec 5
  237. "Second to run `my-idle-hook'.")
  238. (run-with-idle-timer my-idle-hook-sec
  239. t
  240. (lambda ()
  241. (run-hooks 'my-idle-hook)))
  242. ;; (add-hook 'my-idle-hook
  243. ;; (lambda ()
  244. ;; (message "idle hook message")))
  245. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  246. ;; start and quit
  247. (setq inhibit-startup-message t)
  248. (setq confirm-kill-emacs 'y-or-n-p)
  249. (setq gc-cons-threshold (* 1024 1024 4))
  250. (when window-system
  251. (add-to-list 'default-frame-alist '(cursor-type . box))
  252. (add-to-list 'default-frame-alist '(background-color . "white"))
  253. (add-to-list 'default-frame-alist '(foreground-color . "gray10"))
  254. ;; (add-to-list 'default-frame-alist '(alpha . (80 100 100 100)))
  255. ;; does not work?
  256. )
  257. ;; (add-to-list 'default-frame-alist '(cursor-type . box))
  258. (if window-system (menu-bar-mode 1) (menu-bar-mode 0))
  259. (and (fboundp 'tool-bar-mode)
  260. (tool-bar-mode 0))
  261. (and (fboundp 'set-scroll-bar-mode)
  262. (set-scroll-bar-mode nil))
  263. (add-hook 'kill-emacs-hook
  264. ;; load init file when terminating emacs to ensure file is not broken
  265. 'reload-init-file)
  266. (defun my-force-kill-emacs ()
  267. "My force kill Emacs."
  268. (interactive)
  269. (let ((kill-emacs-hook nil))
  270. (kill-emacs)))
  271. (call-after-init
  272. (lambda ()
  273. (message "%s %s" invocation-name emacs-version)
  274. (message "%s was taken to initialize emacs." (emacs-init-time))
  275. (switch-to-buffer "*Messages*")))
  276. (cd ".") ; when using windows use / instead of \ in `default-directory'
  277. ;; locale
  278. (set-language-environment "Japanese")
  279. (set-default-coding-systems 'utf-8-unix)
  280. (prefer-coding-system 'utf-8-unix)
  281. (setq system-time-locale "C")
  282. ;; my prefix map
  283. (defvar my-prefix-map nil
  284. "My prefix map.")
  285. (define-prefix-command 'my-prefix-map)
  286. (define-key ctl-x-map (kbd "C-x") 'my-prefix-map)
  287. (define-key my-prefix-map (kbd "C-q") 'quoted-insert)
  288. (define-key my-prefix-map (kbd "C-z") 'suspend-frame)
  289. ;; (comint-show-maximum-output)
  290. ;; kill scratch
  291. (call-after-init (lambda ()
  292. (let ((buf (get-buffer "*scratch*")))
  293. (when buf
  294. (kill-buffer buf)))))
  295. ;; modifier keys
  296. ;; (setq mac-option-modifier 'control)
  297. ;; display
  298. (setq visible-bell t)
  299. (setq ring-bell-function 'ignore)
  300. (mouse-avoidance-mode 'banish)
  301. (setq echo-keystrokes 0.1)
  302. (defun reload-init-file ()
  303. "Reload Emacs init file."
  304. (interactive)
  305. (when (and user-init-file
  306. (file-readable-p user-init-file))
  307. (load-file user-init-file)))
  308. (safe-require-or-eval 'session)
  309. ;; server
  310. (when (safe-require-or-eval 'server)
  311. (setq server-name (concat "server"
  312. (number-to-string (emacs-pid))))
  313. ;; In Cygwin Environment `server-runnning-p' stops when server-use-tcp is nil
  314. ;; In Darwin environment, init fails with message like 'Service name too long'
  315. ;; when server-use-tcp is nil
  316. (when (or (eq system-type
  317. 'cygwin)
  318. (eq system-type
  319. 'darwin))
  320. (setq server-use-tcp t))
  321. (server-start))
  322. ;; MSYS2 fix
  323. (when (eq system-type
  324. 'windows-nt)
  325. (setq shell-file-name
  326. (executable-find "bash"))
  327. '(setq function-key-map
  328. `(,@function-key-map ([pause] . [?\C-c])
  329. ))
  330. (define-key key-translation-map
  331. (kbd "<pause>")
  332. (kbd "C-c"))
  333. '(keyboard-translate [pause]
  334. (kbd "C-c")p)
  335. ;; TODO: move to other place later
  336. (when (not window-system)
  337. (setq interprogram-paste-function nil)
  338. (setq interprogram-cut-function nil)))
  339. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  340. ;; global keys
  341. (global-set-key (kbd "<up>") 'scroll-down-line)
  342. (global-set-key (kbd "<down>") 'scroll-up-line)
  343. (global-set-key (kbd "<left>") 'scroll-down)
  344. (global-set-key (kbd "<right>") 'scroll-up)
  345. ;; (define-key my-prefix-map (kbd "C-h") help-map)
  346. (global-set-key (kbd "C-\\") help-map)
  347. (define-key ctl-x-map (kbd "DEL") help-map)
  348. (define-key ctl-x-map (kbd "C-h") help-map)
  349. (define-key help-map "a" 'apropos)
  350. ;; disable annoying keys
  351. (global-set-key [prior] 'ignore)
  352. (global-set-key (kbd "<next>") 'ignore)
  353. (global-set-key [menu] 'ignore)
  354. (global-set-key [down-mouse-1] 'ignore)
  355. (global-set-key [down-mouse-2] 'ignore)
  356. (global-set-key [down-mouse-3] 'ignore)
  357. (global-set-key [mouse-1] 'ignore)
  358. (global-set-key [mouse-2] 'ignore)
  359. (global-set-key [mouse-3] 'ignore)
  360. (global-set-key (kbd "<eisu-toggle>") 'ignore)
  361. (global-set-key (kbd "C-<eisu-toggle>") 'ignore)
  362. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  363. ;; editting
  364. (defun my-copy-whole-line ()
  365. "Copy whole line."
  366. (interactive)
  367. (kill-new (concat (buffer-substring (point-at-bol)
  368. (point-at-eol))
  369. "\n")))
  370. (setq require-final-newline t)
  371. (setq kill-whole-line t)
  372. (setq scroll-conservatively 35
  373. scroll-margin 2
  374. scroll-step 0)
  375. (setq-default major-mode 'text-mode)
  376. (setq next-line-add-newlines nil)
  377. (setq kill-read-only-ok t)
  378. (setq truncate-partial-width-windows nil) ; when splitted horizontally
  379. ;; (setq-default line-spacing 0.2)
  380. (setq-default indicate-empty-lines t) ; when using x indicate empty line
  381. (setq-default tab-width 4)
  382. (setq-default indent-tabs-mode nil)
  383. (setq-default indent-line-function nil)
  384. ;; (pc-selection-mode 1) ; make some already defined keybind back to default
  385. (delete-selection-mode 1)
  386. (cua-mode 0)
  387. (setq line-move-visual nil)
  388. ;; key bindings
  389. ;; moving around
  390. ;; (global-set-key (kbd "M-j") 'next-line)
  391. ;; (global-set-key (kbd "M-k") 'previous-line)
  392. ;; (global-set-key (kbd "M-h") 'backward-char)
  393. ;; (global-set-key (kbd "M-l") 'forward-char)
  394. ;;(keyboard-translate ?\M-j ?\C-j)
  395. ;; (global-set-key (kbd "M-p") 'backward-paragraph)
  396. (define-key esc-map "p" 'backward-paragraph)
  397. ;; (global-set-key (kbd "M-n") 'forward-paragraph)
  398. (define-key esc-map "n" 'forward-paragraph)
  399. (global-set-key (kbd "C-<up>") 'scroll-down-line)
  400. (global-set-key (kbd "C-<down>") 'scroll-up-line)
  401. (global-set-key (kbd "C-<left>") 'scroll-down)
  402. (global-set-key (kbd "C-<right>") 'scroll-up)
  403. (global-set-key (kbd "<select>") 'ignore) ; 'previous-line-mark)
  404. (define-key ctl-x-map (kbd "ESC x") 'execute-extended-command)
  405. (define-key ctl-x-map (kbd "ESC :") 'eval-expression)
  406. ;; C-h and DEL
  407. (global-set-key (kbd "C-h") (kbd "DEL"))
  408. (global-set-key (kbd "C-m") 'reindent-then-newline-and-indent)
  409. (global-set-key (kbd "C-o") (kbd "C-e C-m"))
  410. (define-key esc-map "k" 'my-copy-whole-line)
  411. ;; (global-set-key "\C-z" 'undo) ; undo is M-u
  412. (define-key esc-map "u" 'undo)
  413. (define-key esc-map "i" (kbd "ESC TAB"))
  414. ;; (global-set-key (kbd "C-r") 'query-replace-regexp)
  415. (global-set-key (kbd "C-s") 'isearch-forward-regexp)
  416. (global-set-key (kbd "C-r") 'isearch-backward-regexp)
  417. (define-key my-prefix-map (kbd "C-o") 'occur)
  418. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  419. ;; title and mode-line
  420. (when (safe-require-or-eval 'terminal-title)
  421. ;; if TERM is not screen use default value
  422. (if (getenv "TMUX")
  423. ;; if use tmux locally just basename of current dir
  424. (set-variable 'terminal-title-format
  425. '((file-name-nondirectory (directory-file-name
  426. default-directory))))
  427. (if (and (let ((tty-type (frame-parameter nil
  428. 'tty-type)))
  429. (and tty-type
  430. (equal (car (split-string tty-type
  431. "-"))
  432. "screen")))
  433. (not (getenv "SSH_CONNECTION")))
  434. (set-variable 'terminal-title-format
  435. '((file-name-nondirectory (directory-file-name
  436. default-directory))))
  437. ;; seems that TMUX is used locally and ssh to remote host
  438. (set-variable 'terminal-title-format
  439. `("em:"
  440. ,user-login-name
  441. "@"
  442. ,(car (split-string system-name
  443. "\\."))
  444. ":"
  445. default-directory))
  446. )
  447. )
  448. (terminal-title-mode))
  449. (setq eol-mnemonic-dos "\\r\\n")
  450. (setq eol-mnemonic-mac "\\r")
  451. (setq eol-mnemonic-unix "\\n")
  452. (which-function-mode 0)
  453. (line-number-mode 0)
  454. (column-number-mode 0)
  455. (size-indication-mode 0)
  456. (setq mode-line-position
  457. '(:eval (format "L%%l/%d,C%%c"
  458. (count-lines (point-max)
  459. (point-min)))))
  460. (when (safe-require-or-eval 'git-ps1-mode)
  461. (git-ps1-mode))
  462. ;; http://www.geocities.jp/simizu_daisuke/bunkei-meadow.html#frame-title
  463. ;; display date
  464. (when (safe-require-or-eval 'time)
  465. (setq display-time-interval 29)
  466. (setq display-time-day-and-date t)
  467. (setq display-time-format "%Y/%m/%d %a %H:%M")
  468. ;; (if window-system
  469. ;; (display-time-mode 0)
  470. ;; (display-time-mode 1))
  471. (when display-time-mode
  472. (display-time-update)))
  473. ;; ;; current directory
  474. ;; (let ((ls (member 'mode-line-buffer-identification
  475. ;; mode-line-format)))
  476. ;; (setcdr ls
  477. ;; (cons '(:eval (concat " ("
  478. ;; (abbreviate-file-name default-directory)
  479. ;; ")"))
  480. ;; (cdr ls))))
  481. ;; ;; display last modified time
  482. ;; (let ((ls (member 'mode-line-buffer-identification
  483. ;; mode-line-format)))
  484. ;; (setcdr ls
  485. ;; (cons '(:eval (concat " "
  486. ;; my-buffer-file-last-modified-time))
  487. ;; (cdr ls))))
  488. (defun buffer-list-not-start-with-space ()
  489. "Return a list of buffers that not start with whitespaces."
  490. (let ((bl (buffer-list))
  491. b nbl)
  492. (while bl
  493. (setq b (pop bl))
  494. (unless (string-equal " "
  495. (substring (buffer-name b)
  496. 0
  497. 1))
  498. (add-to-list 'nbl b)))
  499. nbl))
  500. ;; http://www.masteringemacs.org/articles/2012/09/10/hiding-replacing-modeline-strings/
  501. ;; (add-to-list 'minor-mode-alist
  502. ;; '(global-whitespace-mode ""))
  503. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  504. ;; minibuffer
  505. (setq insert-default-directory t)
  506. (setq completion-ignore-case t
  507. read-file-name-completion-ignore-case t
  508. read-buffer-completion-ignore-case t)
  509. (setq resize-mini-windows t)
  510. (temp-buffer-resize-mode 1)
  511. (savehist-mode 1)
  512. (fset 'yes-or-no-p 'y-or-n-p)
  513. ;; complete symbol when `eval'
  514. (define-key read-expression-map (kbd "TAB") 'completion-at-point)
  515. (define-key minibuffer-local-map (kbd "C-u")
  516. (lambda () (interactive) (delete-region (point-at-bol) (point))))
  517. ;; I dont know these bindings are good
  518. (define-key minibuffer-local-map (kbd "C-p") (kbd "ESC p"))
  519. (define-key minibuffer-local-map (kbd "C-n") (kbd "ESC n"))
  520. (when (safe-require-or-eval 'minibuffer-line)
  521. (set-face-underline 'minibuffer-line nil)
  522. (set-variable 'minibuffer-line-refresh-interval
  523. 25)
  524. (set-variable 'minibuffer-line-format
  525. `(,(concat user-login-name
  526. "@"
  527. (car (split-string system-name
  528. "\\."))
  529. ":")
  530. (:eval (abbreviate-file-name (or buffer-file-name
  531. default-directory)))
  532. (:eval (and (fboundp 'git-ps1-mode-get-current)
  533. (git-ps1-mode-get-current " [GIT:%s]")))
  534. " "
  535. (:eval (format-time-string display-time-format))))
  536. (minibuffer-line-mode 1)
  537. )
  538. (when (safe-require-or-eval 'prompt-text)
  539. (set-variable 'prompt-text-format
  540. `(,(concat ""
  541. user-login-name
  542. "@"
  543. (car (split-string system-name
  544. "\\."))
  545. ":")
  546. (:eval (abbreviate-file-name (or buffer-file-name
  547. default-directory)))
  548. (:eval (and (fboundp 'git-ps1-mode-get-current)
  549. (git-ps1-mode-get-current " [GIT:%s]")))
  550. " "
  551. (:eval (format-time-string display-time-format))
  552. "\n"
  553. (:eval (symbol-name this-command))
  554. ": "))
  555. (prompt-text-mode 1))
  556. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  557. ;; letters, font-lock mode and fonts
  558. ;; (set-face-background 'vertical-border (face-foreground 'mode-line))
  559. ;; (set-window-margins (selected-window) 1 1)
  560. (and (or (eq system-type 'Darwin)
  561. (eq system-type 'darwin))
  562. (fboundp 'mac-set-input-method-parameter)
  563. (mac-set-input-method-parameter 'japanese 'cursor-color "red")
  564. (mac-set-input-method-parameter 'roman 'cursor-color "black"))
  565. (when (and (boundp 'input-method-activate-hook) ; i dont know this is correct
  566. (boundp 'input-method-inactivate-hook))
  567. (add-hook 'input-method-activate-hook
  568. (lambda () (set-cursor-color "red")))
  569. (add-hook 'input-method-inactivate-hook
  570. (lambda () (set-cursor-color "black"))))
  571. (when (safe-require-or-eval 'paren)
  572. (show-paren-mode 1)
  573. (setq show-paren-delay 0.5
  574. show-paren-style 'parenthesis) ; mixed is hard to read
  575. ;; (set-face-background 'show-paren-match
  576. ;; "black")
  577. ;; ;; (face-foreground 'default))
  578. ;; (set-face-foreground 'show-paren-match
  579. ;; "white")
  580. ;; (set-face-inverse-video-p 'show-paren-match
  581. ;; t)
  582. )
  583. (transient-mark-mode 1)
  584. (global-font-lock-mode 1)
  585. (setq font-lock-global-modes
  586. '(not
  587. help-mode
  588. eshell-mode
  589. ;;term-mode
  590. Man-mode))
  591. ;; (standard-display-ascii ?\n "$\n")
  592. ;; (defvar my-eol-face
  593. ;; '(("\n" . (0 font-lock-comment-face t nil)))
  594. ;; )
  595. ;; (defvar my-tab-face
  596. ;; '(("\t" . '(0 highlight t nil))))
  597. (defvar my-jspace-face
  598. '(("\u3000" . '(0 highlight t nil))))
  599. (add-hook 'font-lock-mode-hook
  600. (lambda ()
  601. ;; (font-lock-add-keywords nil my-eol-face)
  602. (font-lock-add-keywords nil my-jspace-face)
  603. ))
  604. (when (safe-require-or-eval 'whitespace)
  605. (add-to-list 'whitespace-display-mappings ; not work
  606. `(tab-mark ?\t ,(vconcat "^I\t")))
  607. ;; (add-to-list 'whitespace-display-mappings
  608. ;; `(newline-mark ?\n ,(vconcat "$\n")))
  609. (setq whitespace-style '(face
  610. trailing ; trailing blanks
  611. newline ; newlines
  612. newline-mark ; use display table for newline
  613. tab-mark
  614. empty ; empty lines at beg or end of buffer
  615. lines-tail ; lines over 80
  616. ))
  617. ;; (setq whitespace-newline 'font-lock-comment-face)
  618. (global-whitespace-mode t)
  619. (if (eq (display-color-cells)
  620. 256)
  621. (set-face-foreground 'whitespace-newline "color-109")
  622. ;; (progn
  623. ;; (set-face-bold-p 'whitespace-newline
  624. ;; t))
  625. ))
  626. (and nil
  627. (safe-require-or-eval 'fill-column-indicator)
  628. (setq fill-column-indicator))
  629. ;; highlight current line
  630. ;; http://wiki.riywo.com/index.php?Meadow
  631. (face-spec-set 'hl-line
  632. '((((min-colors 256)
  633. (background dark))
  634. (:background "color-234"))
  635. (((min-colors 256)
  636. (background light))
  637. (:background "color-234"))
  638. (t
  639. (:underline "black"))))
  640. (set-variable 'hl-line-global-modes
  641. '(not
  642. term-mode))
  643. (global-hl-line-mode 1) ;; (hl-line-mode 1)
  644. (set-face-foreground 'font-lock-regexp-grouping-backslash "#666")
  645. (set-face-foreground 'font-lock-regexp-grouping-construct "#f60")
  646. ;;(safe-require-or-eval 'set-modeline-color)
  647. ;; (let ((fg (face-foreground 'default))
  648. ;; (bg (face-background 'default)))
  649. ;; (set-face-background 'mode-line-inactive
  650. ;; (if (face-inverse-video-p 'mode-line) fg bg))
  651. ;; (set-face-foreground 'mode-line-inactive
  652. ;; (if (face-inverse-video-p 'mode-line) bg fg)))
  653. ;; (set-face-underline 'mode-line-inactive
  654. ;; t)
  655. ;; (set-face-underline 'vertical-border
  656. ;; nil)
  657. ;; Not found in MELPA nor any other package repositories
  658. (and (fetch-library
  659. "https://raw.github.com/tarao/elisp/master/end-mark.el"
  660. t)
  661. (safe-require-or-eval 'end-mark)
  662. (global-end-mark-mode))
  663. (when (safe-require-or-eval 'cyberpunk-theme)
  664. (load-theme 'cyberpunk t)
  665. (set-face-attribute 'button
  666. nil
  667. :inherit 'highlight))
  668. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  669. ;; file handling
  670. (when (safe-require-or-eval 'editorconfig)
  671. ;; (set-variable 'editorconfig-get-properties-function
  672. ;; 'editorconfig-core-get-properties-hash)
  673. (editorconfig-mode 1))
  674. (setq revert-without-query '(".+"))
  675. ;; save cursor position
  676. (when (safe-require-or-eval 'saveplace)
  677. (setq-default save-place t)
  678. (setq save-place-file (concat user-emacs-directory
  679. "places")))
  680. ;; http://www.bookshelf.jp/soft/meadow_24.html#SEC260
  681. (setq make-backup-files t)
  682. ;; (make-directory (expand-file-name "~/.emacsbackup"))
  683. (setq backup-directory-alist
  684. (cons (cons "\\.*$" (expand-file-name (concat user-emacs-directory
  685. "backup")))
  686. backup-directory-alist))
  687. (setq version-control 'never)
  688. (setq delete-old-versions t)
  689. (setq auto-save-list-file-prefix (expand-file-name (concat user-emacs-directory
  690. "auto-save/")))
  691. (setq delete-auto-save-files t)
  692. (add-to-list 'completion-ignored-extensions ".bak")
  693. ;; (setq delete-by-moving-to-trash t
  694. ;; trash-directory "~/.emacs.d/trash")
  695. (add-hook 'after-save-hook
  696. 'executable-make-buffer-file-executable-if-script-p)
  697. (set (defvar bookmark-default-file)
  698. (expand-file-name (concat user-emacs-directory
  699. "bmk")))
  700. (with-eval-after-load 'recentf
  701. (defvar recentf-exclude nil)
  702. (add-to-list 'recentf-exclude
  703. (regexp-quote bookmark-default-file)))
  704. (when (safe-require-or-eval 'smart-revert)
  705. (smart-revert-on))
  706. ;; autosave
  707. (when (safe-require-or-eval 'autosave)
  708. (autosave-set 2))
  709. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  710. ;; buffer killing
  711. ;; (defun my-delete-window-killing-buffer () nil)
  712. (defun my-query-kill-current-buffer ()
  713. "Interactively kill current buffer."
  714. (interactive)
  715. (if (y-or-n-p (concat "kill current buffer? :"))
  716. (kill-buffer (current-buffer))))
  717. ;;(global-set-key "\C-xk" 'my-query-kill-current-buffer)
  718. (substitute-key-definition 'kill-buffer
  719. 'my-query-kill-current-buffer
  720. global-map)
  721. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  722. ;; share clipboard with x
  723. ;; this page describes this in details, but only these sexps seem to be needed
  724. ;; http://garin.jp/doc/Linux/xwindow_clipboard
  725. (and (not window-system)
  726. (not (eq window-system 'mac))
  727. (getenv "DISPLAY")
  728. (not (equal (getenv "DISPLAY") ""))
  729. (executable-find "xclip")
  730. ;; (< emacs-major-version 24)
  731. (safe-require-or-eval 'xclip)
  732. nil
  733. (turn-on-xclip))
  734. (and (eq system-type 'darwin)
  735. (safe-require-or-eval 'pasteboard)
  736. (turn-on-pasteboard)
  737. (getenv "TMUX")
  738. (pasteboard-enable-rtun))
  739. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  740. ;; some modes and hooks
  741. ;; http://qiita.com/sune2/items/b73037f9e85962f5afb7
  742. (when (safe-require-or-eval 'company)
  743. (global-company-mode)
  744. (set-variable 'company-idle-delay 0.5)
  745. (set-variable 'company-minimum-prefix-length 2)
  746. (set-variable 'company-selection-wrap-around t))
  747. ;; https://github.com/lunaryorn/flycheck
  748. (when (safe-require-or-eval 'flycheck)
  749. (call-after-init 'global-flycheck-mode))
  750. (set-variable 'ac-ignore-case nil)
  751. (when (autoload-eval-lazily 'term-run '(term-run-shell-command term-run))
  752. (define-key ctl-x-map "t" 'term-run-shell-command))
  753. (add-to-list 'safe-local-variable-values
  754. '(encoding utf-8))
  755. (setq enable-local-variables :safe)
  756. (when (safe-require-or-eval 'remember-major-modes-mode)
  757. (remember-major-modes-mode 1))
  758. ;; Detect file type from shebang and set major-mode.
  759. (add-to-list 'interpreter-mode-alist
  760. '("python3" . python-mode))
  761. (add-to-list 'interpreter-mode-alist
  762. '("python2" . python-mode))
  763. ;; http://fukuyama.co/foreign-regexp
  764. '(and (safe-require-or-eval 'foreign-regexp)
  765. (progn
  766. (setq foreign-regexp/regexp-type 'perl)
  767. '(setq reb-re-syntax 'foreign-regexp)
  768. ))
  769. (autoload-eval-lazily 'sql '(sql-mode)
  770. (safe-require-or-eval 'sql-indent))
  771. (when (autoload-eval-lazily 'git-command)
  772. (define-key ctl-x-map "g" 'git-command))
  773. (when (safe-require-or-eval 'git-commit)
  774. (global-git-commit-mode 1))
  775. (when (fetch-library
  776. "http://www.emacswiki.org/emacs/download/sl.el"
  777. t)
  778. (autoload-eval-lazily 'sl))
  779. (with-eval-after-load 'jdee
  780. (add-hook 'jdee-mode-hook
  781. (lambda ()
  782. (make-local-variable 'global-mode-string)
  783. (add-to-list 'global-mode-string
  784. mode-line-position))))
  785. (with-eval-after-load 'make-mode
  786. (defvar makefile-mode-map (make-sparse-keymap))
  787. (define-key makefile-mode-map (kbd "C-m") 'newline-and-indent)
  788. ;; this functions is set in write-file-functions, i cannot find any
  789. ;; good way to remove this.
  790. (fset 'makefile-warn-suspicious-lines 'ignore))
  791. (with-eval-after-load 'verilog-mode
  792. (defvar verilog-mode-map (make-sparse-keymap))
  793. (define-key verilog-mode-map ";" 'self-insert-command))
  794. (setq diff-switches "-u")
  795. (with-eval-after-load 'diff-mode
  796. ;; (when (and (eq major-mode
  797. ;; 'diff-mode)
  798. ;; (not buffer-file-name))
  799. ;; ;; do not pass when major-mode is derived mode of diff-mode
  800. ;; (view-mode 1))
  801. (set-face-attribute 'diff-header nil
  802. :foreground nil
  803. :background nil
  804. :weight 'bold)
  805. (set-face-attribute 'diff-file-header nil
  806. :foreground nil
  807. :background nil
  808. :weight 'bold)
  809. (set-face-foreground 'diff-index-face "blue")
  810. (set-face-attribute 'diff-hunk-header nil
  811. :foreground "cyan"
  812. :weight 'normal)
  813. (set-face-attribute 'diff-context nil
  814. ;; :foreground "white"
  815. :foreground nil
  816. :weight 'normal)
  817. (set-face-foreground 'diff-removed-face "red")
  818. (set-face-foreground 'diff-added-face "green")
  819. (set-face-background 'diff-removed-face nil)
  820. (set-face-background 'diff-added-face nil)
  821. (set-face-attribute 'diff-changed nil
  822. :foreground "magenta"
  823. :weight 'normal)
  824. (set-face-attribute 'diff-refine-change nil
  825. :foreground nil
  826. :background nil
  827. :weight 'bold
  828. :inverse-video t)
  829. ;; Annoying !
  830. ;;(diff-auto-refine-mode)
  831. )
  832. ;; (ffap-bindings)
  833. (set-variable 'sh-here-document-word "__EOC__")
  834. (when (autoload-eval-lazily 'adoc-mode
  835. nil
  836. (defvar adoc-mode-map (make-sparse-keymap))
  837. (define-key adoc-mode-map (kbd "C-m") 'newline))
  838. (setq auto-mode-alist
  839. `(("\\.adoc\\'" . adoc-mode)
  840. ("\\.asciidoc\\'" . adoc-mode)
  841. ,@auto-mode-alist)))
  842. (with-eval-after-load 'markup-faces
  843. ;; Is this too match ?
  844. (set-face-foreground 'markup-meta-face
  845. "color-245")
  846. (set-face-foreground 'markup-meta-hide-face
  847. "color-245")
  848. )
  849. (setq auto-mode-alist
  850. `(("autostart\\'" . sh-mode)
  851. ("xinitrc\\'" . sh-mode)
  852. ("xprograms\\'" . sh-mode)
  853. ("PKGBUILD\\'" . sh-mode)
  854. ,@auto-mode-alist))
  855. ;; TODO: check if this is required
  856. (and (autoload-eval-lazily 'groovy-mode)
  857. (add-to-list 'auto-mode-alist
  858. '("build\\.gradle\\'" . groovy-mode)))
  859. (with-eval-after-load 'yaml-mode
  860. (defvar yaml-mode-map (make-sparse-keymap))
  861. (define-key yaml-mode-map (kbd "C-m") 'newline))
  862. (with-eval-after-load 'html-mode
  863. (defvar html-mode-map (make-sparse-keymap))
  864. (define-key html-mode-map (kbd "C-m") 'reindent-then-newline-and-indent))
  865. (with-eval-after-load 'text-mode
  866. (define-key text-mode-map (kbd "C-m") 'newline))
  867. (add-to-list 'Info-default-directory-list
  868. (expand-file-name "~/.info/emacs-ja"))
  869. (with-eval-after-load 'apropos
  870. (defvar apropos-mode-map (make-sparse-keymap))
  871. (define-key apropos-mode-map "n" 'next-line)
  872. (define-key apropos-mode-map "p" 'previous-line))
  873. (with-eval-after-load 'isearch
  874. ;; (define-key isearch-mode-map
  875. ;; (kbd "C-j") 'isearch-other-control-char)
  876. ;; (define-key isearch-mode-map
  877. ;; (kbd "C-k") 'isearch-other-control-char)
  878. ;; (define-key isearch-mode-map
  879. ;; (kbd "C-h") 'isearch-other-control-char)
  880. (define-key isearch-mode-map (kbd "C-h") 'isearch-delete-char)
  881. (define-key isearch-mode-map (kbd "M-r")
  882. 'isearch-query-replace-regexp))
  883. ;; do not cleanup isearch highlight: use `lazy-highlight-cleanup' to remove
  884. (setq lazy-highlight-cleanup nil)
  885. ;; face for isearch highlighing
  886. (set-face-attribute 'lazy-highlight
  887. nil
  888. :foreground `unspecified
  889. :background `unspecified
  890. :underline t
  891. ;; :weight `bold
  892. )
  893. (add-hook 'outline-mode-hook
  894. (lambda ()
  895. (when (string-match "\\.md\\'" buffer-file-name)
  896. (set (make-local-variable 'outline-regexp) "#+ "))))
  897. (add-to-list 'auto-mode-alist (cons "\\.ol\\'" 'outline-mode))
  898. (add-to-list 'auto-mode-alist (cons "\\.md\\'" 'outline-mode))
  899. (when (autoload-eval-lazily 'markdown-mode
  900. '(markdown-mode gfm-mode)
  901. (defvar gfm-mode-map (make-sparse-keymap))
  902. (define-key gfm-mode-map (kbd "C-m") 'electric-indent-just-newline))
  903. (add-to-list 'auto-mode-alist (cons "\\.md\\'" 'gfm-mode))
  904. (set-variable 'markdown-command (or (executable-find "markdown")
  905. (executable-find "markdown.pl")
  906. ""))
  907. (add-hook 'markdown-mode-hook
  908. (lambda ()
  909. (outline-minor-mode 1)
  910. (flyspell-mode)
  911. (set (make-local-variable 'comment-start) ";")))
  912. )
  913. ;; c-mode
  914. ;; http://www.emacswiki.org/emacs/IndentingC
  915. ;; http://en.wikipedia.org/wiki/Indent_style
  916. ;; http://d.hatena.ne.jp/emergent/20070203/1170512717
  917. ;; http://seesaawiki.jp/whiteflare503/d/Emacs%20%a5%a4%a5%f3%a5%c7%a5%f3%a5%c8
  918. (with-eval-after-load 'cc-vars
  919. (defvar c-default-style nil)
  920. (add-to-list 'c-default-style
  921. '(c-mode . "k&r"))
  922. (add-to-list 'c-default-style
  923. '(c++-mode . "k&r"))
  924. (add-hook 'c-mode-common-hook
  925. (lambda ()
  926. ;; why c-basic-offset in k&r style defaults to 5 ???
  927. (set-variable 'c-basic-offset 4)
  928. (set-variable 'indent-tabs-mode nil)
  929. ;; (set-face-foreground 'font-lock-keyword-face "blue")
  930. (c-toggle-hungry-state -1)
  931. ;; (and (require 'gtags nil t)
  932. ;; (gtags-mode 1))
  933. )))
  934. (when (autoload-eval-lazily 'php-mode)
  935. (add-hook 'php-mode-hook
  936. (lambda ()
  937. (set-variable 'c-basic-offset 2))))
  938. (autoload-eval-lazily 'js2-mode nil
  939. ;; currently do not use js2-mode
  940. ;; (add-to-list 'auto-mode-alist '("\\.js\\'" . js2-mode))
  941. ;; (add-to-list 'auto-mode-alist '("\\.jsm\\'" . js2-mode))
  942. (defvar js2-mode-map (make-sparse-keymap))
  943. (define-key js2-mode-map (kbd "C-m") (lambda ()
  944. (interactive)
  945. (js2-enter-key)
  946. (indent-for-tab-command)))
  947. ;; (add-hook (kill-local-variable 'before-save-hook)
  948. ;; 'js2-before-save)
  949. ;; (add-hook 'before-save-hook
  950. ;; 'my-indent-buffer
  951. ;; nil
  952. ;; t)
  953. )
  954. (with-eval-after-load 'js
  955. (set-variable 'js-indent-level 2))
  956. (add-to-list 'interpreter-mode-alist
  957. '("node" . js-mode))
  958. (when (autoload-eval-lazily 'flymake-jslint
  959. '(flymake-jslint-load))
  960. (autoload-eval-lazily 'js nil
  961. (add-hook 'js-mode-hook
  962. 'flymake-jslint-load)))
  963. (safe-require-or-eval 'js-doc)
  964. (add-hook 'haskell-mode-hook 'turn-on-haskell-indentation)
  965. (when (safe-require-or-eval 'uniquify)
  966. (setq uniquify-buffer-name-style 'post-forward-angle-brackets)
  967. (setq uniquify-ignore-buffers-re "*[^*]+*")
  968. (setq uniquify-min-dir-content 1))
  969. (with-eval-after-load 'view
  970. (defvar view-mode-map (make-sparse-keymap))
  971. (define-key view-mode-map "j" 'scroll-up-line)
  972. (define-key view-mode-map "k" 'scroll-down-line)
  973. (define-key view-mode-map "v" 'toggle-read-only)
  974. (define-key view-mode-map "q" 'bury-buffer)
  975. ;; (define-key view-mode-map "/" 'nonincremental-re-search-forward)
  976. ;; (define-key view-mode-map "?" 'nonincremental-re-search-backward)
  977. ;; (define-key view-mode-map
  978. ;; "n" 'nonincremental-repeat-search-forward)
  979. ;; (define-key view-mode-map
  980. ;; "N" 'nonincremental-repeat-search-backward)
  981. (define-key view-mode-map "/" 'isearch-forward-regexp)
  982. (define-key view-mode-map "?" 'isearch-backward-regexp)
  983. (define-key view-mode-map "n" 'isearch-repeat-forward)
  984. (define-key view-mode-map "N" 'isearch-repeat-backward)
  985. (define-key view-mode-map (kbd "C-m") 'my-rgrep-symbol-at-point))
  986. (global-set-key "\M-r" 'view-mode)
  987. ;; (setq view-read-only t)
  988. (add-hook 'Man-mode-hook
  989. (lambda ()
  990. (view-mode 1)
  991. (setq truncate-lines nil)))
  992. (set-variable 'Man-notify-method (if window-system
  993. 'newframe
  994. 'aggressive))
  995. (set-variable 'woman-cache-filename (expand-file-name (concat user-emacs-directory
  996. "woman_cache.el")))
  997. (defalias 'man 'woman)
  998. (add-to-list 'auto-mode-alist
  999. '("tox\\.ini\\'" . conf-unix-mode))
  1000. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1001. ;; python
  1002. (when (autoload-eval-lazily 'python '(python-mode)
  1003. (defvar python-mode-map (make-sparse-keymap))
  1004. (define-key python-mode-map (kbd "C-c C-e") 'my-python-run-as-command)
  1005. (define-key python-mode-map (kbd "C-c C-b") 'my-python-display-python-buffer)
  1006. (define-key python-mode-map (kbd "C-m") 'newline-and-indent)
  1007. (defvar inferior-python-mode-map (make-sparse-keymap))
  1008. (define-key inferior-python-mode-map (kbd "<up>") 'comint-previous-input)
  1009. (define-key inferior-python-mode-map (kbd "<down>") 'comint-next-input)
  1010. )
  1011. (set-variable 'python-python-command (or (executable-find "python3")
  1012. (executable-find "python")))
  1013. ;; (defun my-python-run-as-command ()
  1014. ;; ""
  1015. ;; (interactive)
  1016. ;; (shell-command (concat python-python-command " " buffer-file-name)))
  1017. (defun my-python-display-python-buffer ()
  1018. ""
  1019. (interactive)
  1020. (defvar python-buffer nil)
  1021. (set-window-text-height (display-buffer python-buffer
  1022. t)
  1023. 7))
  1024. (add-hook 'inferior-python-mode-hook
  1025. (lambda ()
  1026. (my-python-display-python-buffer))))
  1027. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1028. ;; gauche-mode
  1029. ;; http://d.hatena.ne.jp/kobapan/20090305/1236261804
  1030. ;; http://www.katch.ne.jp/~leque/software/repos/gauche-mode/gauche-mode.el
  1031. (when (and (fetch-library
  1032. "http://www.katch.ne.jp/~leque/software/repos/gauche-mode/gauche-mode.el"
  1033. t)
  1034. (autoload-eval-lazily 'gauche-mode '(gauche-mode run-scheme)
  1035. (defvar gauche-mode-map (make-sparse-keymap))
  1036. (defvar scheme-mode-map (make-sparse-keymap))
  1037. (define-key gauche-mode-map
  1038. (kbd "C-c C-z") 'run-gauche-other-window)
  1039. (define-key scheme-mode-map
  1040. (kbd "C-c C-c") 'scheme-send-buffer)
  1041. (define-key scheme-mode-map
  1042. (kbd "C-c C-b") 'my-scheme-display-scheme-buffer)))
  1043. (let ((s (executable-find "gosh")))
  1044. (set-variable 'scheme-program-name s)
  1045. (set-variable 'gauche-program-name s))
  1046. (defvar gauche-program-name nil)
  1047. (defvar scheme-buffer nil)
  1048. (defun run-gauche-other-window ()
  1049. "Run gauche on other window"
  1050. (interactive)
  1051. (switch-to-buffer-other-window
  1052. (get-buffer-create "*scheme*"))
  1053. (run-gauche))
  1054. (defun run-gauche ()
  1055. "run gauche"
  1056. (interactive)
  1057. (run-scheme gauche-program-name)
  1058. )
  1059. (defun scheme-send-buffer ()
  1060. ""
  1061. (interactive)
  1062. (scheme-send-region (point-min) (point-max))
  1063. (my-scheme-display-scheme-buffer)
  1064. )
  1065. (defun my-scheme-display-scheme-buffer ()
  1066. ""
  1067. (interactive)
  1068. (set-window-text-height (display-buffer scheme-buffer
  1069. t)
  1070. 7))
  1071. (add-hook 'scheme-mode-hook
  1072. (lambda ()
  1073. nil))
  1074. (add-hook 'inferior-scheme-mode-hook
  1075. (lambda ()
  1076. ;; (my-scheme-display-scheme-buffer)
  1077. ))
  1078. (setq auto-mode-alist
  1079. (cons '("\.gosh\\'" . gauche-mode) auto-mode-alist))
  1080. (setq auto-mode-alist
  1081. (cons '("\.gaucherc\\'" . gauche-mode) auto-mode-alist))
  1082. )
  1083. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1084. ;; term mode
  1085. ;; (setq multi-term-program shell-file-name)
  1086. (when (autoload-eval-lazily 'multi-term)
  1087. (set-variable 'multi-term-switch-after-close nil)
  1088. (set-variable 'multi-term-dedicated-select-after-open-p t)
  1089. (set-variable 'multi-term-dedicated-window-height 20))
  1090. (when (autoload-eval-lazily 'term '(term ansi-term)
  1091. (defvar term-raw-map (make-sparse-keymap))
  1092. ;; (define-key term-raw-map "\C-xl" 'term-line-mode)
  1093. ;; (define-key term-mode-map "\C-xc" 'term-char-mode)
  1094. (define-key term-raw-map (kbd "<up>") 'scroll-down-line)
  1095. (define-key term-raw-map (kbd "<down>") 'scroll-up-line)
  1096. (define-key term-raw-map (kbd "<right>") 'scroll-up)
  1097. (define-key term-raw-map (kbd "<left>") 'scroll-down)
  1098. (define-key term-raw-map (kbd "C-p") 'term-send-raw)
  1099. (define-key term-raw-map (kbd "C-n") 'term-send-raw)
  1100. (define-key term-raw-map "q" 'my-term-quit-or-send-raw)
  1101. ;; (define-key term-raw-map (kbd "ESC") 'term-send-raw)
  1102. (define-key term-raw-map [delete] 'term-send-raw)
  1103. (define-key term-raw-map (kbd "DEL") 'term-send-backspace)
  1104. (define-key term-raw-map "\C-y" 'term-paste)
  1105. (define-key term-raw-map
  1106. "\C-c" 'term-send-raw) ;; 'term-interrupt-subjob)
  1107. '(define-key term-mode-map (kbd "C-x C-q") 'term-pager-toggle)
  1108. ;; (dolist (key '("<up>" "<down>" "<right>" "<left>"))
  1109. ;; (define-key term-raw-map (read-kbd-macro key) 'term-send-raw))
  1110. ;; (define-key term-raw-map "\C-d" 'delete-char)
  1111. ;; (define-key term-raw-map "\C-q" 'move-beginning-of-line)
  1112. ;; (define-key term-raw-map "\C-r" 'term-send-raw)
  1113. ;; (define-key term-raw-map "\C-s" 'term-send-raw)
  1114. ;; (define-key term-raw-map "\C-f" 'forward-char)
  1115. ;; (define-key term-raw-map "\C-b" 'backward-char)
  1116. ;; (define-key term-raw-map "\C-t" 'set-mark-command)
  1117. )
  1118. (defun my-term-quit-or-send-raw ()
  1119. ""
  1120. (interactive)
  1121. (if (get-buffer-process (current-buffer))
  1122. (call-interactively 'term-send-raw)
  1123. (kill-buffer)))
  1124. ;; http://d.hatena.ne.jp/goinger/20100416/1271399150
  1125. ;; (setq term-ansi-default-program shell-file-name)
  1126. (add-hook 'term-setup-hook
  1127. (lambda ()
  1128. (set-variable 'term-display-table (make-display-table))))
  1129. (add-hook 'term-mode-hook
  1130. (lambda ()
  1131. (defvar term-raw-map (make-sparse-keymap))
  1132. ;; (unless (memq (current-buffer)
  1133. ;; (and (featurep 'multi-term)
  1134. ;; (defvar multi-term-buffer-list)
  1135. ;; ;; current buffer is not multi-term buffer
  1136. ;; multi-term-buffer-list))
  1137. ;; )
  1138. (set (make-local-variable 'scroll-margin) 0)
  1139. ;; (set (make-local-variable 'cua-enable-cua-keys) nil)
  1140. ;; (cua-mode 0)
  1141. ;; (and cua-mode
  1142. ;; (local-unset-key (kbd "C-c")))
  1143. ;; (define-key cua--prefix-override-keymap
  1144. ;;"\C-c" 'term-interrupt-subjob)
  1145. (set (make-local-variable (defvar hl-line-range-function))
  1146. (lambda ()
  1147. '(0 . 0)))
  1148. (define-key term-raw-map
  1149. "\C-x" (lookup-key (current-global-map) "\C-x"))
  1150. (define-key term-raw-map
  1151. "\C-z" (lookup-key (current-global-map) "\C-z"))
  1152. ))
  1153. ;; (add-hook 'term-exec-hook 'forward-char)
  1154. )
  1155. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1156. ;; buffer switching
  1157. (defvar bs-configurations)
  1158. (when (autoload-eval-lazily 'bs '(bs-show)
  1159. ;; (add-to-list 'bs-configurations
  1160. ;; '("processes" nil get-buffer-process ".*" nil nil))
  1161. (add-to-list 'bs-configurations
  1162. '("files-and-terminals" nil nil nil
  1163. (lambda (buf)
  1164. (and (bs-visits-non-file buf)
  1165. (save-excursion
  1166. (set-buffer buf)
  1167. (not (memq major-mode
  1168. '(term-mode
  1169. eshell-mode))))))))
  1170. ;; (setq bs-configurations (list
  1171. ;; '("processes" nil get-buffer-process ".*" nil nil)
  1172. ;; '("files-and-scratch" "^\\*scratch\\*$" nil nil
  1173. ;; bs-visits-non-file bs-sort-buffer-interns-are-last)))
  1174. )
  1175. ;; (global-set-key "\C-x\C-b" 'bs-show)
  1176. (defalias 'list-buffers 'bs-show)
  1177. (set-variable 'bs-default-configuration "files-and-terminals")
  1178. (set-variable 'bs-default-sort-name "by nothing")
  1179. (add-hook 'bs-mode-hook
  1180. (lambda ()
  1181. ;; (setq bs-default-configuration "files")
  1182. ;; (and bs--show-all
  1183. ;; (call-interactively 'bs-toggle-show-all))
  1184. (set (make-local-variable 'scroll-margin) 0))))
  1185. ;;(iswitchb-mode 1)
  1186. (icomplete-mode)
  1187. (defun iswitchb-buffer-display-other-window ()
  1188. "Do iswitchb in other window."
  1189. (interactive)
  1190. (let ((iswitchb-default-method 'display))
  1191. (call-interactively 'iswitchb-buffer)))
  1192. ;;;;;;;;;;;;;;;;;;;;;;;;
  1193. ;; ilookup
  1194. (with-eval-after-load 'ilookup
  1195. (set-variable 'ilookup-dict-alist
  1196. '(
  1197. ("sdcv" . (lambda (word)
  1198. (shell-command-to-string
  1199. (format "sdcv -n '%s'"
  1200. word))))
  1201. ("en" . (lambda (word)
  1202. (shell-command-to-string
  1203. (format "sdcv -n -u dictd_www.dict.org_gcide '%s'"
  1204. word))))
  1205. ("ja" . (lambda (word)
  1206. (shell-command-to-string
  1207. (format "sdcv -n -u EJ-GENE95 -u jmdict-en-ja '%s'"
  1208. word))))
  1209. ("jaj" . (lambda (word)
  1210. (shell-command-to-string
  1211. (format "sdcv -n -u jmdict-en-ja '%s'"
  1212. word))))
  1213. ("jag" .
  1214. (lambda (word)
  1215. (with-temp-buffer
  1216. (insert (shell-command-to-string
  1217. (format "sdcv -n -u 'Genius English-Japanese' '%s'"
  1218. word)))
  1219. (html2text)
  1220. (buffer-substring (point-min)
  1221. (point-max)))))
  1222. ("alc" . (lambda (word)
  1223. (shell-command-to-string
  1224. (format "alc '%s' | head -n 20"
  1225. word))))
  1226. ("app" . (lambda (word)
  1227. (shell-command-to-string
  1228. (format "dict_app '%s'"
  1229. word))))
  1230. ;; letters broken
  1231. ("ms" .
  1232. (lambda (word)
  1233. (let ((url (concat
  1234. "http://api.microsofttranslator.com/V2/Ajax.svc/"
  1235. "Translate?appId=%s&text=%s&to=%s"))
  1236. (apikey "3C9778666C5BA4B406FFCBEE64EF478963039C51")
  1237. (target "ja")
  1238. (eword (url-hexify-string word)))
  1239. (with-current-buffer (url-retrieve-synchronously
  1240. (format url
  1241. apikey
  1242. eword
  1243. target))
  1244. (message "")
  1245. (goto-char (point-min))
  1246. (search-forward-regexp "^$"
  1247. nil
  1248. t)
  1249. (url-unhex-string (buffer-substring-no-properties
  1250. (point)
  1251. (point-max)))))))
  1252. ))
  1253. ;; (funcall (cdr (assoc "ms"
  1254. ;; ilookup-alist))
  1255. ;; "dictionary")
  1256. ;; (switch-to-buffer (url-retrieve-synchronously "http://api.microsofttranslator.com/V2/Ajax.svc/Translate?appId=3C9778666C5BA4B406FFCBEE64EF478963039C51&text=dictionary&to=ja"))
  1257. ;; (switch-to-buffer (url-retrieve-synchronously "http://google.com"))
  1258. (set-variable 'ilookup-default "ja")
  1259. (when (locate-library "google-translate")
  1260. (defvar ilookup-dict-alist nil)
  1261. (add-to-list 'ilookup-dict-alist
  1262. '("gt" .
  1263. (lambda (word)
  1264. (save-excursion
  1265. (google-translate-translate "auto"
  1266. "ja"
  1267. word))
  1268. (with-current-buffer "*Google Translate*"
  1269. (buffer-substring-no-properties (point-min)
  1270. (point-max)))))))
  1271. )
  1272. (when (autoload-eval-lazily 'google-translate '(google-translate-translate
  1273. google-translate-at-point))
  1274. (set-variable 'google-translate-default-source-language "auto")
  1275. (set-variable 'google-translate-default-target-language "ja"))
  1276. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1277. ;; vc
  1278. (require 'vc)
  1279. (setq vc-handled-backends '())
  1280. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1281. ;; recentf-mode
  1282. (set-variable 'recentf-save-file (expand-file-name (concat user-emacs-directory
  1283. "recentf")))
  1284. (set-variable 'recentf-max-menu-items 20)
  1285. (set-variable 'recentf-max-saved-items 30)
  1286. (set-variable 'recentf-show-file-shortcuts-flag nil)
  1287. (when (safe-require-or-eval 'recentf)
  1288. (add-to-list 'recentf-exclude
  1289. (regexp-quote recentf-save-file))
  1290. (add-to-list 'recentf-exclude
  1291. (regexp-quote (expand-file-name user-emacs-directory)))
  1292. (define-key ctl-x-map (kbd "C-r") 'recentf-open-files)
  1293. (remove-hook 'find-file-hook
  1294. 'recentf-track-opened-file)
  1295. (defun my-recentf-load-track-save-list ()
  1296. "Load current recentf list from file, track current visiting file, then save
  1297. the list."
  1298. (recentf-load-list)
  1299. (recentf-track-opened-file)
  1300. (recentf-save-list))
  1301. (add-hook 'find-file-hook
  1302. 'my-recentf-load-track-save-list)
  1303. (add-hook 'kill-emacs-hook
  1304. 'recentf-load-list)
  1305. ;;(run-with-idle-timer 5 t 'recentf-save-list)
  1306. ;; (add-hook 'find-file-hook
  1307. ;; (lambda ()
  1308. ;; (recentf-add-file default-directory)))
  1309. (and (autoload-eval-lazily 'recentf-show)
  1310. (define-key ctl-x-map (kbd "C-r") 'recentf-show)
  1311. (add-hook 'recentf-show-before-listing-hook
  1312. 'recentf-load-list))
  1313. (recentf-mode 1)
  1314. (define-key recentf-dialog-mode-map (kbd "<up>") 'previous-line)
  1315. (define-key recentf-dialog-mode-map (kbd "<down>") 'next-line)
  1316. (define-key recentf-dialog-mode-map "p" 'previous-line)
  1317. (define-key recentf-dialog-mode-map "n" 'next-line)
  1318. (add-hook 'recentf-dialog-mode-hook
  1319. (lambda ()
  1320. ;; (recentf-save-list)
  1321. ;; (define-key recentf-dialog-mode-map (kbd "C-x C-f")
  1322. ;; 'my-recentf-cd-and-find-file)
  1323. (cd "~/"))))
  1324. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1325. ;; dired
  1326. (defun my-dired-echo-file-head (arg)
  1327. ""
  1328. (interactive "P")
  1329. (let ((f (dired-get-filename)))
  1330. (message "%s"
  1331. (with-temp-buffer
  1332. (insert-file-contents f)
  1333. (buffer-substring-no-properties
  1334. (point-min)
  1335. (progn (goto-char (point-min))
  1336. (forward-line (1- (if arg
  1337. (prefix-numeric-value arg)
  1338. 7)))
  1339. (point-at-eol)))))))
  1340. (defun my-dired-diff ()
  1341. ""
  1342. (interactive)
  1343. (let ((files (dired-get-marked-files nil nil nil t)))
  1344. (if (eq (car files)
  1345. t)
  1346. (diff (cadr files) (dired-get-filename))
  1347. (message "One file must be marked!"))))
  1348. (defun dired-get-file-info ()
  1349. "dired get file info"
  1350. (interactive)
  1351. (let ((f (shell-quote-argument (dired-get-filename t))))
  1352. (if (file-directory-p f)
  1353. (progn
  1354. (message "Calculating disk usage...")
  1355. (shell-command (concat "du -hsD "
  1356. f)))
  1357. (shell-command (concat "file "
  1358. f)))))
  1359. (defun my-dired-scroll-up ()
  1360. ""
  1361. (interactive)
  1362. (my-dired-previous-line (- (window-height) 1)))
  1363. (defun my-dired-scroll-down ()
  1364. ""
  1365. (interactive)
  1366. (my-dired-next-line (- (window-height) 1)))
  1367. ;; (defun my-dired-forward-line (arg)
  1368. ;; ""
  1369. ;; (interactive "p"))
  1370. (defun my-dired-previous-line (arg)
  1371. ""
  1372. (interactive "p")
  1373. (if (> arg 0)
  1374. (progn
  1375. (if (eq (line-number-at-pos)
  1376. 1)
  1377. (goto-char (point-max))
  1378. (forward-line -1))
  1379. (my-dired-previous-line (if (or (dired-get-filename nil t)
  1380. (dired-get-subdir))
  1381. (- arg 1)
  1382. arg)))
  1383. (dired-move-to-filename)))
  1384. (defun my-dired-next-line (arg)
  1385. ""
  1386. (interactive "p")
  1387. (if (> arg 0)
  1388. (progn
  1389. (if (eq (point)
  1390. (point-max))
  1391. (goto-char (point-min))
  1392. (forward-line 1))
  1393. (my-dired-next-line (if (or (dired-get-filename nil t)
  1394. (dired-get-subdir))
  1395. (- arg 1)
  1396. arg)))
  1397. (dired-move-to-filename)))
  1398. ;;http://bach.istc.kobe-u.ac.jp/lect/tamlab/ubuntu/emacs.html
  1399. (if (eq window-system 'mac)
  1400. (setq dired-listing-switches "-lhF")
  1401. (setq dired-listing-switches "-lhF --time-style=long-iso")
  1402. )
  1403. (setq dired-listing-switches "-lhF")
  1404. (put 'dired-find-alternate-file 'disabled nil)
  1405. ;; when using dired-find-alternate-file
  1406. ;; reuse current dired buffer for the file to open
  1407. (set-variable 'dired-ls-F-marks-symlinks t)
  1408. (when (safe-require-or-eval 'ls-lisp)
  1409. (setq ls-lisp-use-insert-directory-program nil) ; always use ls-lisp
  1410. (setq ls-lisp-dirs-first t)
  1411. (setq ls-lisp-use-localized-time-format t)
  1412. (setq ls-lisp-format-time-list
  1413. '("%Y-%m-%d %H:%M"
  1414. "%Y-%m-%d ")))
  1415. (set-variable 'dired-dwim-target t)
  1416. (set-variable 'dired-isearch-filenames t)
  1417. (set-variable 'dired-hide-details-hide-symlink-targets nil)
  1418. (set-variable 'dired-hide-details-hide-information-lines nil)
  1419. ;; (add-hook 'dired-after-readin-hook
  1420. ;; 'my-replace-nasi-none)
  1421. ;; (add-hook 'after-init-hook
  1422. ;; (lambda ()
  1423. ;; (dired ".")))
  1424. (with-eval-after-load 'dired
  1425. (defvar dired-mode-map (make-sparse-keymap))
  1426. (define-key dired-mode-map "o" 'my-dired-x-open)
  1427. (define-key dired-mode-map "i" 'dired-get-file-info)
  1428. (define-key dired-mode-map "f" 'find-file)
  1429. (define-key dired-mode-map "!" 'shell-command)
  1430. (define-key dired-mode-map "&" 'async-shell-command)
  1431. (define-key dired-mode-map "X" 'dired-do-async-shell-command)
  1432. (define-key dired-mode-map "=" 'my-dired-diff)
  1433. (define-key dired-mode-map "B" 'gtkbm-add-current-dir)
  1434. (define-key dired-mode-map "b" 'gtkbm)
  1435. (define-key dired-mode-map "h" 'my-dired-echo-file-head)
  1436. (define-key dired-mode-map "@" (lambda ()
  1437. (interactive) (my-x-open ".")))
  1438. (define-key dired-mode-map (kbd "TAB") 'other-window)
  1439. ;; (define-key dired-mode-map "P" 'my-dired-do-pack-or-unpack)
  1440. (define-key dired-mode-map "/" 'dired-isearch-filenames)
  1441. (define-key dired-mode-map (kbd "DEL") 'dired-up-directory)
  1442. (define-key dired-mode-map (kbd "C-h") 'dired-up-directory)
  1443. (substitute-key-definition 'dired-next-line
  1444. 'my-dired-next-line
  1445. dired-mode-map)
  1446. (substitute-key-definition 'dired-previous-line
  1447. 'my-dired-previous-line
  1448. dired-mode-map)
  1449. ;; (define-key dired-mode-map (kbd "C-p") 'my-dired-previous-line)
  1450. ;; (define-key dired-mode-map (kbd "p") 'my-dired-previous-line)
  1451. ;; (define-key dired-mode-map (kbd "C-n") 'my-dired-next-line)
  1452. ;; (define-key dired-mode-map (kbd "n") 'my-dired-next-line)
  1453. (define-key dired-mode-map (kbd "<left>") 'my-dired-scroll-up)
  1454. (define-key dired-mode-map (kbd "<right>") 'my-dired-scroll-down)
  1455. (define-key dired-mode-map (kbd "ESC p") 'my-dired-scroll-up)
  1456. (define-key dired-mode-map (kbd "ESC n") 'my-dired-scroll-down)
  1457. (add-hook 'dired-mode-hook
  1458. (lambda ()
  1459. (when (fboundp 'dired-hide-details-mode)
  1460. (dired-hide-details-mode t)
  1461. (local-set-key "l" 'dired-hide-details-mode))
  1462. (let ((file "._Icon\015"))
  1463. (when nil
  1464. '(file-readable-p file)
  1465. (delete-file file)))))
  1466. (when (autoload-eval-lazily 'pack '(dired-do-pack-or-unpack pack-pack))
  1467. (with-eval-after-load 'dired
  1468. (define-key dired-mode-map "P" 'dired-do-pack-or-unpack)))
  1469. (when (autoload-eval-lazily 'dired-list-all-mode)
  1470. (setq dired-listing-switches "-lhF")
  1471. (with-eval-after-load 'dired
  1472. (define-key dired-mode-map "a" 'dired-list-all-mode))))
  1473. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1474. ;; my-term
  1475. (defvar my-term nil
  1476. "My terminal buffer.")
  1477. (defvar my-term-function nil
  1478. "Function to create terminal buffer.
  1479. This function accept no argument and return newly created buffer of terminal.")
  1480. (defun my-term (&optional arg)
  1481. "Open terminal buffer and return that buffer.
  1482. If ARG is given or called with prefix argument, create new buffer."
  1483. (interactive "P")
  1484. (if (and (not arg)
  1485. my-term
  1486. (buffer-name my-term))
  1487. (pop-to-buffer my-term)
  1488. (setq my-term
  1489. (save-window-excursion
  1490. (funcall my-term-function)))
  1491. (and my-term
  1492. (my-term))))
  1493. ;; (setq my-term-function
  1494. ;; (lambda ()
  1495. ;; (if (eq system-type 'windows-nt)
  1496. ;; (eshell)
  1497. ;; (if (require 'multi-term nil t)
  1498. ;; (multi-term)
  1499. ;; (ansi-term shell-file-name)))))
  1500. (setq my-term-function (lambda () (eshell t)))
  1501. ;;(define-key my-prefix-map (kbd "C-s") 'my-term)
  1502. (define-key ctl-x-map "i" 'my-term)
  1503. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1504. ;; misc funcs
  1505. (defalias 'qcalc 'quick-calc)
  1506. (defun memo (&optional dir)
  1507. "Open memo.txt in DIR."
  1508. (interactive)
  1509. (pop-to-buffer (find-file-noselect (concat (if dir
  1510. (file-name-as-directory dir)
  1511. "")
  1512. "memo.txt"))))
  1513. (defvar my-rgrep-alist
  1514. `(
  1515. ;; the silver searcher
  1516. ("ag"
  1517. (executable-find "ag")
  1518. "ag --nocolor --nogroup --nopager --filename ")
  1519. ;; ack
  1520. ("ack"
  1521. (executable-find "ack")
  1522. "ack --nocolor --nogroup --nopager --with-filename ")
  1523. ;; gnu global
  1524. ("global"
  1525. (and (require 'gtags nil t)
  1526. (executable-find "global")
  1527. (gtags-get-rootpath))
  1528. "global --result grep ")
  1529. ;; git grep
  1530. ("gitgrep"
  1531. (eq 0
  1532. (shell-command "git rev-parse --git-dir"))
  1533. "git --no-pager -c color.grep=false grep -nH -e ")
  1534. ;; grep
  1535. ("grep"
  1536. t
  1537. ,(concat "find . "
  1538. "-path '*/.git' -prune -o "
  1539. "-path '*/.svn' -prune -o "
  1540. "-type f -print0 | "
  1541. "xargs -0 grep -nH -e "))
  1542. )
  1543. "Alist of rgrep command.
  1544. Each element is in the form like (NAME SEXP COMMAND), where SEXP returns the
  1545. condition to choose COMMAND when evaluated.")
  1546. (defvar my-rgrep-default nil
  1547. "Default command name for my-rgrep.")
  1548. (defun my-rgrep-grep-command (&optional name alist)
  1549. "Return recursive grep command for current directory or nil.
  1550. If NAME is given, use that without testing.
  1551. Commands are searched from ALIST."
  1552. (if alist
  1553. (if name
  1554. ;; if name is given search that from alist and return the command
  1555. (nth 2 (assoc name
  1556. alist))
  1557. ;; if name is not given try test in 1th elem
  1558. (let ((car (car alist))
  1559. (cdr (cdr alist)))
  1560. (if (eval (nth 1 car))
  1561. ;; if the condition is true return the command
  1562. (nth 2 car)
  1563. ;; try next one
  1564. (and cdr
  1565. (my-rgrep-grep-command name cdr)))))
  1566. ;; if alist is not given set default value
  1567. (my-rgrep-grep-command name my-rgrep-alist)))
  1568. (defun my-rgrep (command-args)
  1569. "My recursive grep. Run COMMAND-ARGS."
  1570. (interactive (let ((cmd (my-rgrep-grep-command my-rgrep-default
  1571. nil)))
  1572. (if cmd
  1573. (list (read-shell-command "grep command: "
  1574. cmd
  1575. 'grep-find-history))
  1576. (error "My-Rgrep: Command for rgrep not found")
  1577. )))
  1578. (compilation-start command-args
  1579. 'grep-mode))
  1580. ;; (defun my-rgrep-symbol-at-point (command-args)
  1581. ;; "My recursive grep. Run COMMAND-ARGS."
  1582. ;; (interactive (list (read-shell-command "grep command: "
  1583. ;; (concat (my-rgrep-grep-command)
  1584. ;; " "
  1585. ;; (thing-at-point 'symbol))
  1586. ;; 'grep-find-history)))
  1587. ;; (compilation-start command-args
  1588. ;; 'grep-mode))
  1589. (defmacro define-my-rgrep (name)
  1590. "Define rgrep for NAME."
  1591. `(defun ,(intern (concat "my-rgrep-"
  1592. name)) ()
  1593. ,(format "My recursive grep by %s."
  1594. name)
  1595. (interactive)
  1596. (let ((my-rgrep-default ,name))
  1597. (if (called-interactively-p 'any)
  1598. (call-interactively 'my-rgrep)
  1599. (error "Not intended to be called noninteractively. Use `my-rgrep'"))))
  1600. )
  1601. (define-my-rgrep "ack")
  1602. (define-my-rgrep "ag")
  1603. (define-my-rgrep "gitgrep")
  1604. (define-my-rgrep "grep")
  1605. (define-my-rgrep "global")
  1606. (define-key ctl-x-map "s" 'my-rgrep)
  1607. ;; (defun make ()
  1608. ;; "Run \"make -k\" in current directory."
  1609. ;; (interactive)
  1610. ;; (compile "make -k"))
  1611. (defalias 'make 'compile)
  1612. (define-key ctl-x-map "c" 'compile)
  1613. ;;;;;;;;;;;;;;;;;;;;;;;
  1614. ;; adoc-simple-mode
  1615. (when (safe-require-or-eval 'adoc-mode)
  1616. (defvar adoc-simple-font-lock-keywords
  1617. nil)
  1618. (define-derived-mode adoc-simple-mode adoc-mode
  1619. "Adoc-Simple"
  1620. "Major mode for editing AsciiDoc text files.
  1621. This mode is a simplified version of `adoc-mode'."
  1622. '(set (make-local-variable 'font-lock-defaults)
  1623. '(adoc-simple-font-lock-keywords
  1624. nil nil nil nil
  1625. (font-lock-multiline . t)
  1626. (font-lock-mark-block-function . adoc-font-lock-mark-block-function))))
  1627. (add-to-list 'auto-mode-alist
  1628. '("\\.adoc\\'" . adoc-simple-mode)))
  1629. (when (and (safe-require-or-eval 'google-translate)
  1630. (safe-require-or-eval 'google-translate-smooth-ui))
  1631. (add-to-list 'google-translate-translation-directions-alist
  1632. '("en" . "ja"))
  1633. (defun translate-echo-at-point ()
  1634. "Translate popup at point."
  1635. (interactive)
  1636. (let ((google-translate-output-destination 'echo-area))
  1637. (google-translate-translate "en" "ja" (current-word t t))))
  1638. (define-minor-mode auto-translate-mode
  1639. "Translate word at point automatically."
  1640. :global nil
  1641. :lighter "ATranslate"))
  1642. ;;; emacs.el ends here