No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 
 
 

2733 líneas
94 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. ;; make directories
  8. (unless (file-directory-p (expand-file-name user-emacs-directory))
  9. (make-directory (expand-file-name user-emacs-directory)))
  10. (let ((d (expand-file-name (concat user-emacs-directory
  11. "lisp"))))
  12. (unless (file-directory-p d)
  13. (make-directory d))
  14. (add-to-list 'load-path d))
  15. (eval-when-compile
  16. (require 'cl nil t))
  17. ;; (add-hook 'after-change-major-mode-hook
  18. ;; (lambda ()
  19. ;; (message "cmm: %S %s"
  20. ;; major-mode
  21. ;; buffer-file-name)))
  22. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  23. ;; Some macros for internals
  24. (defun call-after-init (func)
  25. "If `after-init-hook' has been run, call FUNC immediately.
  26. Otherwize hook it."
  27. (if after-init-time
  28. (funcall func)
  29. (add-hook 'after-init-hook
  30. func)))
  31. (defmacro defvar-set (symbol value &optional docstring)
  32. "Define SYMBOL as a variable and set to VALUE.
  33. Variable will be defined with DOCSTRING if given, otherwise do not set even
  34. VALUE when defining SYMBOL."
  35. `(set (if ,docstring
  36. (defvar ,symbol
  37. nil
  38. ,docstring)
  39. (defvar ,symbol))
  40. ,value))
  41. (defmacro safe-require-or-eval (feature)
  42. "Require FEATURE if available.
  43. At compile time the feature will be loaded immediately."
  44. `(eval-and-compile
  45. (require ,feature nil t)))
  46. (defmacro autoload-eval-lazily (feature &optional functions &rest body)
  47. "Define autoloading FEATURE that defines FUNCTIONS.
  48. FEATURE is a symbol. FUNCTIONS is a list of symbols. If FUNCTIONS is nil,
  49. the function same as FEATURE is defined as autoloaded function. BODY is passed
  50. to `eval-after-load'.
  51. After this macro is expanded, this returns the path to library if FEATURE
  52. found, otherwise returns nil."
  53. (let* ((libname (symbol-name (eval feature)))
  54. (libpath (locate-library libname)))
  55. (and libpath
  56. `(progn
  57. ,@(mapcar (lambda (f)
  58. (unless (fboundp f)
  59. `(progn
  60. (message "Autoloaded function `%S' defined (%s)"
  61. (quote ,f)
  62. ,libpath)
  63. (autoload (quote ,f)
  64. ,libname
  65. ,(concat "Autoloaded function defined in \""
  66. libpath
  67. "\".")
  68. t))))
  69. (or (eval functions)
  70. `(,(eval feature))))
  71. (eval-after-load ,feature
  72. (quote (progn
  73. ,@body)))
  74. (locate-library ,libname)))))
  75. (put 'autoload-eval-lazily 'lisp-indent-function 2)
  76. (when (autoload-eval-lazily 'tetris nil
  77. (message "Tetris loaded!"))
  78. (message "Tetris found!"))
  79. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  80. ;; download library from web
  81. (defvar fetch-library-enabled-p t
  82. "Set nil to skip downloading with `fetch-library'.")
  83. (defun fetch-library (url &optional byte-compile-p force-download-p)
  84. "Download a library from URL and locate it in \"~/emacs.d/lisp/\".
  85. Return nil if library unfound and failed to download,
  86. otherwise the path where the library installed.
  87. If BYTE-COMPILE-P is t byte compile the file after downloading.
  88. If FORCE-DOWNLOAD-P it t ignore exisiting library and always download.
  89. This function also checks the value of `fetch-library-enabled-p' and do not
  90. fetch libraries if this value is nil. In this case all arguments (including
  91. FORCE-DOWNLOAD-P) will be ignored."
  92. (let* ((dir (expand-file-name (concat user-emacs-directory "lisp/")))
  93. (lib (file-name-sans-extension (file-name-nondirectory url)))
  94. (lpath (concat dir lib ".el"))
  95. (locate-p (locate-library lib)))
  96. (if (and fetch-library-enabled-p
  97. (or force-download-p
  98. (not locate-p)))
  99. (if (progn (message "Downloading %s..."
  100. url)
  101. (download-file url
  102. lpath
  103. t))
  104. (progn (message "Downloading %s...done"
  105. url)
  106. (when (and byte-compile-p
  107. (require 'bytecomp nil t))
  108. (and (file-exists-p (byte-compile-dest-file lpath))
  109. (delete-file (byte-compile-dest-file lpath)))
  110. (message "Byte-compiling %s..."
  111. lpath)
  112. (byte-compile-file lpath)
  113. (message "Byte-compiling %s...done"
  114. lpath)))
  115. (progn (and (file-writable-p lpath)
  116. (delete-file lpath))
  117. (message "Downloading %s...failed"
  118. url))))
  119. (locate-library lib)))
  120. ;; If EMACS_EL_DRY_RUN is set and it is not an empty string, fetch-library
  121. ;; does not actually fetch library.
  122. (let ((dryrun (getenv "EMACS_EL_DRY_RUN")))
  123. (when (and dryrun
  124. (< 0
  125. (length dryrun)))
  126. (setq fetch-library-enabled-p
  127. nil)
  128. (message "EMACS_EL_DRY_RUN is set. Skip fetching libraries.")))
  129. (defun download-file (url path &optional ok-if-already-exists)
  130. "Download file from URL and output to PATH.
  131. IF OK-IF-ALREADY-EXISTS is true force download."
  132. (let ((curl (executable-find "curl"))
  133. (wget (executable-find "wget")))
  134. (cond (wget
  135. (if (and (not ok-if-already-exists)
  136. (file-exists-p path))
  137. nil
  138. (and (eq 0
  139. (call-process wget
  140. nil
  141. nil
  142. nil
  143. "-O"
  144. path
  145. url
  146. ))
  147. path)))
  148. (curl
  149. (if (and (not ok-if-already-exists)
  150. (file-exists-p path))
  151. nil
  152. (and (eq 0
  153. (call-process curl
  154. nil
  155. nil
  156. nil
  157. "--output"
  158. path
  159. "-L"
  160. url
  161. ))
  162. path)))
  163. (t
  164. (ignore-errors
  165. (require 'url)
  166. (url-copy-file url
  167. path
  168. ok-if-already-exists)
  169. path)))))
  170. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  171. ;; package
  172. (defvar-set my-package-list
  173. '(
  174. markdown-mode
  175. yaml-mode
  176. gnuplot-mode
  177. erlang
  178. js2-mode
  179. git-commit-mode
  180. gitignore-mode
  181. ;; ack
  182. color-moccur
  183. gtags
  184. flycheck
  185. ;; is flymake installs are required?
  186. ;;flymake-jshint
  187. ;;flymake-python-pyflakes
  188. xclip
  189. foreign-regexp
  190. multi-term
  191. dirtree
  192. term-run
  193. editorconfig
  194. git-ps1-mode
  195. scala-mode2
  196. ensime
  197. )
  198. "Package list just for me.")
  199. (when (safe-require-or-eval 'package)
  200. ;; (add-to-list 'package-archives
  201. ;; '("ELPA" . "http://tromey.com/elpa/"))
  202. (add-to-list 'package-archives
  203. '("melpa" . "http://melpa.milkbox.net/packages/")
  204. t)
  205. (add-to-list 'package-archives
  206. '("marmalade" . "http://marmalade-repo.org/packages/"))
  207. (package-initialize)
  208. (defun my-auto-install-package ()
  209. "Install packages semi-automatically."
  210. (interactive)
  211. (package-refresh-contents)
  212. (mapc (lambda (pkg)
  213. (or (package-installed-p pkg)
  214. (locate-library (symbol-name pkg))
  215. (package-install pkg)))
  216. my-package-list))
  217. )
  218. ;; (lazy-load-eval 'sudoku)
  219. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  220. ;; my-idle-hook
  221. (defvar my-idle-hook nil
  222. "Hook run when idle for several secs.")
  223. (defvar my-idle-hook-sec 5
  224. "Second to run `my-idle-hook'.")
  225. (run-with-idle-timer my-idle-hook-sec
  226. t
  227. (lambda ()
  228. (run-hooks 'my-idle-hook)))
  229. ;; (add-hook 'my-idle-hook
  230. ;; (lambda ()
  231. ;; (message "idle hook message")))
  232. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  233. ;; start and quit
  234. (setq inhibit-startup-message t)
  235. (setq confirm-kill-emacs 'y-or-n-p)
  236. (setq gc-cons-threshold (* 1024 1024 4))
  237. (when window-system
  238. (add-to-list 'default-frame-alist '(cursor-type . box))
  239. (add-to-list 'default-frame-alist '(background-color . "white"))
  240. (add-to-list 'default-frame-alist '(foreground-color . "gray10"))
  241. ;; (add-to-list 'default-frame-alist '(alpha . (80 100 100 100)))
  242. ;; does not work?
  243. )
  244. ;; (add-to-list 'default-frame-alist '(cursor-type . box))
  245. (if window-system (menu-bar-mode 1) (menu-bar-mode 0))
  246. (and (fboundp 'tool-bar-mode)
  247. (tool-bar-mode 0))
  248. (and (fboundp 'set-scroll-bar-mode)
  249. (set-scroll-bar-mode nil))
  250. (add-hook 'kill-emacs-hook
  251. ;; load init file when terminating emacs to ensure file is not broken
  252. 'reload-init-file)
  253. (defun my-force-kill-emacs ()
  254. "My force kill Emacs."
  255. (interactive)
  256. (let ((kill-emacs-hook nil))
  257. (kill-emacs)))
  258. (call-after-init
  259. (lambda ()
  260. (message "%s %s" invocation-name emacs-version)
  261. (message "%s was taken to initialize emacs." (emacs-init-time))
  262. (switch-to-buffer "*Messages*")))
  263. (cd ".") ; when using windows use / instead of \ in `default-directory'
  264. ;; locale
  265. (set-language-environment "Japanese")
  266. (set-default-coding-systems 'utf-8-unix)
  267. (prefer-coding-system 'utf-8-unix)
  268. (setq system-time-locale "C")
  269. ;; my prefix map
  270. (defvar my-prefix-map nil
  271. "My prefix map.")
  272. (define-prefix-command 'my-prefix-map)
  273. (define-key ctl-x-map (kbd "C-x") 'my-prefix-map)
  274. (define-key my-prefix-map (kbd "C-q") 'quoted-insert)
  275. (define-key my-prefix-map (kbd "C-z") 'suspend-frame)
  276. ;; (comint-show-maximum-output)
  277. ;; kill scratch
  278. (call-after-init (lambda ()
  279. (let ((buf (get-buffer "*scratch*")))
  280. (when buf
  281. (kill-buffer buf)))))
  282. ;; modifier keys
  283. ;; (setq mac-option-modifier 'control)
  284. ;; display
  285. (setq redisplay-dont-pause t)
  286. (setq visible-bell t)
  287. (setq ring-bell-function 'ignore)
  288. (mouse-avoidance-mode 'banish)
  289. (and window-system
  290. (fetch-library
  291. "https://raw.github.com/10sr/emacs-lisp/master/save-window-size.el"
  292. t)
  293. (safe-require-or-eval 'save-window-size))
  294. (defun reload-init-file ()
  295. "Reload Emacs init file."
  296. (interactive)
  297. (when (and user-init-file
  298. (file-readable-p user-init-file))
  299. (load-file user-init-file)))
  300. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  301. ;; for windows
  302. (defun start-ckw-bash ()
  303. "Start ckw in windows."
  304. (interactive)
  305. (start-process
  306. "ckw_bash"
  307. nil
  308. "C:/Documents and Settings/sr/Application Data/dbx/apps/ckw/ckw.exe"))
  309. ;; command seems to have to be in c drive
  310. (defun my-w32-add-export-path (&rest args)
  311. "Add pathes ARGS for windows."
  312. (mapc (lambda (path)
  313. (add-to-list 'exec-path (expand-file-name path)))
  314. (reverse args))
  315. (setenv "PATH"
  316. (mapconcat 'convert-standard-filename
  317. exec-path
  318. ";")))
  319. (when (eq system-type 'windows-nt)
  320. ;; (setq scheme-program-name "\"c:/Program Files/Gauche/bin/gosh.exe\" -i")
  321. ;; (setq python-python-command "c:/Python26/python.exe")
  322. ;; (define-key my-prefix-map (kbd "C-c") 'start-ckw-bash)
  323. (my-w32-add-export-path "c:/Windows/system"
  324. "c:/Windows/System32"
  325. "c:/Program Files/Git/bin"
  326. "c:/MinGW/bin"
  327. "c:/MinGW/mingw32/bin"
  328. (expand-file-name "~/.local/bin")
  329. (expand-file-name "~/dbx/apps/bin"))
  330. (when window-system
  331. (defvar-set w32-enable-synthesized-fonts t))
  332. (defvar-set w32-apps-modifier 'meta)
  333. (setq file-name-coding-system 'sjis))
  334. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  335. ;; global keys
  336. (global-set-key (kbd "<up>") 'scroll-down-line)
  337. (global-set-key (kbd "<down>") 'scroll-up-line)
  338. (global-set-key (kbd "<left>") 'scroll-down)
  339. (global-set-key (kbd "<right>") 'scroll-up)
  340. ;; (define-key my-prefix-map (kbd "C-h") help-map)
  341. (global-set-key (kbd "C-\\") help-map)
  342. (define-key ctl-x-map (kbd "DEL") help-map)
  343. (define-key ctl-x-map (kbd "C-h") help-map)
  344. (define-key help-map "a" 'apropos)
  345. ;; disable annoying keys
  346. (global-set-key [prior] 'ignore)
  347. (global-set-key (kbd "<next>") 'ignore)
  348. (global-set-key [menu] 'ignore)
  349. (global-set-key [down-mouse-1] 'ignore)
  350. (global-set-key [down-mouse-2] 'ignore)
  351. (global-set-key [down-mouse-3] 'ignore)
  352. (global-set-key [mouse-1] 'ignore)
  353. (global-set-key [mouse-2] 'ignore)
  354. (global-set-key [mouse-3] 'ignore)
  355. (global-set-key (kbd "<eisu-toggle>") 'ignore)
  356. (global-set-key (kbd "C-<eisu-toggle>") 'ignore)
  357. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  358. ;; title and mode-line
  359. (when (and (fetch-library
  360. "https://raw.github.com/10sr/emacs-lisp/master/terminal-title.el"
  361. t)
  362. (safe-require-or-eval 'terminal-title))
  363. ;; if TERM is not screen use default value
  364. (if (getenv "TMUX")
  365. ;; if use tmux locally just basename of current dir
  366. (defvar-set terminal-title-format
  367. '((file-name-nondirectory (directory-file-name
  368. default-directory))))
  369. (if (and (let ((tty-type (frame-parameter nil
  370. 'tty-type)))
  371. (and tty-type
  372. (equal (car (split-string tty-type
  373. "-"))
  374. "screen")))
  375. (not (getenv "SSH_CONNECTION")))
  376. (defvar-set terminal-title-format
  377. '((file-name-nondirectory (directory-file-name
  378. default-directory))))
  379. ;; seems that TMUX is used locally and ssh to remote host
  380. (defvar-set terminal-title-format
  381. `("em:"
  382. ,user-login-name
  383. "@"
  384. ,(car (split-string system-name
  385. "\\."))
  386. ":"
  387. default-directory))
  388. )
  389. )
  390. (terminal-title-mode))
  391. (setq eol-mnemonic-dos "\\r\\n")
  392. (setq eol-mnemonic-mac "\\r")
  393. (setq eol-mnemonic-unix "\\n")
  394. (which-function-mode 0)
  395. (line-number-mode 0)
  396. (column-number-mode 0)
  397. (size-indication-mode 0)
  398. (setq mode-line-position
  399. '(:eval (format "L%%l/%d,C%%c"
  400. (count-lines (point-max)
  401. (point-min)))))
  402. (when (require 'git-ps1-mode nil t)
  403. (git-ps1-mode))
  404. ;; http://www.geocities.jp/simizu_daisuke/bunkei-meadow.html#frame-title
  405. ;; display date
  406. (call-after-init (lambda ()
  407. (when display-time-mode
  408. (display-time-update))))
  409. (when (safe-require-or-eval 'time)
  410. (setq display-time-interval 29)
  411. (setq display-time-day-and-date t)
  412. (setq display-time-format "%a, %d %b %Y %T")
  413. (if window-system
  414. (display-time-mode 0)
  415. (display-time-mode 1)))
  416. ;; ;; current directory
  417. ;; (let ((ls (member 'mode-line-buffer-identification
  418. ;; mode-line-format)))
  419. ;; (setcdr ls
  420. ;; (cons '(:eval (concat " ("
  421. ;; (abbreviate-file-name default-directory)
  422. ;; ")"))
  423. ;; (cdr ls))))
  424. ;; ;; display last modified time
  425. ;; (let ((ls (member 'mode-line-buffer-identification
  426. ;; mode-line-format)))
  427. ;; (setcdr ls
  428. ;; (cons '(:eval (concat " "
  429. ;; my-buffer-file-last-modified-time))
  430. ;; (cdr ls))))
  431. (defun buffer-list-not-start-with-space ()
  432. "Return a list of buffers that not start with whitespaces."
  433. (let ((bl (buffer-list))
  434. b nbl)
  435. (while bl
  436. (setq b (pop bl))
  437. (unless (string-equal " "
  438. (substring (buffer-name b)
  439. 0
  440. 1))
  441. (add-to-list 'nbl b)))
  442. nbl))
  443. ;; http://www.masteringemacs.org/articles/2012/09/10/hiding-replacing-modeline-strings/
  444. ;; (add-to-list 'minor-mode-alist
  445. ;; '(global-whitespace-mode ""))
  446. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  447. ;; system info
  448. (defun my-message-current-info ()
  449. "Echo current login name, hostname and directory."
  450. (interactive)
  451. (message "%s@%s:%s"
  452. user-login-name
  453. system-name
  454. (abbreviate-file-name default-directory)))
  455. ;; (run-with-idle-timer 3
  456. ;; t
  457. ;; 'my-message-current-info)
  458. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  459. ;; minibuffer
  460. (setq insert-default-directory t)
  461. (setq completion-ignore-case t
  462. read-file-name-completion-ignore-case t
  463. read-buffer-completion-ignore-case t)
  464. (setq resize-mini-windows t)
  465. (temp-buffer-resize-mode 1)
  466. (savehist-mode 1)
  467. (fset 'yes-or-no-p 'y-or-n-p)
  468. ;; complete symbol when `eval'
  469. (define-key read-expression-map (kbd "TAB") 'lisp-complete-symbol)
  470. (define-key minibuffer-local-map (kbd "C-u")
  471. (lambda () (interactive) (delete-region (point-at-bol) (point))))
  472. ;; I dont know these bindings are good
  473. (define-key minibuffer-local-map (kbd "C-p") (kbd "ESC p"))
  474. (define-key minibuffer-local-map (kbd "C-n") (kbd "ESC n"))
  475. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  476. ;; letters, font-lock mode and fonts
  477. ;; (set-face-background 'vertical-border (face-foreground 'mode-line))
  478. ;; (set-window-margins (selected-window) 1 1)
  479. (and (or (eq system-type 'Darwin)
  480. (eq system-type 'darwin))
  481. (fboundp 'mac-set-input-method-parameter)
  482. (mac-set-input-method-parameter 'japanese 'cursor-color "red")
  483. (mac-set-input-method-parameter 'roman 'cursor-color "black"))
  484. (when (and (boundp 'input-method-activate-hook) ; i dont know this is correct
  485. (boundp 'input-method-inactivate-hook))
  486. (add-hook 'input-method-activate-hook
  487. (lambda () (set-cursor-color "red")))
  488. (add-hook 'input-method-inactivate-hook
  489. (lambda () (set-cursor-color "black"))))
  490. (when (safe-require-or-eval 'paren)
  491. (show-paren-mode 1)
  492. (setq show-paren-delay 0.5
  493. show-paren-style 'parenthesis) ; mixed is hard to read
  494. ;; (set-face-background 'show-paren-match
  495. ;; "black")
  496. ;; ;; (face-foreground 'default))
  497. ;; (set-face-foreground 'show-paren-match
  498. ;; "white")
  499. ;; (set-face-inverse-video-p 'show-paren-match
  500. ;; t)
  501. )
  502. (transient-mark-mode 1)
  503. (global-font-lock-mode 1)
  504. (setq font-lock-global-modes
  505. '(not
  506. help-mode
  507. eshell-mode
  508. term-mode
  509. Man-mode))
  510. ;; (standard-display-ascii ?\n "$\n")
  511. (defvar my-eol-face
  512. '(("\n" . (0 font-lock-comment-face t nil)))
  513. )
  514. (defvar my-tab-face
  515. '(("\t" . '(0 highlight t nil))))
  516. (defvar my-jspace-face
  517. '(("\u3000" . '(0 highlight t nil))))
  518. (add-hook 'font-lock-mode-hook
  519. (lambda ()
  520. ;; (font-lock-add-keywords nil my-eol-face)
  521. (font-lock-add-keywords nil my-jspace-face)
  522. ))
  523. (when (safe-require-or-eval 'whitespace)
  524. (add-to-list 'whitespace-display-mappings ; not work
  525. `(tab-mark ?\t ,(vconcat "^I\t")))
  526. (add-to-list 'whitespace-display-mappings
  527. `(newline-mark ?\n ,(vconcat "$\n")))
  528. (setq whitespace-style '(face
  529. trailing ; trailing blanks
  530. newline ; newlines
  531. newline-mark ; use display table for newline
  532. ;; tab-mark
  533. empty ; empty lines at beg or end of buffer
  534. lines-tail ; lines over 80
  535. ))
  536. ;; (setq whitespace-newline 'font-lock-comment-face)
  537. (global-whitespace-mode t)
  538. (if (eq (display-color-cells)
  539. 256)
  540. (set-face-foreground 'whitespace-newline "brightblack")
  541. ;; (progn
  542. ;; (set-face-bold-p 'whitespace-newline
  543. ;; t))
  544. ))
  545. (and nil
  546. (fetch-library
  547. "http://www.emacswiki.org/emacs/download/fill-column-indicator.el"
  548. t)
  549. (safe-require-or-eval 'fill-column-indicator)
  550. (setq fill-column-indicator))
  551. ;; highlight current line
  552. ;; http://wiki.riywo.com/index.php?Meadow
  553. (defface my-hl-line
  554. '((((min-colors 256)
  555. (background dark))
  556. (:background "color-234"))
  557. (((min-colors 256)
  558. (background light))
  559. (:background "color-234"))
  560. (t
  561. (:underline "black")))
  562. "*Face used by hl-line.")
  563. (defvar-set hl-line-face 'my-hl-line) ;; (setq hl-line-face nil)
  564. (global-hl-line-mode 1) ;; (hl-line-mode 1)
  565. (defvar-set hl-line-global-modes
  566. '(not
  567. term-mode))
  568. (set-face-foreground 'font-lock-regexp-grouping-backslash "#666")
  569. (set-face-foreground 'font-lock-regexp-grouping-construct "#f60")
  570. ;; fonts
  571. (defun my-set-ascii-and-jp-font (list)
  572. "Set font configuration to LIST."
  573. (let ((fspec1 (if (> emacs-major-version 22)
  574. ;; font spec is available in emacs23 and later
  575. (font-spec :family (nth 2 list) :size (nth 3 list))
  576. (cons (nth 2 list) "jisx0208.*")))
  577. (fspec2 (if (> emacs-major-version 22)
  578. (font-spec :family (nth 2 list) :size (nth 3 list))
  579. (cons (nth 2 list) "jisx0201.*"))))
  580. (set-face-attribute 'default nil
  581. :family (nth 0 list)
  582. :height (nth 1 list))
  583. (set-fontset-font "fontset-default"
  584. 'japanese-jisx0208
  585. fspec1)
  586. (set-fontset-font "fontset-default"
  587. 'katakana-jisx0201
  588. fspec2)))
  589. ;; (my-set-ascii-and-jp-font '("dejavu sans mono" 90 "takaogothic" 13))
  590. ;; (my-set-ascii-and-jp-font '("dejavu sans mono" 100 "takaogothic" 14))
  591. ;; (my-set-ascii-and-jp-font '("dejavu sans mono" 100 "ms gothic" 14))
  592. ;; (my-set-ascii-and-jp-font '("monaco" 75 "takaogothic" 11))
  593. ;; (my-set-ascii-and-jp-font '("monaco" 90 "takaogothic" 13))
  594. ;; (my-set-ascii-and-jp-font '("ProggyCleanTTSZ" 120 "takaogothic" 11))
  595. ;; あ a
  596. (and (fetch-library
  597. "https://raw.github.com/10sr/emacs-lisp/master/set-modeline-color.el"
  598. t)
  599. (progn
  600. (safe-require-or-eval 'set-modeline-color)))
  601. (let ((fg (face-foreground 'default))
  602. (bg (face-background 'default)))
  603. (set-face-background 'mode-line-inactive
  604. (if (face-inverse-video-p 'mode-line) fg bg))
  605. (set-face-foreground 'mode-line-inactive
  606. (if (face-inverse-video-p 'mode-line) bg fg)))
  607. (set-face-underline 'mode-line-inactive
  608. t)
  609. (set-face-underline 'vertical-border
  610. nil)
  611. (and (fetch-library
  612. "https://raw.github.com/tarao/elisp/master/end-mark.el"
  613. t)
  614. (safe-require-or-eval 'end-mark)
  615. (global-end-mark-mode))
  616. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  617. ;; file handling
  618. (require 'editorconfig nil t)
  619. (setq revert-without-query '(".+"))
  620. ;; save cursor position
  621. (when (safe-require-or-eval 'saveplace)
  622. (setq-default save-place t)
  623. (setq save-place-file (concat user-emacs-directory
  624. "places")))
  625. ;; http://www.bookshelf.jp/soft/meadow_24.html#SEC260
  626. (setq make-backup-files t)
  627. ;; (make-directory (expand-file-name "~/.emacsbackup"))
  628. (setq backup-directory-alist
  629. (cons (cons "\\.*$" (expand-file-name (concat user-emacs-directory
  630. "backup")))
  631. backup-directory-alist))
  632. (setq version-control 'never)
  633. (setq delete-old-versions t)
  634. (setq auto-save-list-file-prefix (expand-file-name (concat user-emacs-directory
  635. "auto-save/")))
  636. (setq delete-auto-save-files t)
  637. (add-to-list 'completion-ignored-extensions ".bak")
  638. ;; (setq delete-by-moving-to-trash t
  639. ;; trash-directory "~/.emacs.d/trash")
  640. (add-hook 'after-save-hook
  641. 'executable-make-buffer-file-executable-if-script-p)
  642. (defvar-set bookmark-default-file (concat user-emacs-directory
  643. "bmk"))
  644. (add-hook 'recentf-load-hook
  645. (lambda ()
  646. (defvar recentf-exclude)
  647. (add-to-list 'recentf-exclude
  648. (regexp-quote bookmark-default-file))))
  649. (and (fetch-library
  650. "https://raw.github.com/10sr/emacs-lisp/master/read-only-only-mode.el"
  651. t)
  652. (autoload-eval-lazily 'read-only-only-mode))
  653. (and (fetch-library
  654. "https://raw.github.com/10sr/emacs-lisp/master/smart-revert.el"
  655. t)
  656. (safe-require-or-eval 'smart-revert)
  657. (smart-revert-on))
  658. ;; autosave
  659. (and (fetch-library
  660. "https://raw.github.com/10sr/emacs-lisp/master/autosave.el"
  661. t)
  662. (safe-require-or-eval 'autosave)
  663. (autosave-set 2))
  664. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  665. ;; editting
  666. (defun my-copy-whole-line ()
  667. "Copy whole line."
  668. (interactive)
  669. (kill-new (concat (buffer-substring (point-at-bol)
  670. (point-at-eol))
  671. "\n")))
  672. (setq require-final-newline t)
  673. (setq kill-whole-line t)
  674. (setq scroll-conservatively 35
  675. scroll-margin 2
  676. scroll-step 0)
  677. (setq-default major-mode 'text-mode)
  678. (setq next-line-add-newlines nil)
  679. (setq kill-read-only-ok t)
  680. (setq truncate-partial-width-windows nil) ; when splitted horizontally
  681. ;; (setq-default line-spacing 0.2)
  682. (setq-default indicate-empty-lines t) ; when using x indicate empty line
  683. (setq-default tab-width 4)
  684. (setq-default indent-tabs-mode nil)
  685. (setq-default indent-line-function nil)
  686. ;; (pc-selection-mode 1) ; make some already defined keybind back to default
  687. (delete-selection-mode 1)
  688. (cua-mode 0)
  689. (setq line-move-visual nil)
  690. ;; key bindings
  691. ;; moving around
  692. ;; (global-set-key (kbd "M-j") 'next-line)
  693. ;; (global-set-key (kbd "M-k") 'previous-line)
  694. ;; (global-set-key (kbd "M-h") 'backward-char)
  695. ;; (global-set-key (kbd "M-l") 'forward-char)
  696. ;;(keyboard-translate ?\M-j ?\C-j)
  697. ;; (global-set-key (kbd "M-p") 'backward-paragraph)
  698. (define-key esc-map "p" 'backward-paragraph)
  699. ;; (global-set-key (kbd "M-n") 'forward-paragraph)
  700. (define-key esc-map "n" 'forward-paragraph)
  701. (global-set-key (kbd "C-<up>") 'scroll-down-line)
  702. (global-set-key (kbd "C-<down>") 'scroll-up-line)
  703. (global-set-key (kbd "C-<left>") 'scroll-down)
  704. (global-set-key (kbd "C-<right>") 'scroll-up)
  705. (global-set-key (kbd "<select>") 'ignore) ; 'previous-line-mark)
  706. (define-key ctl-x-map (kbd "ESC x") 'execute-extended-command)
  707. (define-key ctl-x-map (kbd "ESC :") 'eval-expression)
  708. ;; C-h and DEL
  709. (global-set-key (kbd "C-h") (kbd "DEL"))
  710. (global-set-key (kbd "C-m") 'reindent-then-newline-and-indent)
  711. (global-set-key (kbd "C-o") (kbd "C-e C-m"))
  712. (define-key esc-map "k" 'my-copy-whole-line)
  713. ;; (global-set-key "\C-z" 'undo) ; undo is M-u
  714. (define-key esc-map "u" 'undo)
  715. (define-key esc-map "i" (kbd "ESC TAB"))
  716. ;; (global-set-key (kbd "C-r") 'query-replace-regexp)
  717. (global-set-key (kbd "C-s") 'isearch-forward-regexp)
  718. (global-set-key (kbd "C-r") 'isearch-backward-regexp)
  719. (define-key my-prefix-map (kbd "C-o") 'occur)
  720. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  721. ;; japanese input method
  722. (defun my-load-scim ()
  723. "Use scim-bridge.el as japanese im."
  724. ;; Load scim-bridge.
  725. (when (safe-require-or-eval 'scim-bridge)
  726. ;; Turn on scim-mode automatically after loading .emacs
  727. (call-after-init 'scim-mode-on)
  728. (defvar-set scim-cursor-color "red")
  729. (scim-define-preedit-key ?\^h t)
  730. (scim-define-common-key ?\* nil)
  731. (scim-define-common-key ?\^/ nil)))
  732. (defun my-load-anthy ()
  733. "Use anthy.el as japanese im."
  734. ;; anthy
  735. (when (safe-require-or-eval 'anthy)
  736. (global-set-key
  737. (kbd "<muhenkan>") (lambda () (interactive) (anthy-mode-off)))
  738. (global-set-key (kbd "<henkan>") (lambda () (interactive) (anthy-mode-on)))
  739. (when (>= emacs-major-version 23)
  740. (defvar-set anthy-accept-timeout 1))))
  741. ;; quail
  742. ;; aproposs input-method for some information
  743. ;; (setq default-input-method "japanese")
  744. (defun my-load-mozc-el ()
  745. "Use mozc.el as japanese im."
  746. (when (safe-require-or-eval 'mozc)
  747. (defvar-set defauit-input-method "japanese-mozc")
  748. (defvar-set mozc-leim-title "[MZ]")
  749. ))
  750. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  751. ;; gmail
  752. (setq mail-interactive t
  753. send-mail-function 'smtpmail-send-it
  754. ;; message-send-mail-function 'smtpmail-send-it
  755. smtpmail-smtp-server "smtp.gmail.com"
  756. smtpmail-smtp-service 587
  757. smtpmail-starttls-credentials '(("smtp.gmail.com" 587
  758. "8.slashes@gmail.com" nil))
  759. smtpmail-auth-credentials '(("smtp.gmail.com" 587
  760. "8.slashes@gmail.com" nil))
  761. user-mail-address "8.slashes@gmail.com")
  762. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  763. ;; buffer killing
  764. ;; (defun my-delete-window-killing-buffer () nil)
  765. (defun my-query-kill-current-buffer ()
  766. "Interactively kill current buffer."
  767. (interactive)
  768. (if (y-or-n-p (concat "kill current buffer? :"))
  769. (kill-buffer (current-buffer))))
  770. (substitute-key-definition 'kill-buffer
  771. 'my-query-kill-current-buffer
  772. global-map)
  773. ;;(global-set-key "\C-xk" 'my-query-kill-current-buffer)
  774. (defun my-kill-buffers ()
  775. "Kill buffers that visit files."
  776. (interactive)
  777. (mapcar (lambda (buf)
  778. (when (buffer-file-name buf)
  779. (kill-buffer buf)))
  780. (buffer-list)))
  781. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  782. ;; share clipboard with x
  783. ;; this page describes this in details, but only these sexps seem to be needed
  784. ;; http://garin.jp/doc/Linux/xwindow_clipboard
  785. (and (not window-system)
  786. (not (eq window-system 'mac))
  787. (getenv "DISPLAY")
  788. (not (equal (getenv "DISPLAY") ""))
  789. (executable-find "xclip")
  790. ;; (< emacs-major-version 24)
  791. (safe-require-or-eval 'xclip)
  792. nil
  793. (turn-on-xclip))
  794. (and (eq system-type 'darwin)
  795. (fetch-library
  796. "https://raw.github.com/10sr/emacs-lisp/master/pasteboard.el"
  797. t)
  798. (safe-require-or-eval 'pasteboard)
  799. (turn-on-pasteboard)
  800. (getenv "TMUX")
  801. (pasteboard-enable-rtun))
  802. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  803. ;; https://github.com/lunaryorn/flycheck
  804. (when (safe-require-or-eval 'flycheck)
  805. (call-after-init 'global-flycheck-mode))
  806. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  807. ;; window
  808. '(and (fetch-library
  809. "https://raw.github.com/10sr/emacs-lisp/master/window-organizer.el"
  810. t)
  811. (autoload-eval-lazily 'window-organizer)
  812. (define-key ctl-x-map (kbd "w") 'window-organizer))
  813. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  814. ;; server
  815. (when (safe-require-or-eval 'server)
  816. (setq server-name (concat "server"
  817. (number-to-string (emacs-pid))))
  818. ;; In Cygwin Environment `server-runnning-p' stops when server-use-tcp is nil
  819. ;; In Darwin environment, init fails with message like 'Service name too long'
  820. ;; when server-use-tcp is nil
  821. (when (or (eq system-type
  822. 'cygwin)
  823. (eq system-type
  824. 'darwin))
  825. (setq server-use-tcp t))
  826. (defun my-construct-emacsclient-editor-command ()
  827. "Construct and return command in a string to connect to current Emacs server."
  828. (if server-use-tcp
  829. (format "%s -f \"%s/%s\""
  830. "emacsclient"
  831. (expand-file-name server-auth-dir)
  832. server-name)
  833. (format "%s -s \"%s/%s\""
  834. "emacsclient"
  835. server-socket-dir
  836. server-name)))
  837. (setq process-environment
  838. `(,(concat "EDITOR="
  839. (my-construct-emacsclient-editor-command))
  840. ,(concat "GIT_EDITOR="
  841. (my-construct-emacsclient-editor-command))
  842. ,@process-environment))
  843. (server-start))
  844. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  845. ;; some modes and hooks
  846. (defvar-set ac-ignore-case nil)
  847. ;; (when (require 'ensime nil t)
  848. ;; (defvar-set ensime-ac-case-sensitive t)
  849. ;; (defvar-set ensime-company-case-sensitive t)
  850. ;; (add-hook 'scala-mode-hook
  851. ;; 'ensime-scala-mode-hook)
  852. ;; (add-hook 'ensime-scala-mode-hook
  853. ;; 'ac-stop))
  854. (when (autoload-eval-lazily 'term-run '(term-run-shell-command term-run))
  855. (define-key ctl-x-map "t" 'term-run-shell-command))
  856. (add-to-list 'safe-local-variable-values
  857. '(encoding utf-8))
  858. (setq enable-local-variables :safe)
  859. (when (autoload-eval-lazily 'dirtree nil
  860. (defun my-dirtree-current-line-directory-p ()
  861. "Return nil if element on current line is not a directory."
  862. (file-directory-p (widget-get (tree-mode-button-current-line)
  863. :file)))
  864. ;; This fix is actually a little strange. Strictly speaking
  865. ;; judging tree should be done by whether the widget is a tree one.
  866. (defun my-dirtree-next-node (arg)
  867. "Fix the problem that `tree-mode-next-node' moves cursor 2 lines."
  868. (interactive "p")
  869. (if (my-dirtree-current-line-directory-p)
  870. (widget-forward (* arg 2))
  871. (widget-forward arg)))
  872. (defun my-dirtree-previous-node (arg)
  873. "Fix the problem that `tree-mode-previous-node' moves cursor 2 lines."
  874. (interactive "p")
  875. (my-dirtree-next-node (- arg)))
  876. (define-key dirtree-mode-map "n" 'my-dirtree-next-node)
  877. (define-key dirtree-mode-map "p" 'my-dirtree-previous-node))
  878. (define-key ctl-x-map "d" 'dirtree))
  879. (and (fetch-library
  880. "https://raw.github.com/10sr/emacs-lisp/master/remember-major-modes-mode.el"
  881. t)
  882. (safe-require-or-eval 'remember-major-modes-mode)
  883. (remember-major-modes-mode 1)
  884. )
  885. ;; Detect file type from shebang and set major-mode.
  886. (add-to-list 'interpreter-mode-alist
  887. '("python3" . python-mode))
  888. (add-to-list 'interpreter-mode-alist
  889. '("python2" . python-mode))
  890. ;; http://fukuyama.co/foreign-regexp
  891. '(and (safe-require-or-eval 'foreign-regexp)
  892. (progn
  893. (setq foreign-regexp/regexp-type 'perl)
  894. '(setq reb-re-syntax 'foreign-regexp)
  895. ))
  896. (safe-require-or-eval 'session)
  897. (autoload-eval-lazily 'sql '(sql-mode)
  898. (safe-require-or-eval 'sql-indent))
  899. '(and (fetch-library "https://raw.github.com/10sr/emacs-lisp/master/gtkbm.el"
  900. t)
  901. (autoload-eval-lazily 'gtkbm)
  902. (global-set-key (kbd "C-x C-d") 'gtkbm))
  903. (and (fetch-library
  904. "https://raw.github.com/10sr/git-command-el/master/git-command.el"
  905. t)
  906. (autoload-eval-lazily 'git-command
  907. nil
  908. ;; for git-command old version
  909. (when (boundp 'git-command-major-mode-alist)
  910. (message "You are using old git-command ! Update it !!!")
  911. (add-to-list 'git-command-major-mode-alist
  912. '("di" . diff-mode))
  913. (add-to-list 'git-command-major-mode-alist
  914. '("graph" . fundamental-mode))
  915. (add-to-list 'git-command-major-mode-alist
  916. '("log" . fundamental-mode)))
  917. ;; for git-command new version
  918. (when (boundp 'git-command-view-command-list)
  919. (add-to-list 'git-command-view-command-list
  920. "graph")
  921. (add-to-list 'git-command-view-command-list
  922. "blame")
  923. (add-to-list 'git-command-view-command-list
  924. "help"))
  925. (when (boundp 'git-command-aliases-alist)
  926. ;; (message "new version of git-command!")
  927. (add-to-list 'git-command-aliases-alist
  928. '("di" . (lambda (options cmd args new-buffer-p)
  929. (git-command-exec options
  930. "diff"
  931. args
  932. new-buffer-p))))
  933. (add-to-list 'git-command-aliases-alist
  934. '("grep" . (lambda (options cmd args new-buffer-p)
  935. (my-rgrep
  936. (concat
  937. "git "
  938. (git-command-construct-commandline
  939. `(,@options "--no-pager"
  940. "-c" "color.grep=false")
  941. cmd
  942. `("-nHe" ,@args))))))))
  943. (setq git-command-use-emacsclient t)
  944. (or git-command-prompt-file
  945. (setq git-command-prompt-file
  946. (git-command-find-git-ps1
  947. "/usr/share/git-core/contrib/completion/git-prompt.sh"))))
  948. ;; (setq git-command-default-options "-c color.ui=always")
  949. (define-key ctl-x-map "g" 'git-command))
  950. (and (fetch-library
  951. "http://www.emacswiki.org/emacs/download/sl.el"
  952. t)
  953. (autoload-eval-lazily 'sl))
  954. (defalias 'qcalc 'quick-calc)
  955. (safe-require-or-eval 'simple)
  956. (add-hook 'makefile-mode-hook
  957. (lambda ()
  958. (local-set-key (kbd "C-m") 'newline-and-indent)
  959. ;; this functions is set in write-file-functions, i cannot find any
  960. ;; good way to remove this.
  961. (fset 'makefile-warn-suspicious-lines 'ignore)
  962. ))
  963. (add-hook 'verilog-mode-hook
  964. (lambda ()
  965. (local-set-key ";" 'self-insert-command)))
  966. (setq diff-switches "-u")
  967. (add-hook 'diff-mode-hook
  968. (lambda ()
  969. ;; (when (and (eq major-mode
  970. ;; 'diff-mode)
  971. ;; (not buffer-file-name))
  972. ;; ;; do not pass when major-mode is derived mode of diff-mode
  973. ;; (view-mode 1))
  974. (set-face-attribute 'diff-header nil
  975. :foreground nil
  976. :background nil
  977. :weight 'bold)
  978. (set-face-attribute 'diff-file-header nil
  979. :foreground nil
  980. :background nil
  981. :weight 'bold)
  982. (set-face-foreground 'diff-index-face "blue")
  983. (set-face-attribute 'diff-hunk-header nil
  984. :foreground "cyan"
  985. :weight 'normal)
  986. (set-face-attribute 'diff-context nil
  987. ;; :foreground "white"
  988. :foreground nil
  989. :weight 'normal)
  990. (set-face-foreground 'diff-removed-face "red")
  991. (set-face-foreground 'diff-added-face "green")
  992. (set-face-background 'diff-removed-face nil)
  993. (set-face-background 'diff-added-face nil)
  994. (set-face-attribute 'diff-changed nil
  995. :foreground "magenta"
  996. :weight 'normal)
  997. (set-face-attribute 'diff-refine-change nil
  998. :foreground nil
  999. :background nil
  1000. :weight 'bold
  1001. :inverse-video t)
  1002. ;; Annoying !
  1003. ;;(diff-auto-refine-mode)
  1004. ))
  1005. ;; (ffap-bindings)
  1006. (add-hook 'sh-mode-hook
  1007. (lambda ()
  1008. (local-set-key
  1009. (kbd "C-x C-e")
  1010. 'my-execute-shell-command-current-line)))
  1011. (defvar-set sh-here-document-word "__EOC__")
  1012. (defun my-execute-shell-command-current-line ()
  1013. "Run current line as shell command."
  1014. (interactive)
  1015. (shell-command (buffer-substring-no-properties (point-at-bol)
  1016. (point))))
  1017. (setq auto-mode-alist
  1018. `(("autostart\\'" . sh-mode)
  1019. ("xinitrc\\'" . sh-mode)
  1020. ("xprograms\\'" . sh-mode)
  1021. ("PKGBUILD\\'" . sh-mode)
  1022. ,@auto-mode-alist))
  1023. (and (autoload-eval-lazily 'pkgbuild-mode)
  1024. (setq auto-mode-alist (append '(("PKGBUILD\\'" . pkgbuild-mode))
  1025. auto-mode-alist)))
  1026. (add-hook 'yaml-mode-hook
  1027. (lambda ()
  1028. (local-set-key(kbd "C-m") 'newline)))
  1029. (add-hook 'html-mode-hook
  1030. (lambda ()
  1031. (local-set-key(kbd "C-m") 'reindent-then-newline-and-indent)))
  1032. (add-hook 'text-mode-hook
  1033. (lambda ()
  1034. (local-set-key (kbd "C-m") 'newline)))
  1035. (add-to-list 'Info-default-directory-list
  1036. (expand-file-name "~/.info/emacs-ja"))
  1037. (add-hook 'apropos-mode-hook
  1038. (lambda ()
  1039. (local-set-key "n" 'next-line)
  1040. (local-set-key "p" 'previous-line)
  1041. ))
  1042. (add-hook 'isearch-mode-hook
  1043. (lambda ()
  1044. ;; (define-key isearch-mode-map
  1045. ;; (kbd "C-j") 'isearch-other-control-char)
  1046. ;; (define-key isearch-mode-map
  1047. ;; (kbd "C-k") 'isearch-other-control-char)
  1048. ;; (define-key isearch-mode-map
  1049. ;; (kbd "C-h") 'isearch-other-control-char)
  1050. (define-key isearch-mode-map (kbd "C-h") 'isearch-delete-char)
  1051. (define-key isearch-mode-map (kbd "M-r")
  1052. 'isearch-query-replace-regexp)))
  1053. ;; do not cleanup isearch highlight: use `lazy-highlight-cleanup' to remove
  1054. (setq lazy-highlight-cleanup nil)
  1055. ;; face for isearch highlighing
  1056. (set-face-attribute 'lazy-highlight
  1057. nil
  1058. :foreground `unspecified
  1059. :background `unspecified
  1060. :underline t
  1061. ;; :weight `bold
  1062. )
  1063. (add-hook 'outline-mode-hook
  1064. (lambda ()
  1065. (if (string-match "\\.md\\'" buffer-file-name)
  1066. (set (make-local-variable 'outline-regexp) "#+ "))))
  1067. (add-to-list 'auto-mode-alist (cons "\\.ol\\'" 'outline-mode))
  1068. (add-to-list 'auto-mode-alist (cons "\\.md\\'" 'outline-mode))
  1069. (when (autoload-eval-lazily 'markdown-mode
  1070. '(markdown-mode gfm-mode))
  1071. (add-to-list 'auto-mode-alist (cons "\\.md\\'" 'gfm-mode))
  1072. (setq markdown-command (or (executable-find "markdown")
  1073. (executable-find "markdown.pl")))
  1074. (add-hook 'markdown-mode-hook
  1075. (lambda ()
  1076. (outline-minor-mode 1)
  1077. (flyspell-mode)
  1078. (set (make-local-variable 'comment-start) ";")))
  1079. (add-hook 'gfm-mode-hook
  1080. (lambda ()
  1081. (define-key gfm-mode-map (kbd "C-m") 'electric-indent-just-newline)
  1082. ;;(electric-indent-mode 0)
  1083. )))
  1084. ;; c-mode
  1085. ;; http://www.emacswiki.org/emacs/IndentingC
  1086. ;; http://en.wikipedia.org/wiki/Indent_style
  1087. ;; http://d.hatena.ne.jp/emergent/20070203/1170512717
  1088. ;; http://seesaawiki.jp/whiteflare503/d/Emacs%20%a5%a4%a5%f3%a5%c7%a5%f3%a5%c8
  1089. (when (autoload-eval-lazily 'cc-vars
  1090. nil
  1091. (defvar c-default-style)
  1092. (add-to-list 'c-default-style
  1093. '(c-mode . "k&r"))
  1094. (add-to-list 'c-default-style
  1095. '(c++-mode . "k&r"))
  1096. (add-hook 'c-mode-common-hook
  1097. (lambda ()
  1098. ;; why c-basic-offset in k&r style defaults to 5 ???
  1099. (defvar-set c-basic-offset 4)
  1100. (defvar-set indent-tabs-mode nil)
  1101. ;; (set-face-foreground 'font-lock-keyword-face "blue")
  1102. (c-toggle-hungry-state -1)
  1103. ;; (and (require 'gtags nil t)
  1104. ;; (gtags-mode 1))
  1105. ))))
  1106. (when (autoload-eval-lazily 'php-mode)
  1107. (add-hook 'php-mode-hook
  1108. (lambda ()
  1109. (setq c-basic-offset 2))))
  1110. (when (autoload-eval-lazily 'js2-mode)
  1111. ;; currently do not use js2-mode
  1112. ;; (add-to-list 'auto-mode-alist '("\\.js\\'" . js2-mode))
  1113. ;; (add-to-list 'auto-mode-alist '("\\.jsm\\'" . js2-mode))
  1114. (add-hook 'js2-mode-hook
  1115. (lambda ()
  1116. (define-key js2-mode-map (kbd "C-m") (lambda ()
  1117. (interactive)
  1118. (js2-enter-key)
  1119. (indent-for-tab-command)))
  1120. ;; (add-hook (kill-local-variable 'before-save-hook)
  1121. ;; 'js2-before-save)
  1122. ;; (add-hook 'before-save-hook
  1123. ;; 'my-indent-buffer
  1124. ;; nil
  1125. ;; t)
  1126. )))
  1127. (eval-after-load "js"
  1128. (defvar-set js-indent-level 2))
  1129. (add-to-list 'interpreter-mode-alist
  1130. '("node" . js-mode))
  1131. (when (autoload-eval-lazily 'flymake-jslint
  1132. '(flymake-jslint-load))
  1133. (autoload-eval-lazily 'js nil
  1134. (add-hook 'js-mode-hook
  1135. 'flymake-jslint-load)))
  1136. (safe-require-or-eval 'js-doc)
  1137. (add-hook 'haskell-mode-hook 'turn-on-haskell-indentation)
  1138. (when (safe-require-or-eval 'uniquify)
  1139. (setq uniquify-buffer-name-style 'post-forward-angle-brackets)
  1140. (setq uniquify-ignore-buffers-re "*[^*]+*")
  1141. (setq uniquify-min-dir-content 1))
  1142. (add-hook 'view-mode-hook
  1143. (lambda()
  1144. (defvar view-mode-map)
  1145. (define-key view-mode-map "j" 'scroll-up-line)
  1146. (define-key view-mode-map "k" 'scroll-down-line)
  1147. (define-key view-mode-map "v" 'toggle-read-only)
  1148. (define-key view-mode-map "q" 'bury-buffer)
  1149. ;; (define-key view-mode-map "/" 'nonincremental-re-search-forward)
  1150. ;; (define-key view-mode-map "?" 'nonincremental-re-search-backward)
  1151. ;; (define-key view-mode-map
  1152. ;; "n" 'nonincremental-repeat-search-forward)
  1153. ;; (define-key view-mode-map
  1154. ;; "N" 'nonincremental-repeat-search-backward)
  1155. (define-key view-mode-map "/" 'isearch-forward-regexp)
  1156. (define-key view-mode-map "?" 'isearch-backward-regexp)
  1157. (define-key view-mode-map "n" 'isearch-repeat-forward)
  1158. (define-key view-mode-map "N" 'isearch-repeat-backward)
  1159. (define-key view-mode-map (kbd "C-m") 'my-rgrep-symbol-at-point)
  1160. ))
  1161. (global-set-key "\M-r" 'view-mode)
  1162. ;; (setq view-read-only t)
  1163. ;; (defun my-view-mode-search-word (word)
  1164. ;; "Search for word current directory and subdirectories.
  1165. ;; If called intearctively, find word at point."
  1166. ;; (interactive (list (thing-at-point 'symbol)))
  1167. ;; (if word
  1168. ;; (if (and (require 'gtags nil t)
  1169. ;; (gtags-get-rootpath))
  1170. ;; (gtags-goto-tag word "s")
  1171. ;; (my-rgrep word))
  1172. ;; (message "No word at point.")
  1173. ;; nil))
  1174. (add-hook 'Man-mode-hook
  1175. (lambda ()
  1176. (view-mode 1)
  1177. (setq truncate-lines nil)))
  1178. (defvar-set Man-notify-method (if window-system
  1179. 'newframe
  1180. 'aggressive))
  1181. (defvar-set woman-cache-filename (expand-file-name (concat user-emacs-directory
  1182. "woman_cache.el")))
  1183. (defalias 'man 'woman)
  1184. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1185. ;; python
  1186. (when (autoload-eval-lazily 'python '(python-mode))
  1187. (defvar-set python-python-command (or (executable-find "python3")
  1188. (executable-find "python")))
  1189. ;; (defun my-python-run-as-command ()
  1190. ;; ""
  1191. ;; (interactive)
  1192. ;; (shell-command (concat python-python-command " " buffer-file-name)))
  1193. (defun my-python-display-python-buffer ()
  1194. ""
  1195. (interactive)
  1196. (defvar python-buffer)
  1197. (set-window-text-height (display-buffer python-buffer
  1198. t)
  1199. 7))
  1200. (add-hook 'python-mode-hook
  1201. (lambda ()
  1202. (local-set-key (kbd "C-c C-e") 'my-python-run-as-command)
  1203. (local-set-key (kbd "C-c C-b") 'my-python-display-python-buffer)
  1204. (local-set-key (kbd "C-m") 'newline-and-indent)))
  1205. (add-hook 'inferior-python-mode-hook
  1206. (lambda ()
  1207. (my-python-display-python-buffer)
  1208. (local-set-key (kbd "<up>") 'comint-previous-input)
  1209. (local-set-key (kbd "<down>") 'comint-next-input))))
  1210. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1211. ;; GNU GLOBAL(gtags)
  1212. ;; http://uguisu.skr.jp/Windows/gtags.html
  1213. ;; http://eigyr.dip.jp/gtags.html
  1214. ;; http://cha.la.coocan.jp/doc/gnu_global.html
  1215. (let ((d "/opt/local/share/gtags/"))
  1216. (and (file-directory-p d)
  1217. (add-to-list 'load-path
  1218. d)))
  1219. (when (autoload-eval-lazily 'gtags '(gtags-mode))
  1220. (add-hook 'gtags-mode-hook
  1221. (lambda ()
  1222. (view-mode gtags-mode)
  1223. (setq gtags-select-buffer-single t)
  1224. ;; (local-set-key "\M-t" 'gtags-find-tag)
  1225. ;; (local-set-key "\M-r" 'gtags-find-rtag)
  1226. ;; (local-set-key "\M-s" 'gtags-find-symbol)
  1227. ;; (local-set-key "\C-t" 'gtags-pop-stack)
  1228. (define-key gtags-mode-map (kbd "C-x t h")
  1229. 'gtags-find-tag-from-here)
  1230. (define-key gtags-mode-map (kbd "C-x t t") 'gtags-find-tag)
  1231. (define-key gtags-mode-map (kbd "C-x t r") 'gtags-find-rtag)
  1232. (define-key gtags-mode-map (kbd "C-x t s") 'gtags-find-symbol)
  1233. (define-key gtags-mode-map (kbd "C-x t p") 'gtags-find-pattern)
  1234. (define-key gtags-mode-map (kbd "C-x t f") 'gtags-find-file)
  1235. (define-key gtags-mode-map (kbd "C-x t b") 'gtags-pop-stack) ;back
  1236. ))
  1237. (add-hook 'gtags-select-mode-hook
  1238. (lambda ()
  1239. (define-key gtags-select-mode-map (kbd "C-m") 'gtags-select-tag)
  1240. ))
  1241. )
  1242. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1243. ;; term mode
  1244. ;; (setq multi-term-program shell-file-name)
  1245. (when (autoload-eval-lazily 'multi-term)
  1246. (setq multi-term-switch-after-close nil)
  1247. (setq multi-term-dedicated-select-after-open-p t)
  1248. (setq multi-term-dedicated-window-height 20))
  1249. (when (autoload-eval-lazily 'term '(term ansi-term))
  1250. (defun my-term-quit-or-send-raw ()
  1251. ""
  1252. (interactive)
  1253. (if (get-buffer-process (current-buffer))
  1254. (call-interactively 'term-send-raw)
  1255. (kill-buffer)))
  1256. ;; http://d.hatena.ne.jp/goinger/20100416/1271399150
  1257. ;; (setq term-ansi-default-program shell-file-name)
  1258. (add-hook 'term-setup-hook
  1259. (lambda ()
  1260. (defvar-set term-display-table (make-display-table))))
  1261. (add-hook 'term-mode-hook
  1262. (lambda ()
  1263. (defvar term-raw-map)
  1264. (unless (memq (current-buffer)
  1265. (and (featurep 'multi-term)
  1266. (defvar multi-term-buffer-list)
  1267. ;; current buffer is not multi-term buffer
  1268. multi-term-buffer-list))
  1269. ;; (define-key term-raw-map "\C-q" 'move-beginning-of-line)
  1270. ;; (define-key term-raw-map "\C-r" 'term-send-raw)
  1271. ;; (define-key term-raw-map "\C-s" 'term-send-raw)
  1272. ;; (define-key term-raw-map "\C-f" 'forward-char)
  1273. ;; (define-key term-raw-map "\C-b" 'backward-char)
  1274. ;; (define-key term-raw-map "\C-t" 'set-mark-command)
  1275. (define-key term-raw-map
  1276. "\C-x" (lookup-key (current-global-map) "\C-x"))
  1277. (define-key term-raw-map
  1278. "\C-z" (lookup-key (current-global-map) "\C-z"))
  1279. )
  1280. ;; (define-key term-raw-map "\C-xl" 'term-line-mode)
  1281. ;; (define-key term-mode-map "\C-xc" 'term-char-mode)
  1282. (define-key term-raw-map (kbd "<up>") 'scroll-down-line)
  1283. (define-key term-raw-map (kbd "<down>") 'scroll-up-line)
  1284. (define-key term-raw-map (kbd "<right>") 'scroll-up)
  1285. (define-key term-raw-map (kbd "<left>") 'scroll-down)
  1286. (define-key term-raw-map (kbd "C-p") 'term-send-raw)
  1287. (define-key term-raw-map (kbd "C-n") 'term-send-raw)
  1288. (define-key term-raw-map "q" 'my-term-quit-or-send-raw)
  1289. ;; (define-key term-raw-map (kbd "ESC") 'term-send-raw)
  1290. (define-key term-raw-map [delete] 'term-send-raw)
  1291. (define-key term-raw-map (kbd "DEL") 'term-send-backspace)
  1292. (define-key term-raw-map "\C-y" 'term-paste)
  1293. (define-key term-raw-map
  1294. "\C-c" 'term-send-raw) ;; 'term-interrupt-subjob)
  1295. '(define-key term-mode-map (kbd "C-x C-q") 'term-pager-toggle)
  1296. ;; (dolist (key '("<up>" "<down>" "<right>" "<left>"))
  1297. ;; (define-key term-raw-map (read-kbd-macro key) 'term-send-raw))
  1298. ;; (define-key term-raw-map "\C-d" 'delete-char)
  1299. (set (make-local-variable 'scroll-margin) 0)
  1300. ;; (set (make-local-variable 'cua-enable-cua-keys) nil)
  1301. ;; (cua-mode 0)
  1302. ;; (and cua-mode
  1303. ;; (local-unset-key (kbd "C-c")))
  1304. ;; (define-key cua--prefix-override-keymap
  1305. ;;"\C-c" 'term-interrupt-subjob)
  1306. (set (make-local-variable (defvar hl-line-range-function))
  1307. (lambda ()
  1308. '(0 . 0)))
  1309. ))
  1310. ;; (add-hook 'term-exec-hook 'forward-char)
  1311. )
  1312. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1313. ;; buffer switching
  1314. (defvar bs-configurations)
  1315. (when (autoload-eval-lazily 'bs '(bs-show)
  1316. ;; (add-to-list 'bs-configurations
  1317. ;; '("processes" nil get-buffer-process ".*" nil nil))
  1318. (add-to-list 'bs-configurations
  1319. '("files-and-terminals" nil nil nil
  1320. (lambda (buf)
  1321. (and (bs-visits-non-file buf)
  1322. (save-excursion
  1323. (set-buffer buf)
  1324. (not (memq major-mode
  1325. '(term-mode
  1326. eshell-mode))))))))
  1327. ;; (setq bs-configurations (list
  1328. ;; '("processes" nil get-buffer-process ".*" nil nil)
  1329. ;; '("files-and-scratch" "^\\*scratch\\*$" nil nil
  1330. ;; bs-visits-non-file bs-sort-buffer-interns-are-last)))
  1331. )
  1332. ;; (global-set-key "\C-x\C-b" 'bs-show)
  1333. (defalias 'list-buffers 'bs-show)
  1334. (defvar-set bs-default-configuration "files-and-terminals")
  1335. (defvar-set bs-default-sort-name "by nothing")
  1336. (add-hook 'bs-mode-hook
  1337. (lambda ()
  1338. ;; (setq bs-default-configuration "files")
  1339. ;; (and bs--show-all
  1340. ;; (call-interactively 'bs-toggle-show-all))
  1341. (set (make-local-variable 'scroll-margin) 0))))
  1342. ;;(iswitchb-mode 1)
  1343. (icomplete-mode)
  1344. (defun iswitchb-buffer-display-other-window ()
  1345. "Do iswitchb in other window."
  1346. (interactive)
  1347. (let ((iswitchb-default-method 'display))
  1348. (call-interactively 'iswitchb-buffer)))
  1349. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1350. ;; sdic
  1351. (when (autoload-eval-lazily 'sdic '(sdic-describe-word-at-point))
  1352. ;; (define-key my-prefix-map "\C-w" 'sdic-describe-word)
  1353. (define-key my-prefix-map "\C-t" 'sdic-describe-word-at-point-echo)
  1354. (defun sdic-describe-word-at-point-echo ()
  1355. ""
  1356. (interactive)
  1357. (save-window-excursion
  1358. (sdic-describe-word-at-point))
  1359. (save-excursion
  1360. (set-buffer sdic-buffer-name)
  1361. (message (buffer-substring (point-min)
  1362. (progn (goto-char (point-min))
  1363. (or (and (re-search-forward "^\\w"
  1364. nil
  1365. t
  1366. 4)
  1367. (progn (previous-line) t)
  1368. (point-at-eol))
  1369. (point-max)))))))
  1370. (setq sdic-eiwa-dictionary-list '((sdicf-client "/usr/share/dict/gene.sdic")))
  1371. (setq sdic-waei-dictionary-list
  1372. '((sdicf-client "/usr/share/dict/jedict.sdic" (add-keys-to-headword t))))
  1373. (setq sdic-disable-select-window t)
  1374. (setq sdic-window-height 7))
  1375. ;;;;;;;;;;;;;;;;;;;;;;;;
  1376. ;; ilookup
  1377. (when (fetch-library
  1378. "https://raw.github.com/10sr/emacs-lisp/master/ilookup.el"
  1379. t)
  1380. (autoload-eval-lazily 'ilookup
  1381. '(ilookup-open)
  1382. (setq ilookup-dict-alist
  1383. '(
  1384. ("sdcv" . (lambda (word)
  1385. (shell-command-to-string
  1386. (format "sdcv -n '%s'"
  1387. word))))
  1388. ("en" . (lambda (word)
  1389. (shell-command-to-string
  1390. (format "sdcv -n -u dictd_www.dict.org_gcide '%s'"
  1391. word))))
  1392. ("ja" . (lambda (word)
  1393. (shell-command-to-string
  1394. (format "sdcv -n -u EJ-GENE95 -u jmdict-en-ja '%s'"
  1395. word))))
  1396. ("jaj" . (lambda (word)
  1397. (shell-command-to-string
  1398. (format "sdcv -n -u jmdict-en-ja '%s'"
  1399. word))))
  1400. ("jag" .
  1401. (lambda (word)
  1402. (with-temp-buffer
  1403. (insert (shell-command-to-string
  1404. (format "sdcv -n -u 'Genius English-Japanese' '%s'"
  1405. word)))
  1406. (html2text)
  1407. (buffer-substring (point-min)
  1408. (point-max)))))
  1409. ("alc" . (lambda (word)
  1410. (shell-command-to-string
  1411. (format "alc '%s' | head -n 20"
  1412. word))))
  1413. ("app" . (lambda (word)
  1414. (shell-command-to-string
  1415. (format "dict_app '%s'"
  1416. word))))
  1417. ;; letters broken
  1418. ("ms" .
  1419. (lambda (word)
  1420. (let ((url (concat
  1421. "http://api.microsofttranslator.com/V2/Ajax.svc/"
  1422. "Translate?appId=%s&text=%s&to=%s"))
  1423. (apikey "3C9778666C5BA4B406FFCBEE64EF478963039C51")
  1424. (target "ja")
  1425. (eword (url-hexify-string word)))
  1426. (with-current-buffer (url-retrieve-synchronously
  1427. (format url
  1428. apikey
  1429. eword
  1430. target))
  1431. (message "")
  1432. (goto-char (point-min))
  1433. (search-forward-regexp "^$"
  1434. nil
  1435. t)
  1436. (url-unhex-string (buffer-substring-no-properties
  1437. (point)
  1438. (point-max)))))))
  1439. ))
  1440. ;; (funcall (cdr (assoc "ms"
  1441. ;; ilookup-alist))
  1442. ;; "dictionary")
  1443. ;; (switch-to-buffer (url-retrieve-synchronously "http://api.microsofttranslator.com/V2/Ajax.svc/Translate?appId=3C9778666C5BA4B406FFCBEE64EF478963039C51&text=dictionary&to=ja"))
  1444. ;; (switch-to-buffer (url-retrieve-synchronously "http://google.com"))
  1445. (setq ilookup-default "ja")
  1446. (when (locate-library "google-translate")
  1447. (add-to-list 'ilookup-dict-alist
  1448. '("gt" .
  1449. (lambda (word)
  1450. (save-excursion
  1451. (google-translate-translate "auto"
  1452. "ja"
  1453. word))
  1454. (with-current-buffer "*Google Translate*"
  1455. (buffer-substring-no-properties (point-min)
  1456. (point-max)))))))
  1457. ))
  1458. (when (autoload-eval-lazily 'google-translate '(google-translate-translate
  1459. google-translate-at-point))
  1460. (setq google-translate-default-source-language "auto")
  1461. (setq google-translate-default-target-language "ja"))
  1462. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1463. ;; vc
  1464. (require 'vc)
  1465. (setq vc-handled-backends '())
  1466. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1467. ;; gauche-mode
  1468. ;; http://d.hatena.ne.jp/kobapan/20090305/1236261804
  1469. ;; http://www.katch.ne.jp/~leque/software/repos/gauche-mode/gauche-mode.el
  1470. (when (and (fetch-library
  1471. "http://www.katch.ne.jp/~leque/software/repos/gauche-mode/gauche-mode.el"
  1472. t)
  1473. (autoload-eval-lazily 'gauche-mode '(gauche-mode run-scheme)))
  1474. (let ((s (executable-find "gosh")))
  1475. (setq scheme-program-name s
  1476. gauche-program-name s))
  1477. (defun run-gauche-other-window ()
  1478. "Run gauche on other window"
  1479. (interactive)
  1480. (switch-to-buffer-other-window
  1481. (get-buffer-create "*scheme*"))
  1482. (run-gauche))
  1483. (defun run-gauche ()
  1484. "run gauche"
  1485. (interactive)
  1486. (run-scheme gauche-program-name)
  1487. )
  1488. (defun scheme-send-buffer ()
  1489. ""
  1490. (interactive)
  1491. (scheme-send-region (point-min) (point-max))
  1492. (my-scheme-display-scheme-buffer)
  1493. )
  1494. (defun my-scheme-display-scheme-buffer ()
  1495. ""
  1496. (interactive)
  1497. (set-window-text-height (display-buffer scheme-buffer
  1498. t)
  1499. 7))
  1500. (add-hook 'scheme-mode-hook
  1501. (lambda ()
  1502. nil))
  1503. (add-hook 'inferior-scheme-mode-hook
  1504. (lambda ()
  1505. ;; (my-scheme-display-scheme-buffer)
  1506. ))
  1507. (setq auto-mode-alist
  1508. (cons '("\.gosh\\'" . gauche-mode) auto-mode-alist))
  1509. (setq auto-mode-alist
  1510. (cons '("\.gaucherc\\'" . gauche-mode) auto-mode-alist))
  1511. (add-hook 'gauche-mode-hook
  1512. (lambda ()
  1513. (define-key gauche-mode-map
  1514. (kbd "C-c C-z") 'run-gauche-other-window)
  1515. (define-key scheme-mode-map
  1516. (kbd "C-c C-c") 'scheme-send-buffer)
  1517. (define-key scheme-mode-map
  1518. (kbd "C-c C-b") 'my-scheme-display-scheme-buffer))))
  1519. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1520. ;; recentf-mode
  1521. (setq recentf-save-file (expand-file-name (concat user-emacs-directory
  1522. "recentf"))
  1523. recentf-max-menu-items 20
  1524. recentf-max-saved-items 30
  1525. recentf-show-file-shortcuts-flag nil)
  1526. (when (safe-require-or-eval 'recentf)
  1527. (add-to-list 'recentf-exclude
  1528. (regexp-quote recentf-save-file))
  1529. (add-to-list 'recentf-exclude
  1530. (regexp-quote (expand-file-name user-emacs-directory)))
  1531. (define-key ctl-x-map (kbd "C-r") 'recentf-open-files)
  1532. (remove-hook 'find-file-hook
  1533. 'recentf-track-opened-file)
  1534. (defun my-recentf-load-track-save-list ()
  1535. "Load current recentf list from file, track current visiting file, then save
  1536. the list."
  1537. (recentf-load-list)
  1538. (recentf-track-opened-file)
  1539. (recentf-save-list))
  1540. (add-hook 'find-file-hook
  1541. 'my-recentf-load-track-save-list)
  1542. (add-hook 'kill-emacs-hook
  1543. 'recentf-load-list)
  1544. ;;(run-with-idle-timer 5 t 'recentf-save-list)
  1545. ;; (add-hook 'find-file-hook
  1546. ;; (lambda ()
  1547. ;; (recentf-add-file default-directory)))
  1548. (and (fetch-library
  1549. "https://raw.github.com/10sr/emacs-lisp/master/recentf-show.el"
  1550. t)
  1551. (autoload-eval-lazily 'recentf-show)
  1552. (define-key ctl-x-map (kbd "C-r") 'recentf-show)
  1553. (add-hook 'recentf-show-before-listing-hook
  1554. 'recentf-load-list))
  1555. (recentf-mode 1)
  1556. (add-hook 'recentf-dialog-mode-hook
  1557. (lambda ()
  1558. ;; (recentf-save-list)
  1559. ;; (define-key recentf-dialog-mode-map (kbd "C-x C-f")
  1560. ;; 'my-recentf-cd-and-find-file)
  1561. (define-key recentf-dialog-mode-map (kbd "<up>") 'previous-line)
  1562. (define-key recentf-dialog-mode-map (kbd "<down>") 'next-line)
  1563. (define-key recentf-dialog-mode-map "p" 'previous-line)
  1564. (define-key recentf-dialog-mode-map "n" 'next-line)
  1565. (cd "~/"))))
  1566. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1567. ;; dired
  1568. (when (autoload-eval-lazily 'dired nil)
  1569. (defun my-dired-echo-file-head (arg)
  1570. ""
  1571. (interactive "P")
  1572. (let ((f (dired-get-filename)))
  1573. (message "%s"
  1574. (with-temp-buffer
  1575. (insert-file-contents f)
  1576. (buffer-substring-no-properties
  1577. (point-min)
  1578. (progn (goto-line (if arg
  1579. (prefix-numeric-value arg)
  1580. 7))
  1581. (point-at-eol)))))))
  1582. (defun my-dired-diff ()
  1583. ""
  1584. (interactive)
  1585. (let ((files (dired-get-marked-files nil nil nil t)))
  1586. (if (eq (car files)
  1587. t)
  1588. (diff (cadr files) (dired-get-filename))
  1589. (message "One files must be marked!"))))
  1590. (defun my-pop-to-buffer-erase-noselect (buffer-or-name)
  1591. "pop up buffer using `display-buffer' and return that buffer."
  1592. (let ((bf (get-buffer-create buffer-or-name)))
  1593. (with-current-buffer bf
  1594. (cd ".")
  1595. (erase-buffer))
  1596. (display-buffer bf)
  1597. bf))
  1598. (defun my-replace-nasi-none ()
  1599. ""
  1600. (save-excursion
  1601. (let ((buffer-read-only nil))
  1602. (goto-char (point-min))
  1603. (while (search-forward "なし" nil t)
  1604. (replace-match "none")))))
  1605. (defun dired-get-file-info ()
  1606. "dired get file info"
  1607. (interactive)
  1608. (let ((f (shell-quote-argument (dired-get-filename t))))
  1609. (if (file-directory-p f)
  1610. (progn
  1611. (message "Calculating disk usage...")
  1612. (shell-command (concat "du -hsD "
  1613. f)))
  1614. (shell-command (concat "file "
  1615. f)))))
  1616. (defun my-dired-scroll-up ()
  1617. ""
  1618. (interactive)
  1619. (my-dired-previous-line (- (window-height) 1)))
  1620. (defun my-dired-scroll-down ()
  1621. ""
  1622. (interactive)
  1623. (my-dired-next-line (- (window-height) 1)))
  1624. ;; (defun my-dired-forward-line (arg)
  1625. ;; ""
  1626. ;; (interactive "p"))
  1627. (defun my-dired-previous-line (arg)
  1628. ""
  1629. (interactive "p")
  1630. (if (> arg 0)
  1631. (progn
  1632. (if (eq (line-number-at-pos)
  1633. 1)
  1634. (goto-char (point-max))
  1635. (forward-line -1))
  1636. (my-dired-previous-line (if (or (dired-get-filename nil t)
  1637. (dired-get-subdir))
  1638. (- arg 1)
  1639. arg)))
  1640. (dired-move-to-filename)))
  1641. (defun my-dired-next-line (arg)
  1642. ""
  1643. (interactive "p")
  1644. (if (> arg 0)
  1645. (progn
  1646. (if (eq (point)
  1647. (point-max))
  1648. (goto-char (point-min))
  1649. (forward-line 1))
  1650. (my-dired-next-line (if (or (dired-get-filename nil t)
  1651. (dired-get-subdir))
  1652. (- arg 1)
  1653. arg)))
  1654. (dired-move-to-filename)))
  1655. (defun my-dired-print-current-dir-and-file ()
  1656. (message "%s %s"
  1657. default-directory
  1658. (buffer-substring-no-properties (point-at-bol)
  1659. (point-at-eol))))
  1660. (defun dired-do-execute-as-command ()
  1661. ""
  1662. (interactive)
  1663. (let ((file (dired-get-filename t)))
  1664. (if (file-executable-p file)
  1665. (start-process file nil file)
  1666. (when (y-or-n-p
  1667. "This file cant be executed. Mark as executable and go? ")
  1668. (set-file-modes file
  1669. (file-modes-symbolic-to-number "u+x" (file-modes file)))
  1670. (start-process file nil file)))))
  1671. ;;http://bach.istc.kobe-u.ac.jp/lect/tamlab/ubuntu/emacs.html
  1672. (defun my-dired-x-open ()
  1673. ""
  1674. (interactive)
  1675. (my-x-open (dired-get-filename t t)))
  1676. (if (eq window-system 'mac)
  1677. (setq dired-listing-switches "-lhF")
  1678. (setq dired-listing-switches "-lhF --time-style=long-iso")
  1679. )
  1680. (setq dired-listing-switches "-lhF")
  1681. (put 'dired-find-alternate-file 'disabled nil)
  1682. ;; when using dired-find-alternate-file
  1683. ;; reuse current dired buffer for the file to open
  1684. (defvar-set dired-ls-F-marks-symlinks t)
  1685. (when (safe-require-or-eval 'ls-lisp)
  1686. (setq ls-lisp-use-insert-directory-program nil) ; always use ls-lisp
  1687. (setq ls-lisp-dirs-first t)
  1688. (setq ls-lisp-use-localized-time-format t)
  1689. (setq ls-lisp-format-time-list
  1690. '("%Y-%m-%d %H:%M"
  1691. "%Y-%m-%d ")))
  1692. (defvar-set dired-dwim-target t)
  1693. (defvar-set dired-isearch-filenames t)
  1694. (defvar-set dired-hide-details-hide-symlink-targets nil)
  1695. (defvar-set dired-hide-details-hide-information-lines nil)
  1696. ;; (add-hook 'dired-after-readin-hook
  1697. ;; 'my-replace-nasi-none)
  1698. ;; (add-hook 'after-init-hook
  1699. ;; (lambda ()
  1700. ;; (dired ".")))
  1701. (add-hook 'dired-mode-hook
  1702. (lambda ()
  1703. (local-set-key "o" 'my-dired-x-open)
  1704. (local-set-key "i" 'dired-get-file-info)
  1705. (local-set-key "f" 'find-file)
  1706. (local-set-key "!" 'shell-command)
  1707. (local-set-key "&" 'async-shell-command)
  1708. (local-set-key "X" 'dired-do-async-shell-command)
  1709. (local-set-key "=" 'my-dired-diff)
  1710. (local-set-key "B" 'gtkbm-add-current-dir)
  1711. (local-set-key "b" 'gtkbm)
  1712. (local-set-key "h" 'my-dired-echo-file-head)
  1713. (local-set-key "@" (lambda ()
  1714. (interactive) (my-x-open ".")))
  1715. (local-set-key (kbd "TAB") 'other-window)
  1716. ;; (local-set-key "P" 'my-dired-do-pack-or-unpack)
  1717. (local-set-key "/" 'dired-isearch-filenames)
  1718. (local-set-key (kbd "DEL") 'dired-up-directory)
  1719. (local-set-key (kbd "C-h") 'dired-up-directory)
  1720. (substitute-key-definition 'dired-next-line
  1721. 'my-dired-next-line
  1722. (current-local-map))
  1723. (substitute-key-definition 'dired-previous-line
  1724. 'my-dired-previous-line
  1725. (current-local-map))
  1726. ;; (local-set-key (kbd "C-p") 'my-dired-previous-line)
  1727. ;; (local-set-key (kbd "p") 'my-dired-previous-line)
  1728. ;; (local-set-key (kbd "C-n") 'my-dired-next-line)
  1729. ;; (local-set-key (kbd "n") 'my-dired-next-line)
  1730. (local-set-key (kbd "<left>") 'my-dired-scroll-up)
  1731. (local-set-key (kbd "<right>") 'my-dired-scroll-down)
  1732. (local-set-key (kbd "ESC p") 'my-dired-scroll-up)
  1733. (local-set-key (kbd "ESC n") 'my-dired-scroll-down)
  1734. (when (fboundp 'dired-hide-details-mode)
  1735. (dired-hide-details-mode t)
  1736. (local-set-key "l" 'dired-hide-details-mode))
  1737. (let ((file "._Icon\015"))
  1738. (when nil (file-readable-p file)
  1739. (delete-file file)))))
  1740. (and (fetch-library "https://raw.github.com/10sr/emacs-lisp/master/pack.el"
  1741. t)
  1742. (autoload-eval-lazily 'pack '(dired-do-pack-or-unpack pack))
  1743. (add-hook 'dired-mode-hook
  1744. (lambda ()
  1745. (local-set-key "P" 'dired-do-pack-or-unpack))))
  1746. (and (fetch-library
  1747. "https://raw.github.com/10sr/emacs-lisp/master/dired-list-all-mode.el"
  1748. t)
  1749. (autoload-eval-lazily 'dired-list-all-mode)
  1750. (setq dired-listing-switches "-lhF")
  1751. (add-hook 'dired-mode-hook
  1752. (lambda ()
  1753. (local-set-key "a" 'dired-list-all-mode)
  1754. )))
  1755. ) ; when dired locate
  1756. ;; http://blog.livedoor.jp/tek_nishi/archives/4693204.html
  1757. (defvar dired-marker-char)
  1758. (defun my-dired-toggle-mark()
  1759. (let ((cur (cond ((eq (following-char) dired-marker-char) ?\040)
  1760. (t dired-marker-char))))
  1761. (delete-char 1)
  1762. (insert cur)))
  1763. (defun my-dired-mark (arg)
  1764. "Toggle mark the current (or next ARG) files.
  1765. If on a subdir headerline, mark all its files except `.' and `..'.
  1766. Use \\[dired-unmark-all-files] to remove all marks
  1767. and \\[dired-unmark] on a subdir to remove the marks in
  1768. this subdir."
  1769. (interactive "P")
  1770. (if (dired-get-subdir)
  1771. (save-excursion (dired-mark-subdir-files))
  1772. (let ((inhibit-read-only t))
  1773. (dired-repeat-over-lines
  1774. (prefix-numeric-value arg)
  1775. 'my-dired-toggle-mark))))
  1776. (defun my-dired-mark-backward (arg)
  1777. "In Dired, move up lines and toggle mark there.
  1778. Optional prefix ARG says how many lines to unflag; default is one line."
  1779. (interactive "p")
  1780. (my-dired-mark (- arg)))
  1781. (add-hook 'dired-mode-hook
  1782. (lambda ()
  1783. (local-set-key (kbd "SPC") 'my-dired-mark)
  1784. (local-set-key (kbd "S-SPC") 'my-dired-mark-backward))
  1785. )
  1786. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1787. ;; eshell
  1788. (autoload-eval-lazily 'eshell nil
  1789. (defvar-set eshell-banner-message (format "Welcome to the Emacs shell
  1790. %s
  1791. C-x t to toggling emacs-text-mode
  1792. "
  1793. (shell-command-to-string "uname -a")
  1794. ))
  1795. (defvar eshell-text-mode-map
  1796. (let ((map (make-sparse-keymap)))
  1797. (define-key map (kbd "C-x t") 'eshell-text-mode-toggle)
  1798. map))
  1799. (define-derived-mode eshell-text-mode text-mode
  1800. "Eshell-Text"
  1801. "Text-mode for Eshell."
  1802. nil)
  1803. (defun eshell-text-mode-toggle ()
  1804. "Toggle eshell-text-mode and eshell-mode."
  1805. (interactive)
  1806. (cond ((eq major-mode
  1807. 'eshell-text-mode)
  1808. (goto-char (point-max))
  1809. (message "Eshell text mode disabled")
  1810. (eshell-mode))
  1811. ((eq major-mode
  1812. 'eshell-mode)
  1813. (message "Eshell text mode enabled")
  1814. (eshell-write-history)
  1815. (eshell-text-mode))
  1816. (t
  1817. (message "Not in eshell buffer")
  1818. nil)))
  1819. (defun my-eshell-backward-delete-char ()
  1820. (interactive)
  1821. (when (< (save-excursion
  1822. (eshell-bol)
  1823. (point))
  1824. (point))
  1825. (backward-delete-char 1)))
  1826. (defun my-file-owner-p (file)
  1827. "t if FILE is owned by me."
  1828. (eq (user-uid) (nth 2 (file-attributes file))))
  1829. "http://www.bookshelf.jp/pukiwiki/pukiwiki.php\
  1830. ?Eshell%A4%F2%BB%C8%A4%A4%A4%B3%A4%CA%A4%B9"
  1831. ;; ;; written by Stefan Reichoer <reichoer@web.de>
  1832. ;; (defun eshell/less (&rest args)
  1833. ;; "Invoke `view-file' on the file.
  1834. ;; \"less +42 foo\" also goes to line 42 in the buffer."
  1835. ;; (if args
  1836. ;; (while args
  1837. ;; (if (string-match "\\`\\+\\([0-9]+\\)\\'" (car args))
  1838. ;; (let* ((line (string-to-number (match-string 1 (pop args))))
  1839. ;; (file (pop args)))
  1840. ;; (view-file file)
  1841. ;; (goto-line line))
  1842. ;; (view-file (pop args))))))
  1843. (defun eshell/o (&optional file)
  1844. (my-x-open (or file ".")))
  1845. ;; (defun eshell/vi (&rest args)
  1846. ;; "Invoke `find-file' on the file.
  1847. ;; \"vi +42 foo\" also goes to line 42 in the buffer."
  1848. ;; (while args
  1849. ;; (if (string-match "\\`\\+\\([0-9]+\\)\\'" (car args))
  1850. ;; (let* ((line (string-to-number (match-string 1 (pop args))))
  1851. ;; (file (pop args)))
  1852. ;; (find-file file)
  1853. ;; (goto-line line))
  1854. ;; (find-file (pop args)))))
  1855. (defun eshell/clear ()
  1856. "Clear the current buffer, leaving one prompt at the top."
  1857. (interactive)
  1858. (let ((inhibit-read-only t))
  1859. (erase-buffer)))
  1860. (defun eshell-clear ()
  1861. (interactive)
  1862. (let ((inhibit-read-only t))
  1863. (erase-buffer)
  1864. (insert (funcall eshell-prompt-function))))
  1865. (defun eshell/d (&optional dirname switches)
  1866. "if first arg is omitted open current directory."
  1867. (dired (or dirname ".") switches))
  1868. (defun eshell/v ()
  1869. (view-mode 1))
  1870. ;; (defun eshell/aaa (&rest args)
  1871. ;; (message "%S"
  1872. ;; args))
  1873. (defalias 'eshell/: 'ignore)
  1874. (defalias 'eshell/type 'eshell/which)
  1875. ;; (defalias 'eshell/vim 'eshell/vi)
  1876. (defalias 'eshell/ff 'find-file)
  1877. (defalias 'eshell/q 'eshell/exit)
  1878. (defun eshell-goto-prompt ()
  1879. ""
  1880. (interactive)
  1881. (goto-char (point-max)))
  1882. (defun eshell-delete-char-or-logout (n)
  1883. (interactive "p")
  1884. (if (equal (eshell-get-old-input)
  1885. "")
  1886. (progn
  1887. (insert "exit")
  1888. (eshell-send-input))
  1889. (delete-char n)))
  1890. (defun eshell-kill-input ()
  1891. (interactive)
  1892. (delete-region (point)
  1893. (progn (eshell-bol)
  1894. (point))))
  1895. (defalias 'eshell/logout 'eshell/exit)
  1896. (defun eshell-cd-default-directory (&optional eshell-buffer-or-name)
  1897. "open eshell and change wd
  1898. if arg given, use that eshell buffer, otherwise make new eshell buffer."
  1899. (interactive)
  1900. (let ((dir (expand-file-name default-directory)))
  1901. (switch-to-buffer (or eshell-buffer-or-name
  1902. (eshell t)))
  1903. (unless (equal dir (expand-file-name default-directory))
  1904. ;; (cd dir)
  1905. ;; (eshell-interactive-print (concat "cd " dir "\n"))
  1906. ;; (eshell-emit-prompt)
  1907. (goto-char (point-max))
  1908. (eshell-kill-input)
  1909. (insert "cd " dir)
  1910. (eshell-send-input))))
  1911. (defadvice eshell-next-matching-input-from-input
  1912. ;; do not cycle history
  1913. (around eshell-history-do-not-cycle activate)
  1914. (if (= 0
  1915. (or eshell-history-index
  1916. 0))
  1917. (progn
  1918. (delete-region eshell-last-output-end (point))
  1919. (insert-and-inherit eshell-matching-input-from-input-string)
  1920. (setq eshell-history-index nil))
  1921. ad-do-it))
  1922. (defvar-set eshell-directory-name (concat user-emacs-directory
  1923. "eshell/"))
  1924. (defvar-set eshell-term-name "eterm-color")
  1925. (defvar-set eshell-scroll-to-bottom-on-input t)
  1926. (defvar-set eshell-cmpl-ignore-case t)
  1927. (defvar-set eshell-cmpl-cycle-completions nil)
  1928. (defvar-set eshell-highlight-prompt nil)
  1929. (if (eq system-type 'darwin)
  1930. (defvar-set eshell-ls-initial-args '("-hCFG")
  1931. (defvar-set eshell-ls-initial-args '("-hCFG"
  1932. "--color=auto"
  1933. "--time-style=long-iso")) ; "-hF")
  1934. ))
  1935. (defvar-set eshell-prompt-function
  1936. 'my-eshell-prompt-function)
  1937. (defvar eshell-last-command-status)
  1938. (defun my-eshell-prompt-function()
  1939. "Prompt function.
  1940. It looks like:
  1941. :: [10sr@darwin:~/][ESHELL]
  1942. :: $
  1943. "
  1944. (concat ":: ["
  1945. (let ((str (concat user-login-name
  1946. "@"
  1947. (car (split-string system-name
  1948. "\\."))
  1949. )))
  1950. (put-text-property 0
  1951. (length str)
  1952. 'face
  1953. 'underline
  1954. str)
  1955. str)
  1956. ":"
  1957. (let ((str (abbreviate-file-name default-directory)))
  1958. (put-text-property 0
  1959. (length str)
  1960. 'face
  1961. 'underline
  1962. str)
  1963. str)
  1964. "][ESHELL]\n:: "
  1965. (if (eq 0
  1966. eshell-last-command-status)
  1967. ""
  1968. (format "[STATUS:%d] "
  1969. eshell-last-command-status))
  1970. (if (= (user-uid)
  1971. 0)
  1972. "# "
  1973. "$ ")
  1974. ))
  1975. (add-hook 'eshell-mode-hook
  1976. (lambda ()
  1977. ;; (define-key eshell-mode-map (kbd "C-x C-x") (lambda ()
  1978. ;; (interactive)
  1979. ;; (switch-to-buffer (other-buffer))))
  1980. ;; (define-key eshell-mode-map (kbd "C-g") (lambda ()
  1981. ;; (interactive)
  1982. ;; (eshell-goto-prompt)
  1983. ;; (keyboard-quit)))
  1984. (local-set-key (kbd "C-x t") 'eshell-text-mode-toggle)
  1985. (local-set-key (kbd "C-u") 'eshell-kill-input)
  1986. (local-set-key (kbd "C-d") 'eshell-delete-char-or-logout)
  1987. ;; (define-key eshell-mode-map (kbd "C-l")
  1988. ;; 'eshell-clear)
  1989. (local-set-key (kbd "DEL") 'my-eshell-backward-delete-char)
  1990. (local-set-key (kbd "<up>") 'scroll-down-line)
  1991. (local-set-key (kbd "<down>") 'scroll-up-line)
  1992. ;; (define-key eshell-mode-map
  1993. ;; (kbd "C-p") 'eshell-previous-matching-input-from-input)
  1994. ;; (define-key eshell-mode-map
  1995. ;; (kbd "C-n") 'eshell-next-matching-input-from-input)
  1996. (apply 'eshell/addpath exec-path)
  1997. (set (make-local-variable 'scroll-margin) 0)
  1998. ;; (eshell/export "GIT_PAGER=")
  1999. ;; (eshell/export "GIT_EDITOR=")
  2000. (eshell/export "LC_MESSAGES=C")
  2001. (switch-to-buffer (current-buffer)) ; move buffer top of list
  2002. (set (make-local-variable (defvar hl-line-range-function))
  2003. (lambda ()
  2004. '(0 . 0)))
  2005. (defvar eshell-virtual-targets)
  2006. (add-to-list 'eshell-virtual-targets
  2007. '("/dev/less"
  2008. (lambda (str)
  2009. (if str
  2010. (with-current-buffer nil)))
  2011. nil))
  2012. ))
  2013. (add-hook 'eshell-mode-hook
  2014. (lambda ()
  2015. (defvar eshell-visual-commands)
  2016. (defvar eshell-output-filter-functions)
  2017. (defvar eshell-command-aliases-list)
  2018. (add-to-list 'eshell-visual-commands "vim")
  2019. ;; (add-to-list 'eshell-visual-commands "git")
  2020. (add-to-list 'eshell-output-filter-functions
  2021. 'eshell-truncate-buffer)
  2022. (mapcar (lambda (alias)
  2023. (add-to-list 'eshell-command-aliases-list
  2024. alias))
  2025. '(
  2026. ;; ("ll" "ls -l $*")
  2027. ;; ("la" "ls -a $*")
  2028. ;; ("lla" "ls -al $*")
  2029. ("git" "git -c color.ui=always $*")
  2030. ("g" "git $*")
  2031. ("eless"
  2032. (concat "cat >>> (with-current-buffer "
  2033. "(get-buffer-create \"*eshell output\") "
  2034. "(erase-buffer) "
  2035. "(setq buffer-read-only nil) "
  2036. "(current-buffer)) "
  2037. "(view-buffer (get-buffer \"*eshell output*\"))"))
  2038. )
  2039. )))
  2040. ) ; eval after load eshell
  2041. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  2042. ;; my-term
  2043. (defvar my-term nil
  2044. "My terminal buffer.")
  2045. (defvar my-term-function nil
  2046. "Function to create terminal buffer.
  2047. This function accept no argument and return newly created buffer of terminal.")
  2048. (defun my-term (&optional arg)
  2049. "Open terminal buffer and return that buffer.
  2050. If ARG is given or called with prefix argument, create new buffer."
  2051. (interactive "P")
  2052. (if (and (not arg)
  2053. my-term
  2054. (buffer-name my-term))
  2055. (pop-to-buffer my-term)
  2056. (setq my-term
  2057. (save-window-excursion
  2058. (funcall my-term-function)))
  2059. (and my-term
  2060. (my-term))))
  2061. ;; (setq my-term-function
  2062. ;; (lambda ()
  2063. ;; (if (eq system-type 'windows-nt)
  2064. ;; (eshell)
  2065. ;; (if (require 'multi-term nil t)
  2066. ;; (multi-term)
  2067. ;; (ansi-term shell-file-name)))))
  2068. (setq my-term-function (lambda () (eshell t)))
  2069. ;;(define-key my-prefix-map (kbd "C-s") 'my-term)
  2070. (define-key ctl-x-map "i" 'my-term)
  2071. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  2072. ;; x open
  2073. (defvar my-filer nil)
  2074. (setq my-filer (or (executable-find "pcmanfm")
  2075. (executable-find "nautilus")))
  2076. (defun my-x-open (file)
  2077. "Open FILE."
  2078. (interactive "FOpen File: ")
  2079. (setq file (expand-file-name file))
  2080. (message "Opening %s..." file)
  2081. (cond ((eq system-type 'windows-nt)
  2082. (call-process "cmd.exe" nil 0 nil
  2083. "/c" "start" "" (convert-standard-filename file)))
  2084. ((eq system-type 'darwin)
  2085. (call-process "open" nil 0 nil file))
  2086. ((getenv "DISPLAY")
  2087. (call-process (or my-filer "xdg-open") nil 0 nil file))
  2088. (t
  2089. (find-file file))
  2090. )
  2091. ;; (recentf-add-file file)
  2092. (message "Opening %s...done" file))
  2093. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  2094. ;; misc funcs
  2095. (defun my-git-apply-index-from-buffer (&optional buf)
  2096. "Git apply buffer. BUF is buffer to apply. nil to use current buffer."
  2097. (interactive)
  2098. (let ((buf (or buf
  2099. (current-buffer)))
  2100. (file (make-temp-file "git-apply-diff.emacs")))
  2101. (with-current-buffer buf
  2102. (write-region (point-min)
  2103. (point-max)
  2104. file)
  2105. (call-process "git"
  2106. nil
  2107. nil
  2108. nil
  2109. "apply"
  2110. "--cached"
  2111. file))))
  2112. (defun memo (&optional dir)
  2113. "Open memo.txt in DIR."
  2114. (interactive)
  2115. (pop-to-buffer (find-file-noselect (concat (if dir
  2116. (file-name-as-directory dir)
  2117. "")
  2118. "memo.txt"))))
  2119. (defvar my-rgrep-alist
  2120. `(
  2121. ;; the silver searcher
  2122. ("ag"
  2123. (executable-find "ag")
  2124. "ag --nocolor --nogroup --nopager --filename ")
  2125. ;; ack
  2126. ("ack"
  2127. (executable-find "ack")
  2128. "ack --nocolor --nogroup --nopager --with-filename ")
  2129. ;; gnu global
  2130. ("global"
  2131. (and (require 'gtags nil t)
  2132. (executable-find "global")
  2133. (gtags-get-rootpath))
  2134. "global --result grep ")
  2135. ;; git grep
  2136. ("gitgrep"
  2137. (eq 0
  2138. (shell-command "git rev-parse --git-dir"))
  2139. "git --no-pager -c color.grep=false grep -nH -e ")
  2140. ;; grep
  2141. ("grep"
  2142. t
  2143. ,(concat "find . "
  2144. "-path '*/.git' -prune -o "
  2145. "-path '*/.svn' -prune -o "
  2146. "-type f -print0 | "
  2147. "xargs -0 grep -nH -e "))
  2148. )
  2149. "Alist of rgrep command.
  2150. Each element is in the form like (NAME SEXP COMMAND), where SEXP returns the
  2151. condition to choose COMMAND when evaluated.")
  2152. (defvar my-rgrep-default nil
  2153. "Default command name for my-rgrep.")
  2154. (defun my-rgrep-grep-command (&optional name alist)
  2155. "Return recursive grep command for current directory or nil.
  2156. If NAME is given, use that without testing.
  2157. Commands are searched from ALIST."
  2158. (if alist
  2159. (if name
  2160. ;; if name is given search that from alist and return the command
  2161. (nth 2 (assoc name
  2162. alist))
  2163. ;; if name is not given try test in 1th elem
  2164. (let ((car (car alist))
  2165. (cdr (cdr alist)))
  2166. (if (eval (nth 1 car))
  2167. ;; if the condition is true return the command
  2168. (nth 2 car)
  2169. ;; try next one
  2170. (and cdr
  2171. (my-rgrep-grep-command name cdr)))))
  2172. ;; if alist is not given set default value
  2173. (my-rgrep-grep-command name my-rgrep-alist)))
  2174. (defun my-rgrep (command-args)
  2175. "My recursive grep. Run COMMAND-ARGS."
  2176. (interactive (let ((cmd (my-rgrep-grep-command my-rgrep-default
  2177. nil)))
  2178. (if cmd
  2179. (list (read-shell-command "grep command: "
  2180. cmd
  2181. 'grep-find-history))
  2182. (error "My-Rgrep: Command for rgrep not found")
  2183. )))
  2184. (compilation-start command-args
  2185. 'grep-mode))
  2186. ;; (defun my-rgrep-symbol-at-point (command-args)
  2187. ;; "My recursive grep. Run COMMAND-ARGS."
  2188. ;; (interactive (list (read-shell-command "grep command: "
  2189. ;; (concat (my-rgrep-grep-command)
  2190. ;; " "
  2191. ;; (thing-at-point 'symbol))
  2192. ;; 'grep-find-history)))
  2193. ;; (compilation-start command-args
  2194. ;; 'grep-mode))
  2195. (defmacro define-my-rgrep (name)
  2196. "Define rgrep for NAME."
  2197. `(defun ,(intern (concat "my-rgrep-"
  2198. name)) ()
  2199. ,(format "My recursive grep by %s."
  2200. name)
  2201. (interactive)
  2202. (let ((my-rgrep-default ,name))
  2203. (if (called-interactively-p 'any)
  2204. (call-interactively 'my-rgrep)
  2205. (error "Not intended to be called noninteractively. Use `my-rgrep'"))))
  2206. )
  2207. (define-my-rgrep "ack")
  2208. (define-my-rgrep "ag")
  2209. (define-my-rgrep "gitgrep")
  2210. (define-my-rgrep "grep")
  2211. (define-my-rgrep "global")
  2212. (define-key ctl-x-map "s" 'my-rgrep)
  2213. ;; (defun make ()
  2214. ;; "Run \"make -k\" in current directory."
  2215. ;; (interactive)
  2216. ;; (compile "make -k"))
  2217. (defalias 'make 'compile)
  2218. (define-key ctl-x-map "c" 'compile)
  2219. (defvar sed-in-place-history nil
  2220. "History of `sed-in-place'.")
  2221. (defvar sed-in-place-command "sed --in-place=.bak -e")
  2222. (defun sed-in-place (command)
  2223. "Issue sed in place COMMAND."
  2224. (interactive (list (read-shell-command "sed in place: "
  2225. (concat sed-in-place-command " ")
  2226. 'sed-in-place-history)))
  2227. (shell-command command
  2228. "*sed in place*"))
  2229. (defun dired-do-sed-in-place (&optional arg)
  2230. "Issue sed in place dired. If ARG is given, use the next ARG files."
  2231. (interactive "p")
  2232. (require 'dired-aux)
  2233. (let* ((files (dired-get-marked-files t arg))
  2234. (expr (dired-mark-read-string "Run sed-in-place for %s: "
  2235. nil
  2236. 'sed-in-place
  2237. arg
  2238. files)))
  2239. (if (equal expr
  2240. "")
  2241. (error "No expression specified")
  2242. (shell-command (concat sed-in-place-command
  2243. " '"
  2244. expr
  2245. "' "
  2246. (mapconcat 'shell-quote-argument
  2247. files
  2248. " "))
  2249. "*sed in place*"))))
  2250. (defun dir-show (&optional dir)
  2251. "Show DIR list."
  2252. (interactive)
  2253. (let ((bf (get-buffer-create "*dir show*"))
  2254. (list-directory-brief-switches "-C"))
  2255. (with-current-buffer bf
  2256. (list-directory (or nil
  2257. default-directory)
  2258. nil))
  2259. ))
  2260. (defun my-convmv-sjis2utf8-test ()
  2261. "Run `convmv -r -f sjis -t utf8 *'.
  2262. this is test, does not rename files."
  2263. (interactive)
  2264. (shell-command "convmv -r -f sjis -t utf8 *"))
  2265. (defun my-convmv-sjis2utf8-notest ()
  2266. "Run `convmv -r -f sjis -t utf8 * --notest'."
  2267. (interactive)
  2268. (shell-command "convmv -r -f sjis -t utf8 * --notest"))
  2269. (defun kill-ring-save-buffer-file-name ()
  2270. "Get current filename."
  2271. (interactive)
  2272. (let ((file buffer-file-name))
  2273. (if file
  2274. (progn (kill-new file)
  2275. (message file))
  2276. (message "not visiting file."))))
  2277. (defvar kill-ring-buffer-name "*kill-ring*"
  2278. "Buffer name for `kill-ring-buffer'.")
  2279. (defun open-kill-ring-buffer ()
  2280. "Open kill- ring buffer."
  2281. (interactive)
  2282. (pop-to-buffer
  2283. (with-current-buffer (get-buffer-create kill-ring-buffer-name)
  2284. (erase-buffer)
  2285. (yank)
  2286. (text-mode)
  2287. (current-local-map)
  2288. (goto-char (point-min))
  2289. (yank)
  2290. (current-buffer))))
  2291. (defun set-terminal-header (string)
  2292. "Set terminal header STRING."
  2293. (let ((savepos "\033[s")
  2294. (restorepos "\033[u")
  2295. (movecursor "\033[0;%dH")
  2296. (inverse "\033[7m")
  2297. (restorecolor "\033[0m")
  2298. (cols (frame-parameter nil 'width))
  2299. (length (length string)))
  2300. ;; (redraw-frame (selected-frame))
  2301. (send-string-to-terminal (concat savepos
  2302. (format movecursor
  2303. (1+ (- cols length)))
  2304. inverse
  2305. string
  2306. restorecolor
  2307. restorepos))
  2308. ))
  2309. (defun my-set-terminal-header ()
  2310. "Set terminal header."
  2311. (set-terminal-header (concat " "
  2312. user-login-name
  2313. "@"
  2314. (car (split-string system-name
  2315. "\\."))
  2316. " "
  2317. (format-time-string "%Y/%m/%d %T %z")
  2318. " ")))
  2319. ;; (run-with-timer
  2320. ;; 0.1
  2321. ;; 1
  2322. ;; 'my-set-terminal-header)
  2323. ;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  2324. ;; ;; savage emacs
  2325. ;; ;; when enabled emacs fails to complete
  2326. ;; ;; http://e-arrows.sakura.ne.jp/2010/05/emacs-should-be-more-savage.html
  2327. ;; (defadvice message (before message-for-stupid (arg &rest arg2) activate)
  2328. ;; (setq arg
  2329. ;; (concat arg
  2330. ;; (if (eq nil
  2331. ;; (string-match "\\. *$"
  2332. ;; arg))
  2333. ;; ".")
  2334. ;; " Stupid!")))
  2335. ;; TODO: make these a library
  2336. (defvar info-in-prompt
  2337. nil
  2338. "System info in the form of \"[user@host] \".")
  2339. (setq info-in-prompt
  2340. (concat "["
  2341. user-login-name
  2342. "@"
  2343. (car (split-string system-name
  2344. "\\."))
  2345. "]"))
  2346. (defun my-real-function-subr-p (function)
  2347. "Return t if FUNCTION is a built-in function even if it is advised."
  2348. (let* ((advised (and (symbolp function)
  2349. (featurep 'advice)
  2350. (ad-get-advice-info function)))
  2351. (real-function
  2352. (or (and advised (let ((origname (cdr (assq 'origname advised))))
  2353. (and (fboundp origname)
  2354. origname)))
  2355. function))
  2356. (def (if (symbolp real-function)
  2357. (symbol-function real-function)
  2358. function)))
  2359. (subrp def)))
  2360. ;; (my-real-function-subr-p 'my-real-function-subr-p)
  2361. ;; (defadvice read-from-minibuffer (before info-in-prompt activate)
  2362. ;; "Show system info when use `read-from-minibuffer'."
  2363. ;; (ad-set-arg 0
  2364. ;; (concat my-system-info
  2365. ;; (ad-get-arg 0))))
  2366. ;; (defadvice read-string (before info-in-prompt activate)
  2367. ;; "Show system info when use `read-string'."
  2368. ;; (ad-set-arg 0
  2369. ;; (concat my-system-info
  2370. ;; (ad-get-arg 0))))
  2371. ;; (when (< emacs-major-version 24)
  2372. ;; (defadvice completing-read (before info-in-prompt activate)
  2373. ;; "Show system info when use `completing-read'."
  2374. ;; (ad-set-arg 0
  2375. ;; (concat my-system-info
  2376. ;; (ad-get-arg 0)))))
  2377. (defmacro info-in-prompt-set (&rest functions)
  2378. "Set info-in-prompt advices for FUNCTIONS."
  2379. `(progn
  2380. ,@(mapcar (lambda (f)
  2381. `(defadvice ,f (before info-in-prompt activate)
  2382. "Show info in prompt."
  2383. (let ((orig (ad-get-arg 0)))
  2384. (unless (string-match-p (regexp-quote info-in-prompt)
  2385. orig)
  2386. (ad-set-arg 0
  2387. (concat info-in-prompt
  2388. " "
  2389. orig))))))
  2390. functions)))
  2391. (info-in-prompt-set read-from-minibuffer
  2392. read-string
  2393. completing-read)
  2394. ;;; emacs.el ends here