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.
 
 
 
 
 
 

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