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.
 
 
 
 
 
 

2581 lines
88 KiB

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