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.
 
 
 
 
 
 

2593 lines
89 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 'yaml-mode-hook
  830. (lambda ()
  831. (define-key yaml-mode-map (kbd "C-m")
  832. 'newline)))
  833. (add-hook 'html-mode-hook
  834. (lambda ()
  835. (define-key html-mode-map (kbd "C-m")
  836. 'reindent-then-newline-and-indent)))
  837. (add-hook 'text-mode-hook
  838. (lambda ()
  839. (define-key text-mode-map (kbd "C-m") 'newline)))
  840. (add-to-list 'Info-default-directory-list
  841. (expand-file-name "~/.info/emacs-ja"))
  842. (add-hook 'apropos-mode-hook
  843. (lambda ()
  844. (define-key apropos-mode-map "n" 'next-line)
  845. (define-key apropos-mode-map "p" 'previous-line)
  846. ))
  847. (add-hook 'isearch-mode-hook
  848. (lambda ()
  849. ;; (define-key isearch-mode-map
  850. ;; (kbd "C-j") 'isearch-other-control-char)
  851. ;; (define-key isearch-mode-map
  852. ;; (kbd "C-k") 'isearch-other-control-char)
  853. ;; (define-key isearch-mode-map
  854. ;; (kbd "C-h") 'isearch-other-control-char)
  855. (define-key isearch-mode-map (kbd "C-h") 'isearch-delete-char)
  856. (define-key isearch-mode-map (kbd "M-r")
  857. 'isearch-query-replace-regexp)))
  858. ;; do not cleanup isearch highlight: use `lazy-highlight-cleanup' to remove
  859. (setq lazy-highlight-cleanup nil)
  860. ;; face for isearch highlighing
  861. (set-face-attribute 'lazy-highlight
  862. nil
  863. :foreground `unspecified
  864. :background `unspecified
  865. :underline t
  866. ;; :weight `bold
  867. )
  868. (add-hook 'outline-mode-hook
  869. (lambda ()
  870. (if (string-match "\\.md\\'" buffer-file-name)
  871. (set (make-local-variable 'outline-regexp) "#+ "))))
  872. (add-to-list 'auto-mode-alist (cons "\\.ol\\'" 'outline-mode))
  873. (add-to-list 'auto-mode-alist (cons "\\.md\\'" 'outline-mode))
  874. (when (fetch-library
  875. "http://jblevins.org/projects/markdown-mode/markdown-mode.el"
  876. t)
  877. (lazy-load-eval 'markdown-mode)
  878. (setq markdown-command (or (executable-find "markdown")
  879. (executable-find "markdown.pl")))
  880. (add-to-list 'auto-mode-alist (cons "\\.md\\'" 'markdown-mode))
  881. (add-hook 'markdown-mode-hook
  882. (lambda ()
  883. (outline-minor-mode 1)
  884. (flyspell-mode)
  885. (set (make-local-variable 'comment-start) ";"))))
  886. ;; c-mode
  887. ;; http://www.emacswiki.org/emacs/IndentingC
  888. ;; http://en.wikipedia.org/wiki/Indent_style
  889. ;; http://d.hatena.ne.jp/emergent/20070203/1170512717
  890. (when (lazy-load-eval 'cc-vars
  891. nil
  892. (add-to-list 'c-default-style
  893. '(c-mode . "k&r"))
  894. (add-to-list 'c-default-style
  895. '(c++-mode . "k&r"))
  896. (add-hook 'c-mode-common-hook
  897. (lambda ()
  898. ;; why c-basic-offset in k&r style defaults to 5 ???
  899. (setq c-basic-offset 4
  900. indent-tabs-mode nil)
  901. ;; (set-face-foreground 'font-lock-keyword-face "blue")
  902. (c-toggle-hungry-state -1)
  903. ;; (and (require 'gtags nil t)
  904. ;; (gtags-mode 1))
  905. ))))
  906. (when (fetch-library
  907. "https://raw.github.com/mooz/js2-mode/master/js2-mode.el"
  908. t)
  909. (lazy-load-eval 'js2-mode)
  910. ;; (add-to-list 'auto-mode-alist '("\\.js\\'" . js2-mode))
  911. ;; (add-to-list 'auto-mode-alist '("\\.jsm\\'" . js2-mode))
  912. (add-hook 'js2-mode-hook
  913. (lambda ()
  914. (define-key js2-mode-map (kbd "C-m") (lambda ()
  915. (interactive)
  916. (js2-enter-key)
  917. (indent-for-tab-command)))
  918. ;; (add-hook (kill-local-variable 'before-save-hook)
  919. ;; 'js2-before-save)
  920. ;; (add-hook 'before-save-hook
  921. ;; 'my-indent-buffer
  922. ;; nil
  923. ;; t)
  924. )))
  925. (add-hook 'haskell-mode-hook 'turn-on-haskell-indentation)
  926. (when (lazy-load-eval 'flymake-jslint
  927. '(flymake-jslint-load))
  928. (lazy-load-eval 'js nil
  929. (add-hook 'js-mode-hook
  930. 'flymake-jslint-load)))
  931. (require 'js-doc nil t)
  932. (when (require 'uniquify nil t)
  933. (setq uniquify-buffer-name-style 'post-forward-angle-brackets)
  934. (setq uniquify-ignore-buffers-re "*[^*]+*")
  935. (setq uniquify-min-dir-content 1))
  936. (add-hook 'view-mode-hook
  937. (lambda()
  938. (define-key view-mode-map "j" 'scroll-up-line)
  939. (define-key view-mode-map "k" 'scroll-down-line)
  940. (define-key view-mode-map "v" 'toggle-read-only)
  941. (define-key view-mode-map "q" 'bury-buffer)
  942. ;; (define-key view-mode-map "/" 'nonincremental-re-search-forward)
  943. ;; (define-key view-mode-map "?" 'nonincremental-re-search-backward)
  944. ;; (define-key view-mode-map
  945. ;; "n" 'nonincremental-repeat-search-forward)
  946. ;; (define-key view-mode-map
  947. ;; "N" 'nonincremental-repeat-search-backward)
  948. (define-key view-mode-map "/" 'isearch-forward-regexp)
  949. (define-key view-mode-map "?" 'isearch-backward-regexp)
  950. (define-key view-mode-map "n" 'isearch-repeat-forward)
  951. (define-key view-mode-map "N" 'isearch-repeat-backward)
  952. (define-key view-mode-map (kbd "C-m") 'my-rgrep-symbol-at-point)
  953. ))
  954. (global-set-key "\M-r" 'view-mode)
  955. ;; (setq view-read-only t)
  956. ;; (defun my-view-mode-search-word (word)
  957. ;; "Search for word current directory and subdirectories.
  958. ;; If called intearctively, find word at point."
  959. ;; (interactive (list (thing-at-point 'symbol)))
  960. ;; (if word
  961. ;; (if (and (require 'gtags nil t)
  962. ;; (gtags-get-rootpath))
  963. ;; (gtags-goto-tag word "s")
  964. ;; (my-rgrep word))
  965. ;; (message "No word at point.")
  966. ;; nil))
  967. (add-hook 'Man-mode-hook
  968. (lambda ()
  969. (view-mode 1)
  970. (setq truncate-lines nil)))
  971. (setq Man-notify-method (if window-system
  972. 'newframe
  973. 'aggressive))
  974. (setq woman-cache-filename (expand-file-name (concat user-emacs-directory
  975. "woman_cache.el")))
  976. (defalias 'man 'woman)
  977. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  978. ;; python
  979. (when (lazy-load-eval 'python '(python-mode))
  980. (setq python-python-command (or (executable-find "python3")
  981. (executable-find "python")))
  982. ;; (defun my-python-run-as-command ()
  983. ;; ""
  984. ;; (interactive)
  985. ;; (shell-command (concat python-python-command " " buffer-file-name)))
  986. (defun my-python-display-python-buffer ()
  987. ""
  988. (interactive)
  989. (set-window-text-height (display-buffer python-buffer
  990. t)
  991. 7))
  992. (add-hook 'python-mode-hook
  993. (lambda ()
  994. (define-key python-mode-map
  995. (kbd "C-c C-e") 'my-python-run-as-command)
  996. (define-key python-mode-map
  997. (kbd "C-c C-b") 'my-python-display-python-buffer)
  998. (define-key python-mode-map (kbd "C-m") 'newline-and-indent)))
  999. (add-hook 'inferior-python-mode-hook
  1000. (lambda ()
  1001. (my-python-display-python-buffer)
  1002. (define-key inferior-python-mode-map
  1003. (kbd "<up>") 'comint-previous-input)
  1004. (define-key inferior-python-mode-map
  1005. (kbd "<down>") 'comint-next-input))))
  1006. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1007. ;; GNU GLOBAL(gtags)
  1008. ;; http://uguisu.skr.jp/Windows/gtags.html
  1009. ;; http://eigyr.dip.jp/gtags.html
  1010. ;; http://cha.la.coocan.jp/doc/gnu_global.html
  1011. (let ((d "/opt/local/share/gtags/"))
  1012. (and (file-directory-p d)
  1013. (add-to-list 'load-path
  1014. d)))
  1015. (when (lazy-load-eval 'gtags '(gtags-mode))
  1016. (add-hook 'gtags-mode-hook
  1017. (lambda ()
  1018. (view-mode gtags-mode)
  1019. (setq gtags-select-buffer-single t)
  1020. ;; (local-set-key "\M-t" 'gtags-find-tag)
  1021. ;; (local-set-key "\M-r" 'gtags-find-rtag)
  1022. ;; (local-set-key "\M-s" 'gtags-find-symbol)
  1023. ;; (local-set-key "\C-t" 'gtags-pop-stack)
  1024. (define-key gtags-mode-map (kbd "C-x t h")
  1025. 'gtags-find-tag-from-here)
  1026. (define-key gtags-mode-map (kbd "C-x t t") 'gtags-find-tag)
  1027. (define-key gtags-mode-map (kbd "C-x t r") 'gtags-find-rtag)
  1028. (define-key gtags-mode-map (kbd "C-x t s") 'gtags-find-symbol)
  1029. (define-key gtags-mode-map (kbd "C-x t p") 'gtags-find-pattern)
  1030. (define-key gtags-mode-map (kbd "C-x t f") 'gtags-find-file)
  1031. (define-key gtags-mode-map (kbd "C-x t b") 'gtags-pop-stack) ;back
  1032. ))
  1033. (add-hook 'gtags-select-mode-hook
  1034. (lambda ()
  1035. (define-key gtags-select-mode-map (kbd "C-m") 'gtags-select-tag)
  1036. ))
  1037. )
  1038. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1039. ;; term mode
  1040. ;; (setq multi-term-program shell-file-name)
  1041. (and (fetch-library "http://www.emacswiki.org/emacs/download/multi-term.el"
  1042. t)
  1043. (lazy-load-eval 'multi-term)
  1044. (progn
  1045. (setq multi-term-switch-after-close nil)
  1046. (setq multi-term-dedicated-select-after-open-p t)
  1047. (setq multi-term-dedicated-window-height 20)))
  1048. (when (lazy-load-eval 'term '(term ansi-term))
  1049. (defun my-term-quit-or-send-raw ()
  1050. ""
  1051. (interactive)
  1052. (if (get-buffer-process (current-buffer))
  1053. (call-interactively 'term-send-raw)
  1054. (kill-buffer)))
  1055. ;; http://d.hatena.ne.jp/goinger/20100416/1271399150
  1056. ;; (setq term-ansi-default-program shell-file-name)
  1057. (add-hook 'term-setup-hook
  1058. (lambda ()
  1059. (setq term-display-table (make-display-table))))
  1060. (add-hook 'term-mode-hook
  1061. (lambda ()
  1062. (unless (memq (current-buffer)
  1063. (and (featurep 'multi-term)
  1064. ;; current buffer is not multi-term buffer
  1065. (multi-term-list)))
  1066. ;; (define-key term-raw-map "\C-q" 'move-beginning-of-line)
  1067. ;; (define-key term-raw-map "\C-r" 'term-send-raw)
  1068. ;; (define-key term-raw-map "\C-s" 'term-send-raw)
  1069. ;; (define-key term-raw-map "\C-f" 'forward-char)
  1070. ;; (define-key term-raw-map "\C-b" 'backward-char)
  1071. ;; (define-key term-raw-map "\C-t" 'set-mark-command)
  1072. (define-key term-raw-map
  1073. "\C-x" (lookup-key (current-global-map) "\C-x"))
  1074. (define-key term-raw-map
  1075. "\C-z" (lookup-key (current-global-map) "\C-z"))
  1076. )
  1077. ;; (define-key term-raw-map "\C-xl" 'term-line-mode)
  1078. ;; (define-key term-mode-map "\C-xc" 'term-char-mode)
  1079. (define-key term-raw-map (kbd "<up>") 'scroll-down-line)
  1080. (define-key term-raw-map (kbd "<down>") 'scroll-up-line)
  1081. (define-key term-raw-map (kbd "<right>") 'scroll-up)
  1082. (define-key term-raw-map (kbd "<left>") 'scroll-down)
  1083. (define-key term-raw-map (kbd "C-p") 'term-send-raw)
  1084. (define-key term-raw-map (kbd "C-n") 'term-send-raw)
  1085. (define-key term-raw-map "q" 'my-term-quit-or-send-raw)
  1086. ;; (define-key term-raw-map (kbd "ESC") 'term-send-raw)
  1087. (define-key term-raw-map [delete] 'term-send-raw)
  1088. (define-key term-raw-map (kbd "DEL") 'term-send-backspace)
  1089. (define-key term-raw-map "\C-y" 'term-paste)
  1090. (define-key term-raw-map
  1091. "\C-c" 'term-send-raw) ;; 'term-interrupt-subjob)
  1092. '(define-key term-mode-map (kbd "C-x C-q") 'term-pager-toggle)
  1093. ;; (dolist (key '("<up>" "<down>" "<right>" "<left>"))
  1094. ;; (define-key term-raw-map (read-kbd-macro key) 'term-send-raw))
  1095. ;; (define-key term-raw-map "\C-d" 'delete-char)
  1096. (set (make-local-variable 'scroll-margin) 0)
  1097. ;; (set (make-local-variable 'cua-enable-cua-keys) nil)
  1098. ;; (cua-mode 0)
  1099. ;; (and cua-mode
  1100. ;; (local-unset-key (kbd "C-c")))
  1101. ;; (define-key cua--prefix-override-keymap
  1102. ;;"\C-c" 'term-interrupt-subjob)
  1103. (set (make-local-variable 'hl-line-range-function)
  1104. (lambda ()
  1105. '(0 . 0)))
  1106. ))
  1107. ;; (add-hook 'term-exec-hook 'forward-char)
  1108. )
  1109. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1110. ;; buffer switching
  1111. (when (lazy-load-eval 'bs '(bs-show)
  1112. ;; (add-to-list 'bs-configurations
  1113. ;; '("processes" nil get-buffer-process ".*" nil nil))
  1114. (add-to-list 'bs-configurations
  1115. '("this-frame" nil (lambda (buf)
  1116. (memq buf (my-frame-buffer-get)))
  1117. ".*" nil nil))
  1118. (add-to-list 'bs-configurations
  1119. '("files-and-terminals" nil nil nil
  1120. (lambda (buf)
  1121. (and (bs-visits-non-file buf)
  1122. (save-excursion
  1123. (set-buffer buf)
  1124. (not (memq major-mode
  1125. '(term-mode
  1126. eshell-mode))))))))
  1127. ;; (setq bs-configurations (list
  1128. ;; '("processes" nil get-buffer-process ".*" nil nil)
  1129. ;; '("files-and-scratch" "^\\*scratch\\*$" nil nil
  1130. ;; bs-visits-non-file bs-sort-buffer-interns-are-last)))
  1131. )
  1132. ;; (global-set-key "\C-x\C-b" 'bs-show)
  1133. (defalias 'list-buffers 'bs-show)
  1134. (setq bs-default-configuration "files-and-terminals")
  1135. (setq bs-default-sort-name "by nothing")
  1136. (add-hook 'bs-mode-hook
  1137. (lambda ()
  1138. ;; (setq bs-default-configuration "files")
  1139. ;; (and bs--show-all
  1140. ;; (call-interactively 'bs-toggle-show-all))
  1141. (set (make-local-variable 'scroll-margin) 0))))
  1142. (iswitchb-mode 1)
  1143. (defun iswitchb-buffer-display-other-window ()
  1144. "Do iswitchb in other window."
  1145. (interactive)
  1146. (let ((iswitchb-default-method 'display))
  1147. (call-interactively 'iswitchb-buffer)))
  1148. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1149. ;; sdic
  1150. (when (lazy-load-eval 'sdic '(sdic-describe-word-at-point))
  1151. ;; (define-key my-prefix-map "\C-w" 'sdic-describe-word)
  1152. (define-key my-prefix-map "\C-t" 'sdic-describe-word-at-point-echo)
  1153. (defun sdic-describe-word-at-point-echo ()
  1154. ""
  1155. (interactive)
  1156. (save-window-excursion
  1157. (sdic-describe-word-at-point))
  1158. (save-excursion
  1159. (set-buffer sdic-buffer-name)
  1160. (message (buffer-substring (point-min)
  1161. (progn (goto-char (point-min))
  1162. (or (and (re-search-forward "^\\w"
  1163. nil
  1164. t
  1165. 4)
  1166. (progn (previous-line) t)
  1167. (point-at-eol))
  1168. (point-max)))))))
  1169. (setq sdic-eiwa-dictionary-list '((sdicf-client "/usr/share/dict/gene.sdic")))
  1170. (setq sdic-waei-dictionary-list
  1171. '((sdicf-client "/usr/share/dict/jedict.sdic" (add-keys-to-headword t))))
  1172. (setq sdic-disable-select-window t)
  1173. (setq sdic-window-height 7))
  1174. ;;;;;;;;;;;;;;;;;;;;;;;;
  1175. ;; ilookup
  1176. (when (fetch-library
  1177. "https://raw.github.com/10sr/emacs-lisp/master/ilookup.el"
  1178. t)
  1179. (lazy-load-eval 'ilookup
  1180. '(ilookup-open)
  1181. (setq ilookup-dict-alist
  1182. '(
  1183. ("en" . (lambda (word)
  1184. (shell-command-to-string
  1185. (format "sdcv -n -u dictd_www.dict.org_gcide '%s'"
  1186. word))))
  1187. ("ja" . (lambda (word)
  1188. (shell-command-to-string
  1189. (format "sdcv -n -u EJ-GENE95 -u jmdict-en-ja '%s'"
  1190. word))))
  1191. ("jaj" . (lambda (word)
  1192. (shell-command-to-string
  1193. (format "sdcv -n -u jmdict-en-ja '%s'"
  1194. word))))
  1195. ("jag" .
  1196. (lambda (word)
  1197. (with-temp-buffer
  1198. (insert (shell-command-to-string
  1199. (format "sdcv -n -u 'Genius English-Japanese' '%s'"
  1200. word)))
  1201. (html2text)
  1202. (buffer-substring (point-min)
  1203. (point-max)))))
  1204. ("alc" . (lambda (word)
  1205. (shell-command-to-string
  1206. (format "alc '%s' | head -n 20"
  1207. word))))
  1208. ("app" . (lambda (word)
  1209. (shell-command-to-string
  1210. (format "dict_app '%s'"
  1211. word))))
  1212. ;; letters broken
  1213. ("ms" .
  1214. (lambda (word)
  1215. (let ((url (concat
  1216. "http://api.microsofttranslator.com/V2/Ajax.svc/"
  1217. "Translate?appId=%s&text=%s&to=%s"))
  1218. (apikey "3C9778666C5BA4B406FFCBEE64EF478963039C51")
  1219. (target "ja")
  1220. (eword (url-hexify-string word)))
  1221. (with-current-buffer (url-retrieve-synchronously
  1222. (format url
  1223. apikey
  1224. eword
  1225. target))
  1226. (message "")
  1227. (goto-char (point-min))
  1228. (search-forward-regexp "^$"
  1229. nil
  1230. t)
  1231. (url-unhex-string (buffer-substring-no-properties
  1232. (point)
  1233. (point-max)))))))
  1234. ))
  1235. ;; (funcall (cdr (assoc "ms"
  1236. ;; ilookup-alist))
  1237. ;; "dictionary")
  1238. ;; (switch-to-buffer (url-retrieve-synchronously "http://api.microsofttranslator.com/V2/Ajax.svc/Translate?appId=3C9778666C5BA4B406FFCBEE64EF478963039C51&text=dictionary&to=ja"))
  1239. ;; (switch-to-buffer (url-retrieve-synchronously "http://google.com"))
  1240. (setq ilookup-default "ja")
  1241. (when (locate-library "google-translate")
  1242. (add-to-list 'ilookup-dict-alist
  1243. '("gt" .
  1244. (lambda (word)
  1245. (save-excursion
  1246. (google-translate-translate "auto"
  1247. "ja"
  1248. word))
  1249. (with-current-buffer "*Google Translate*"
  1250. (buffer-substring-no-properties (point-min)
  1251. (point-max)))))))
  1252. ))
  1253. (when (lazy-load-eval 'google-translate '(google-translate-translate
  1254. google-translate-at-point))
  1255. (setq google-translate-default-source-language "auto")
  1256. (setq google-translate-default-target-language "ja"))
  1257. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1258. ;; vc
  1259. ;; (require 'vc)
  1260. (setq vc-handled-backends '())
  1261. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1262. ;; gauche-mode
  1263. ;; http://d.hatena.ne.jp/kobapan/20090305/1236261804
  1264. ;; http://www.katch.ne.jp/~leque/software/repos/gauche-mode/gauche-mode.el
  1265. (when (and (fetch-library
  1266. "http://www.katch.ne.jp/~leque/software/repos/gauche-mode/gauche-mode.el"
  1267. t)
  1268. (lazy-load-eval 'gauche-mode '(gauche-mode run-scheme)))
  1269. (let ((s (executable-find "gosh")))
  1270. (setq scheme-program-name s
  1271. gauche-program-name s))
  1272. (defun run-gauche-other-window ()
  1273. "Run gauche on other window"
  1274. (interactive)
  1275. (switch-to-buffer-other-window
  1276. (get-buffer-create "*scheme*"))
  1277. (run-gauche))
  1278. (defun run-gauche ()
  1279. "run gauche"
  1280. (run-scheme gauche-program-name)
  1281. )
  1282. (defun scheme-send-buffer ()
  1283. ""
  1284. (interactive)
  1285. (scheme-send-region (point-min) (point-max))
  1286. (my-scheme-display-scheme-buffer)
  1287. )
  1288. (defun my-scheme-display-scheme-buffer ()
  1289. ""
  1290. (interactive)
  1291. (set-window-text-height (display-buffer scheme-buffer
  1292. t)
  1293. 7))
  1294. (add-hook 'scheme-mode-hook
  1295. (lambda ()
  1296. nil))
  1297. (add-hook 'inferior-scheme-mode-hook
  1298. (lambda ()
  1299. ;; (my-scheme-display-scheme-buffer)
  1300. ))
  1301. (setq auto-mode-alist
  1302. (cons '("\.gosh\\'" . gauche-mode) auto-mode-alist))
  1303. (setq auto-mode-alist
  1304. (cons '("\.gaucherc\\'" . gauche-mode) auto-mode-alist))
  1305. (add-hook 'gauche-mode-hook
  1306. (lambda ()
  1307. (define-key gauche-mode-map
  1308. (kbd "C-c C-z") 'run-gauche-other-window)
  1309. (define-key scheme-mode-map
  1310. (kbd "C-c C-c") 'scheme-send-buffer)
  1311. (define-key scheme-mode-map
  1312. (kbd "C-c C-b") 'my-scheme-display-scheme-buffer))))
  1313. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1314. ;; recentf-mode
  1315. (setq recentf-save-file (expand-file-name "~/.emacs.d/recentf")
  1316. recentf-max-menu-items 20
  1317. recentf-max-saved-items 30
  1318. recentf-show-file-shortcuts-flag nil)
  1319. (when (require 'recentf nil t)
  1320. (add-to-list 'recentf-exclude
  1321. (regexp-quote recentf-save-file))
  1322. (add-to-list 'recentf-exclude
  1323. (regexp-quote (expand-file-name user-emacs-directory)))
  1324. (define-key ctl-x-map (kbd "C-r") 'recentf-open-files)
  1325. (add-hook 'find-file-hook
  1326. 'recentf-save-list
  1327. t) ; save to file immediately after adding file to recentf list
  1328. (add-hook 'kill-emacs-hook
  1329. 'recentf-load-list)
  1330. ;;(run-with-idle-timer 5 t 'recentf-save-list)
  1331. ;; (add-hook 'find-file-hook
  1332. ;; (lambda ()
  1333. ;; (recentf-add-file default-directory)))
  1334. (and (fetch-library
  1335. "https://raw.github.com/10sr/emacs-lisp/master/recentf-show.el"
  1336. t)
  1337. (lazy-load-eval 'recentf-show)
  1338. (define-key ctl-x-map (kbd "C-r") 'recentf-show)
  1339. (add-hook 'recentf-show-before-listing-hook
  1340. 'recentf-load-list))
  1341. (recentf-mode 1)
  1342. (add-hook 'recentf-dialog-mode-hook
  1343. (lambda ()
  1344. ;; (recentf-save-list)
  1345. ;; (define-key recentf-dialog-mode-map (kbd "C-x C-f")
  1346. ;; 'my-recentf-cd-and-find-file)
  1347. (define-key recentf-dialog-mode-map (kbd "<up>") 'previous-line)
  1348. (define-key recentf-dialog-mode-map (kbd "<down>") 'next-line)
  1349. (define-key recentf-dialog-mode-map "p" 'previous-line)
  1350. (define-key recentf-dialog-mode-map "n" 'next-line)
  1351. (cd "~/"))))
  1352. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1353. ;; dired
  1354. (when (lazy-load-eval 'dired nil)
  1355. (defun my-dired-echo-file-head (arg)
  1356. ""
  1357. (interactive "P")
  1358. (let ((f (dired-get-filename)))
  1359. (message "%s"
  1360. (with-temp-buffer
  1361. (insert-file-contents f)
  1362. (buffer-substring-no-properties
  1363. (point-min)
  1364. (progn (goto-line (if arg
  1365. (prefix-numeric-value arg)
  1366. 10))
  1367. (point-at-eol)))))))
  1368. (defun my-dired-diff ()
  1369. ""
  1370. (interactive)
  1371. (let ((files (dired-get-marked-files nil nil nil t)))
  1372. (if (eq (car files)
  1373. t)
  1374. (diff (cadr files) (dired-get-filename))
  1375. (message "One files must be marked!"))))
  1376. (defun my-pop-to-buffer-erase-noselect (buffer-or-name)
  1377. "pop up buffer using `display-buffer' and return that buffer."
  1378. (let ((bf (get-buffer-create buffer-or-name)))
  1379. (with-current-buffer bf
  1380. (cd ".")
  1381. (erase-buffer))
  1382. (display-buffer bf)
  1383. bf))
  1384. (defun my-replace-nasi-none ()
  1385. ""
  1386. (save-excursion
  1387. (let ((buffer-read-only nil))
  1388. (goto-char (point-min))
  1389. (while (search-forward "なし" nil t)
  1390. (replace-match "none")))))
  1391. (defun dired-get-file-info ()
  1392. "dired get file info"
  1393. (interactive)
  1394. (let ((f (shell-quote-argument (dired-get-filename t))))
  1395. (if (file-directory-p f)
  1396. (progn
  1397. (message "Calculating disk usage...")
  1398. (shell-command (concat "du -hsD "
  1399. f)))
  1400. (shell-command (concat "file "
  1401. f)))))
  1402. (defun my-dired-scroll-up ()
  1403. ""
  1404. (interactive)
  1405. (my-dired-previous-line (- (window-height) 1)))
  1406. (defun my-dired-scroll-down ()
  1407. ""
  1408. (interactive)
  1409. (my-dired-next-line (- (window-height) 1)))
  1410. ;; (defun my-dired-forward-line (arg)
  1411. ;; ""
  1412. ;; (interactive "p"))
  1413. (defun my-dired-previous-line (arg)
  1414. ""
  1415. (interactive "p")
  1416. (if (> arg 0)
  1417. (progn
  1418. (if (eq (line-number-at-pos)
  1419. 1)
  1420. (goto-char (point-max))
  1421. (forward-line -1))
  1422. (my-dired-previous-line (if (or (dired-get-filename nil t)
  1423. (dired-get-subdir))
  1424. (- arg 1)
  1425. arg)))
  1426. (dired-move-to-filename)))
  1427. (defun my-dired-next-line (arg)
  1428. ""
  1429. (interactive "p")
  1430. (if (> arg 0)
  1431. (progn
  1432. (if (eq (point)
  1433. (point-max))
  1434. (goto-char (point-min))
  1435. (forward-line 1))
  1436. (my-dired-next-line (if (or (dired-get-filename nil t)
  1437. (dired-get-subdir))
  1438. (- arg 1)
  1439. arg)))
  1440. (dired-move-to-filename)))
  1441. (defun my-dired-print-current-dir-and-file ()
  1442. (message "%s %s"
  1443. default-directory
  1444. (buffer-substring-no-properties (point-at-bol)
  1445. (point-at-eol))))
  1446. (defun dired-do-execute-as-command ()
  1447. ""
  1448. (interactive)
  1449. (let ((file (dired-get-filename t)))
  1450. (if (file-executable-p file)
  1451. (start-process file nil file)
  1452. (when (y-or-n-p
  1453. "this file cant be executed. mark as executable and go? : ")
  1454. (set-file-modes file
  1455. (file-modes-symbolic-to-number "u+x" (file-modes file)))
  1456. (start-process file nil file)))))
  1457. ;;http://bach.istc.kobe-u.ac.jp/lect/tamlab/ubuntu/emacs.html
  1458. (defun my-dired-x-open ()
  1459. ""
  1460. (interactive)
  1461. (my-x-open (dired-get-filename t t)))
  1462. (if (eq window-system 'mac)
  1463. (setq dired-listing-switches "-lhF")
  1464. (setq dired-listing-switches "-lhF --time-style=long-iso")
  1465. )
  1466. (setq dired-listing-switches "-lhF")
  1467. (put 'dired-find-alternate-file 'disabled nil)
  1468. ;; when using dired-find-alternate-file
  1469. ;; reuse current dired buffer for the file to open
  1470. (setq dired-ls-F-marks-symlinks t)
  1471. (when (require 'ls-lisp nil t)
  1472. (setq ls-lisp-use-insert-directory-program nil) ; always use ls-lisp
  1473. (setq ls-lisp-dirs-first t)
  1474. (setq ls-lisp-use-localized-time-format t)
  1475. (setq ls-lisp-format-time-list
  1476. '("%Y-%m-%d %H:%M"
  1477. "%Y-%m-%d ")))
  1478. (setq dired-dwim-target t)
  1479. ;; (add-hook 'dired-after-readin-hook
  1480. ;; 'my-replace-nasi-none)
  1481. ;; (add-hook 'after-init-hook
  1482. ;; (lambda ()
  1483. ;; (dired ".")))
  1484. (add-hook 'dired-mode-hook
  1485. (lambda ()
  1486. (define-key dired-mode-map "o" 'my-dired-x-open)
  1487. (define-key dired-mode-map "i" 'dired-get-file-info)
  1488. (define-key dired-mode-map "f" 'find-file)
  1489. (define-key dired-mode-map "!" 'shell-command)
  1490. (define-key dired-mode-map "&" 'async-shell-command)
  1491. (define-key dired-mode-map "X" 'dired-do-async-shell-command)
  1492. (define-key dired-mode-map "=" 'my-dired-diff)
  1493. (define-key dired-mode-map "B" 'gtkbm-add-current-dir)
  1494. (define-key dired-mode-map "b" 'gtkbm)
  1495. (define-key dired-mode-map "h" 'my-dired-echo-file-head)
  1496. (define-key dired-mode-map "@" (lambda ()
  1497. (interactive) (my-x-open ".")))
  1498. (define-key dired-mode-map (kbd "TAB") 'other-window)
  1499. ;; (define-key dired-mode-map "P" 'my-dired-do-pack-or-unpack)
  1500. (define-key dired-mode-map "/" 'dired-isearch-filenames)
  1501. (define-key dired-mode-map (kbd "DEL") 'dired-up-directory)
  1502. (define-key dired-mode-map (kbd "C-h") 'dired-up-directory)
  1503. (substitute-key-definition 'dired-next-line
  1504. 'my-dired-next-line dired-mode-map)
  1505. (substitute-key-definition 'dired-previous-line
  1506. 'my-dired-previous-line dired-mode-map)
  1507. ;; (define-key dired-mode-map (kbd "C-p") 'my-dired-previous-line)
  1508. ;; (define-key dired-mode-map (kbd "p") 'my-dired-previous-line)
  1509. ;; (define-key dired-mode-map (kbd "C-n") 'my-dired-next-line)
  1510. ;; (define-key dired-mode-map (kbd "n") 'my-dired-next-line)
  1511. (define-key dired-mode-map (kbd "<left>") 'my-dired-scroll-up)
  1512. (define-key dired-mode-map (kbd "<right>") 'my-dired-scroll-down)
  1513. (define-key dired-mode-map (kbd "ESC p") 'my-dired-scroll-up)
  1514. (define-key dired-mode-map (kbd "ESC n") 'my-dired-scroll-down)
  1515. (let ((file "._Icon\015"))
  1516. (when nil (file-readable-p file)
  1517. (delete-file file)))))
  1518. (and (fetch-library "https://raw.github.com/10sr/emacs-lisp/master/pack.el"
  1519. t)
  1520. (lazy-load-eval 'pack '(dired-do-pack-or-unpack pack))
  1521. (add-hook 'dired-mode-hook
  1522. (lambda ()
  1523. (define-key dired-mode-map "P" 'dired-do-pack-or-unpack))))
  1524. (and (fetch-library
  1525. "https://raw.github.com/10sr/emacs-lisp/master/dired-list-all-mode.el"
  1526. t)
  1527. (lazy-load-eval 'dired-list-all-mode)
  1528. (setq dired-listing-switches "-lhF")
  1529. (add-hook 'dired-mode-hook
  1530. (lambda ()
  1531. (define-key dired-mode-map "a" 'dired-list-all-mode)
  1532. )))
  1533. ) ; when dired locate
  1534. ;; http://blog.livedoor.jp/tek_nishi/archives/4693204.html
  1535. (defun my-dired-toggle-mark()
  1536. (let ((cur (cond ((eq (following-char) dired-marker-char) ?\040)
  1537. (t dired-marker-char))))
  1538. (delete-char 1)
  1539. (insert cur)))
  1540. (defun my-dired-mark (arg)
  1541. "Toggle mark the current (or next ARG) files.
  1542. If on a subdir headerline, mark all its files except `.' and `..'.
  1543. Use \\[dired-unmark-all-files] to remove all marks
  1544. and \\[dired-unmark] on a subdir to remove the marks in
  1545. this subdir."
  1546. (interactive "P")
  1547. (if (dired-get-subdir)
  1548. (save-excursion (dired-mark-subdir-files))
  1549. (let ((inhibit-read-only t))
  1550. (dired-repeat-over-lines
  1551. (prefix-numeric-value arg)
  1552. 'my-dired-toggle-mark))))
  1553. (defun my-dired-mark-backward (arg)
  1554. "In Dired, move up lines and toggle mark there.
  1555. Optional prefix ARG says how many lines to unflag; default is one line."
  1556. (interactive "p")
  1557. (my-dired-mark (- arg)))
  1558. (add-hook 'dired-mode-hook
  1559. (lambda ()
  1560. (local-set-key (kbd "SPC") 'my-dired-mark)
  1561. (local-set-key (kbd "S-SPC") 'my-dired-mark-backward))
  1562. )
  1563. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1564. ;; eshell
  1565. (lazy-load-eval 'eshell nil
  1566. (defvar eshell-text-mode-map
  1567. (let ((map (make-sparse-keymap)))
  1568. (define-key map (kbd "C-x t") 'eshell-text-mode-toggle)
  1569. map))
  1570. (define-derived-mode eshell-text-mode text-mode
  1571. "Eshell-Text"
  1572. "Text-mode for Eshell."
  1573. nil)
  1574. (defun eshell-text-mode-toggle ()
  1575. "Toggle eshell-text-mode and eshell-mode."
  1576. (interactive)
  1577. (cond ((eq major-mode
  1578. 'eshell-text-mode)
  1579. (goto-char (point-max))
  1580. (eshell-mode))
  1581. ((eq major-mode
  1582. 'eshell-mode)
  1583. (eshell-text-mode))
  1584. (t
  1585. (message "Not in eshell buffer")
  1586. nil)))
  1587. (defun my-eshell-backward-delete-char ()
  1588. (interactive)
  1589. (when (< (save-excursion
  1590. (eshell-bol)
  1591. (point))
  1592. (point))
  1593. (backward-delete-char 1)))
  1594. (defun my-file-owner-p (file)
  1595. "t if FILE is owned by me."
  1596. (eq (user-uid) (nth 2 (file-attributes file))))
  1597. "http://www.bookshelf.jp/pukiwiki/pukiwiki.php\
  1598. ?Eshell%A4%F2%BB%C8%A4%A4%A4%B3%A4%CA%A4%B9"
  1599. ;; ;; written by Stefan Reichoer <reichoer@web.de>
  1600. ;; (defun eshell/less (&rest args)
  1601. ;; "Invoke `view-file' on the file.
  1602. ;; \"less +42 foo\" also goes to line 42 in the buffer."
  1603. ;; (if args
  1604. ;; (while args
  1605. ;; (if (string-match "\\`\\+\\([0-9]+\\)\\'" (car args))
  1606. ;; (let* ((line (string-to-number (match-string 1 (pop args))))
  1607. ;; (file (pop args)))
  1608. ;; (view-file file)
  1609. ;; (goto-line line))
  1610. ;; (view-file (pop args))))))
  1611. (defun eshell/o (&optional file)
  1612. (my-x-open (or file ".")))
  1613. ;; (defun eshell/vi (&rest args)
  1614. ;; "Invoke `find-file' on the file.
  1615. ;; \"vi +42 foo\" also goes to line 42 in the buffer."
  1616. ;; (while args
  1617. ;; (if (string-match "\\`\\+\\([0-9]+\\)\\'" (car args))
  1618. ;; (let* ((line (string-to-number (match-string 1 (pop args))))
  1619. ;; (file (pop args)))
  1620. ;; (find-file file)
  1621. ;; (goto-line line))
  1622. ;; (find-file (pop args)))))
  1623. (defun eshell/clear ()
  1624. "Clear the current buffer, leaving one prompt at the top."
  1625. (interactive)
  1626. (let ((inhibit-read-only t))
  1627. (erase-buffer)))
  1628. (defun eshell-clear ()
  1629. (interactive)
  1630. (let ((inhibit-read-only t))
  1631. (erase-buffer)
  1632. (insert (funcall eshell-prompt-function))))
  1633. (defun eshell/d (&optional dirname switches)
  1634. "if first arg is omitted open current directory."
  1635. (dired (or dirname ".") switches))
  1636. (defun eshell/v ()
  1637. (view-mode 1))
  1638. ;; (defun eshell/aaa (&rest args)
  1639. ;; (message "%S"
  1640. ;; args))
  1641. (defvar eshell/git-cat-command
  1642. nil
  1643. "List of git commands that cat just return strings as results.")
  1644. (setq eshell/git-cat-command
  1645. '("status" "st" "b" "branch" "ls" "ls-files")
  1646. )
  1647. (defun eshell/git (&rest args)
  1648. (if (member (car args)
  1649. eshell/git-cat-command)
  1650. (shell-command-to-string (mapconcat 'shell-quote-argument
  1651. `("git"
  1652. "-c"
  1653. "color.ui=always"
  1654. ,@args)
  1655. " "))
  1656. ;; (eshell-git-shell-command-to-string args)
  1657. (if (require 'git-command nil t)
  1658. (git-command (mapconcat 'shell-quote-argument
  1659. args
  1660. " "))
  1661. (apply 'eshell-exec-visual "git" args))))
  1662. ;; (defun eshell-git-shell-command-to-string (args)
  1663. ;; "Return string of output of ARGS."
  1664. ;; (let ((sargs (mapconcat 'shell-quote-argument
  1665. ;; args
  1666. ;; " ")))
  1667. ;; (if (require 'ansi-color nil t)
  1668. ;; (identity
  1669. ;; (shell-command-to-string (concat "git "
  1670. ;; "-c color.ui=always "
  1671. ;; sargs)))
  1672. ;; (shell-command-to-string (concat "git "
  1673. ;; sargs)))))
  1674. (defalias 'eshell/g 'eshell/git)
  1675. (defalias 'eshell/: 'ignore)
  1676. (defalias 'eshell/type 'eshell/which)
  1677. ;; (defalias 'eshell/vim 'eshell/vi)
  1678. (defalias 'eshell/ff 'find-file)
  1679. (defalias 'eshell/q 'eshell/exit)
  1680. (defun eshell-goto-prompt ()
  1681. ""
  1682. (interactive)
  1683. (goto-char (point-max)))
  1684. (defun eshell-delete-char-or-logout (n)
  1685. (interactive "p")
  1686. (if (equal (eshell-get-old-input)
  1687. "")
  1688. (progn
  1689. (insert "exit")
  1690. (eshell-send-input))
  1691. (delete-char n)))
  1692. (defun eshell-kill-input ()
  1693. (interactive)
  1694. (delete-region (point)
  1695. (progn (eshell-bol)
  1696. (point))))
  1697. (defalias 'eshell/logout 'eshell/exit)
  1698. (defun eshell-cd-default-directory (&optional eshell-buffer-or-name)
  1699. "open eshell and change wd
  1700. if arg given, use that eshell buffer, otherwise make new eshell buffer."
  1701. (interactive)
  1702. (let ((dir (expand-file-name default-directory)))
  1703. (switch-to-buffer (or eshell-buffer-or-name
  1704. (eshell t)))
  1705. (unless (equal dir (expand-file-name default-directory))
  1706. ;; (cd dir)
  1707. ;; (eshell-interactive-print (concat "cd " dir "\n"))
  1708. ;; (eshell-emit-prompt)
  1709. (goto-char (point-max))
  1710. (eshell-kill-input)
  1711. (insert "cd " dir)
  1712. (eshell-send-input))))
  1713. (defadvice eshell-next-matching-input-from-input
  1714. ;; do not cycle history
  1715. (around eshell-history-do-not-cycle activate)
  1716. (if (= 0
  1717. (or eshell-history-index
  1718. 0))
  1719. (progn
  1720. (delete-region eshell-last-output-end (point))
  1721. (insert-and-inherit eshell-matching-input-from-input-string)
  1722. (setq eshell-history-index nil))
  1723. ad-do-it))
  1724. (setq eshell-directory-name "~/.emacs.d/eshell/")
  1725. (setq eshell-term-name "eterm-color")
  1726. (setq eshell-scroll-to-bottom-on-input t)
  1727. (setq eshell-cmpl-ignore-case t)
  1728. (setq eshell-cmpl-cycle-completions nil)
  1729. (setq eshell-highlight-prompt nil)
  1730. (setq eshell-ls-initial-args '("-hCFG"
  1731. "--color=auto"
  1732. "--time-style=long-iso")) ; "-hF")
  1733. (setq eshell-prompt-function
  1734. 'my-eshell-prompt-function)
  1735. (defun my-eshell-prompt-function ()
  1736. (with-temp-buffer
  1737. (let (p1 p2 p3 p4)
  1738. (insert ":: [")
  1739. (setq p1 (point))
  1740. (insert user-login-name
  1741. "@"
  1742. (car (split-string system-name
  1743. "\\."))
  1744. )
  1745. (setq p2 (point))
  1746. (insert ":")
  1747. (setq p3 (point))
  1748. (insert (abbreviate-file-name default-directory))
  1749. (setq p4 (point))
  1750. (insert "]")
  1751. (insert "\n:: ")
  1752. (unless (eq 0
  1753. eshell-last-command-status)
  1754. (insert (format "[STATUS:%d] "
  1755. eshell-last-command-status)))
  1756. (insert (if (= (user-uid)
  1757. 0)
  1758. "# "
  1759. "$ "))
  1760. (add-text-properties p1
  1761. p2
  1762. '(face underline))
  1763. (add-text-properties p3
  1764. p4
  1765. '(face underline))
  1766. (buffer-substring (point-min)
  1767. (point-max)))))
  1768. (add-hook 'eshell-mode-hook
  1769. (lambda ()
  1770. ;; (define-key eshell-mode-map (kbd "C-x C-x") (lambda ()
  1771. ;; (interactive)
  1772. ;; (switch-to-buffer (other-buffer))))
  1773. ;; (define-key eshell-mode-map (kbd "C-g") (lambda ()
  1774. ;; (interactive)
  1775. ;; (eshell-goto-prompt)
  1776. ;; (keyboard-quit)))
  1777. (define-key eshell-mode-map (kbd "C-x t")
  1778. 'eshell-text-mode-toggle)
  1779. (define-key eshell-mode-map (kbd "C-u")
  1780. 'eshell-kill-input)
  1781. (define-key eshell-mode-map (kbd "C-d")
  1782. 'eshell-delete-char-or-logout)
  1783. ;; (define-key eshell-mode-map (kbd "C-l")
  1784. ;; 'eshell-clear)
  1785. (define-key eshell-mode-map (kbd "DEL")
  1786. 'my-eshell-backward-delete-char)
  1787. (define-key eshell-mode-map
  1788. (kbd "C-p") 'eshell-previous-matching-input-from-input)
  1789. (define-key eshell-mode-map
  1790. (kbd "C-n") 'eshell-next-matching-input-from-input)
  1791. (apply 'eshell/addpath exec-path)
  1792. (set (make-local-variable 'scroll-margin) 0)
  1793. ;; (eshell/export "GIT_PAGER=")
  1794. ;; (eshell/export "GIT_EDITOR=")
  1795. (eshell/export "LC_MESSAGES=C")
  1796. (switch-to-buffer (current-buffer)) ; move buffer top of list
  1797. (set (make-local-variable 'hl-line-range-function)
  1798. (lambda ()
  1799. '(0 . 0)))
  1800. (add-to-list 'eshell-virtual-targets
  1801. '("/dev/less"
  1802. (lambda (str)
  1803. (if str
  1804. (with-current-buffer nil)))
  1805. nil))
  1806. ))
  1807. (add-hook 'eshell-mode-hook
  1808. (lambda ()
  1809. (add-to-list 'eshell-visual-commands "vim")
  1810. ;; (add-to-list 'eshell-visual-commands "git")
  1811. (add-to-list 'eshell-output-filter-functions
  1812. 'eshell-truncate-buffer)
  1813. (mapcar (lambda (alias)
  1814. (add-to-list 'eshell-command-aliases-list
  1815. alias))
  1816. '(
  1817. ; ("ll" "ls -l $*")
  1818. ; ("la" "ls -a $*")
  1819. ; ("lla" "ls -al $*")
  1820. ("eless"
  1821. (concat "cat >>> (with-current-buffer "
  1822. "(get-buffer-create \"*eshell output\") "
  1823. "(erase-buffer) "
  1824. "(setq buffer-read-only nil) "
  1825. "(current-buffer)) "
  1826. "(view-buffer (get-buffer \"*eshell output*\"))")
  1827. ))
  1828. )))
  1829. ) ; eval after load eshell
  1830. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1831. ;; frame buffer
  1832. ;; todo: work well when opening files already opened on another window
  1833. (add-hook 'after-make-frame-functions
  1834. (lambda (f)
  1835. (set-window-buffer (frame-selected-window f)
  1836. "*Messages*")))
  1837. (defun make-frame-command-with-name (name)
  1838. "Make frame with NAME specified."
  1839. (interactive "sName for new frame: ")
  1840. (set-frame-parameter (make-frame-command)
  1841. 'name
  1842. name))
  1843. (defvar my-frame-buffer-plist nil)
  1844. (defun my-frame-buffer-add (&optional buf frame)
  1845. "Add BUF to buffer list for FRAME."
  1846. (setq my-frame-buffer-plist
  1847. (plist-put my-frame-buffer-plist
  1848. (or frame
  1849. (selected-frame))
  1850. (let ((lst (my-frame-buffer-get frame)))
  1851. (if lst
  1852. (add-to-list 'lst
  1853. (or buf
  1854. (current-buffer)))
  1855. (list (or buf
  1856. (current-buffer))))))))
  1857. (defun my-frame-buffer-remove (&optional buf frame)
  1858. "Remove BUF from bufferlist for FRAME."
  1859. (setq my-frame-buffer-plist
  1860. (plist-put my-frame-buffer-plist
  1861. (or frame
  1862. (selected-frame))
  1863. (delq (or buf
  1864. (current-buffer))
  1865. (my-frame-buffer-get frame)))))
  1866. (defun my-frame-buffer-get (&optional frame)
  1867. "Get buffer list for FRAME."
  1868. (plist-get my-frame-buffer-plist
  1869. (or frame
  1870. (selected-frame))))
  1871. (defun my-frame-buffer-kill-all-buffer (&optional frame)
  1872. "Kill all buffer of FRAME."
  1873. (mapcar 'kill-buffer
  1874. (my-frame-buffer-get frame)))
  1875. (add-hook 'find-file-hook
  1876. 'my-frame-buffer-add)
  1877. ;; (add-hook 'term-mode-hook
  1878. ;; 'my-frame-buffer-add)
  1879. (add-hook 'eshell-mode-hook
  1880. 'my-frame-buffer-add)
  1881. (add-hook 'Man-mode-hook
  1882. 'my-frame-buffer-add)
  1883. (add-hook 'kill-buffer-hook
  1884. 'my-frame-buffer-remove)
  1885. (add-hook 'delete-frame-functions
  1886. 'my-frame-buffer-kill-all-buffer)
  1887. (defvar my-desktop-terminal "roxterm")
  1888. (defun my-execute-terminal ()
  1889. "Invole terminal program."
  1890. (interactive)
  1891. (if (and (or (eq system-type 'windows-nt)
  1892. window-system)
  1893. my-desktop-terminal
  1894. )
  1895. (let ((process-environment (cons "TERM=xterm" process-environment)))
  1896. (start-process "terminal"
  1897. nil
  1898. my-desktop-terminal))
  1899. (my-term)))
  1900. (defun my-delete-frame-or-kill-emacs ()
  1901. "Delete frame when opening multiple frame, kill Emacs when only one."
  1902. (interactive)
  1903. (if (eq 1
  1904. (length (frame-list)))
  1905. (save-buffers-kill-emacs)
  1906. (delete-frame)))
  1907. ;; (define-key my-prefix-map (kbd "C-s") 'my-execute-terminal)
  1908. (define-key my-prefix-map (kbd "C-f") 'make-frame-command-with-name)
  1909. (global-set-key (kbd "C-x C-c") 'my-delete-frame-or-kill-emacs)
  1910. (define-key my-prefix-map (kbd "C-x C-c") 'save-buffers-kill-emacs)
  1911. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1912. ;; my-term
  1913. (defvar my-term nil
  1914. "My terminal buffer.")
  1915. (defvar my-term-function nil
  1916. "Function to create terminal buffer.
  1917. This function accept no argument and return newly created buffer of terminal.")
  1918. (defun my-term (&optional arg)
  1919. "Open terminal buffer and return that buffer.
  1920. ARG is ignored."
  1921. (interactive "P")
  1922. (if (and my-term
  1923. (buffer-name my-term))
  1924. (pop-to-buffer my-term)
  1925. (setq my-term
  1926. (save-window-excursion
  1927. (funcall my-term-function)))
  1928. (and my-term
  1929. (my-term))))
  1930. ;; (setq my-term-function
  1931. ;; (lambda ()
  1932. ;; (if (eq system-type 'windows-nt)
  1933. ;; (eshell)
  1934. ;; (if (require 'multi-term nil t)
  1935. ;; (multi-term)
  1936. ;; (ansi-term shell-file-name)))))
  1937. (setq my-term-function 'eshell)
  1938. (define-key my-prefix-map (kbd "C-s") 'my-term)
  1939. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1940. ;; x open
  1941. (defvar my-filer nil)
  1942. (setq my-filer (or (executable-find "pcmanfm")
  1943. (executable-find "nautilus")))
  1944. (defun my-x-open (file)
  1945. "open FILE."
  1946. (interactive "FOpen File: ")
  1947. (setq file (expand-file-name file))
  1948. (message "Opening %s..." file)
  1949. (cond ((eq system-type 'windows-nt)
  1950. (call-process "cmd.exe" nil 0 nil
  1951. "/c" "start" "" (convert-standard-filename file)))
  1952. ((eq system-type 'darwin)
  1953. (call-process "open" nil 0 nil file))
  1954. ((getenv "DISPLAY")
  1955. (call-process (or my-filer "xdg-open") nil 0 nil file))
  1956. (t
  1957. (find-file file))
  1958. )
  1959. ;; (recentf-add-file file)
  1960. (message "Opening %s...done" file))
  1961. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1962. ;; misc funcs
  1963. (defun memo (&optional dir)
  1964. "Open memo.txt in DIR."
  1965. (interactive)
  1966. (pop-to-buffer (find-file-noselect (concat (if dir
  1967. (file-name-as-directory dir)
  1968. "")
  1969. "memo.txt"))))
  1970. (defvar my-rgrep-alist
  1971. `(
  1972. ;; the silver searcher
  1973. ("ag"
  1974. (executable-find "ag")
  1975. "ag --nocolor --nogroup --nopager ")
  1976. ;; ack
  1977. ("ack"
  1978. (executable-find "ack")
  1979. "ack --nocolor --nogroup --nopager ")
  1980. ;; gnu global
  1981. ("global"
  1982. (and (require 'gtags nil t)
  1983. (executable-find "global")
  1984. (gtags-get-rootpath))
  1985. "global --result grep ")
  1986. ;; git grep
  1987. ("gitgrep"
  1988. (eq 0
  1989. (shell-command "git rev-parse --git-dir"))
  1990. "git --no-pager -c color.grep=false grep -nH -e ")
  1991. ;; grep
  1992. ("grep"
  1993. t
  1994. ,(concat "find . "
  1995. "-path '*/.git' -prune -o "
  1996. "-path '*/.svn' -prune -o "
  1997. "-type f -print0 | "
  1998. "xargs -0 grep -nH -e "))
  1999. )
  2000. "Alist of rgrep command.
  2001. Each element is in the form like (NAME SEXP COMMAND), where SEXP returns the
  2002. condition to choose COMMAND when evaluated.")
  2003. (defvar my-rgrep-default nil
  2004. "Default command name for my-rgrep.")
  2005. (defun my-rgrep-grep-command (&optional name alist)
  2006. "Return recursive grep command for current directory or nil.
  2007. If NAME is given, use that without testing.
  2008. Commands are searched from ALIST."
  2009. (if alist
  2010. (if name
  2011. ;; if name is given search that from alist and return the command
  2012. (nth 2 (assoc name
  2013. alist))
  2014. ;; if name is not given try test in 1th elem
  2015. (let ((car (car alist))
  2016. (cdr (cdr alist)))
  2017. (if (eval (nth 1 car))
  2018. ;; if the condition is true return the command
  2019. (nth 2 car)
  2020. ;; try next one
  2021. (and cdr
  2022. (my-rgrep-grep-command name cdr)))))
  2023. ;; if alist is not given set default value
  2024. (my-rgrep-grep-command name my-rgrep-alist)))
  2025. (my-rgrep-grep-command "ag" nil)
  2026. (defun my-rgrep (command-args)
  2027. "My recursive grep. Run COMMAND-ARGS."
  2028. (interactive (let ((cmd (my-rgrep-grep-command my-rgrep-default
  2029. nil)))
  2030. (if cmd
  2031. (list (read-shell-command "grep command: "
  2032. cmd
  2033. 'grep-find-history))
  2034. (error "my-rgrep: Command for rgrep not found")
  2035. )))
  2036. (compilation-start command-args
  2037. 'grep-mode))
  2038. ;; (defun my-rgrep-symbol-at-point (command-args)
  2039. ;; "My recursive grep. Run COMMAND-ARGS."
  2040. ;; (interactive (list (read-shell-command "grep command: "
  2041. ;; (concat (my-rgrep-grep-command)
  2042. ;; " "
  2043. ;; (thing-at-point 'symbol))
  2044. ;; 'grep-find-history)))
  2045. ;; (compilation-start command-args
  2046. ;; 'grep-mode))
  2047. (defun my-rgrep-ack ()
  2048. "My recursive grep by ack."
  2049. (interactive)
  2050. (let ((my-rgrep-default "ack"))
  2051. (if (called-interactively-p 'any)
  2052. (call-interactively 'my-rgrep)
  2053. (error "Not intended to be called noninteractively. Use `my-rgrep'"))))
  2054. (defun my-rgrep-ag ()
  2055. "My recursive grep by ack."
  2056. (interactive)
  2057. (let ((my-rgrep-default "ag"))
  2058. (if (called-interactively-p 'any)
  2059. (call-interactively 'my-rgrep)
  2060. (error "Not intended to be called noninteractively. Use `my-rgrep'"))))
  2061. (defun my-rgrep-gitgrep ()
  2062. "My recursive grep by ack."
  2063. (interactive)
  2064. (let ((my-rgrep-default "gitgrep"))
  2065. (if (called-interactively-p 'any)
  2066. (call-interactively 'my-rgrep)
  2067. (error "Not intended to be called noninteractively. Use `my-rgrep'"))))
  2068. (defun my-rgrep-grep ()
  2069. "My recursive grep by ack."
  2070. (interactive)
  2071. (let ((my-rgrep-default "grep"))
  2072. (if (called-interactively-p 'any)
  2073. (call-interactively 'my-rgrep)
  2074. (error "Not intended to be called noninteractively. Use `my-rgrep'"))))
  2075. (defun my-rgrep-global ()
  2076. "My recursive grep by ack."
  2077. (interactive)
  2078. (let ((my-rgrep-default "global"))
  2079. (if (called-interactively-p 'any)
  2080. (call-interactively 'my-rgrep)
  2081. (error "Not intended to be called noninteractively. Use `my-rgrep'"))))
  2082. (define-key ctl-x-map "s" 'my-rgrep)
  2083. ;; (defun make ()
  2084. ;; "Run \"make -k\" in current directory."
  2085. ;; (interactive)
  2086. ;; (compile "make -k"))
  2087. (defalias 'make 'compile)
  2088. (defvar sed-in-place-history nil
  2089. "History of `sed-in-place'.")
  2090. (defvar sed-in-place-command "sed --in-place=.bak -e")
  2091. (defun sed-in-place (command)
  2092. "Issue sed in place COMMAND."
  2093. (interactive (list (read-shell-command "sed in place: "
  2094. (concat sed-in-place-command " ")
  2095. 'sed-in-place-history)))
  2096. (shell-command command
  2097. "*sed in place*"))
  2098. (defun dired-do-sed-in-place (&optional arg)
  2099. "Issue sed in place dired. If ARG is given, use the next ARG files."
  2100. (interactive "p")
  2101. (require 'dired-aux)
  2102. (let* ((files (dired-get-marked-files t arg))
  2103. (expr (dired-mark-read-string "Run sed-in-place for %s: "
  2104. nil
  2105. 'sed-in-place
  2106. arg
  2107. files)))
  2108. (if (equal expr
  2109. "")
  2110. (error "No expression specified")
  2111. (shell-command (concat sed-in-place-command
  2112. " '"
  2113. expr
  2114. "' "
  2115. (mapconcat 'shell-quote-argument
  2116. files
  2117. " "))
  2118. "*sed in place*"))))
  2119. (defun dir-show (&optional dir)
  2120. "Show DIR list."
  2121. (interactive)
  2122. (let ((bf (get-buffer-create "*dir show*"))
  2123. (list-directory-brief-switches "-C"))
  2124. (with-current-buffer bf
  2125. (list-directory (or nil
  2126. default-directory)
  2127. nil))
  2128. ))
  2129. (defun my-convmv-sjis2utf8-test ()
  2130. "Run `convmv -r -f sjis -t utf8 *'.
  2131. this is test, does not rename files."
  2132. (interactive)
  2133. (shell-command "convmv -r -f sjis -t utf8 *"))
  2134. (defun my-convmv-sjis2utf8-notest ()
  2135. "Run `convmv -r -f sjis -t utf8 * --notest'."
  2136. (interactive)
  2137. (shell-command "convmv -r -f sjis -t utf8 * --notest"))
  2138. (defun kill-ring-save-buffer-file-name ()
  2139. "Get current filename."
  2140. (interactive)
  2141. (let ((file buffer-file-name))
  2142. (if file
  2143. (progn (kill-new file)
  2144. (message file))
  2145. (message "not visiting file."))))
  2146. (defvar kill-ring-buffer-name "*kill-ring*"
  2147. "Buffer name for `kill-ring-buffer'.")
  2148. (defun open-kill-ring-buffer ()
  2149. "Open kill- ring buffer."
  2150. (interactive)
  2151. (pop-to-buffer
  2152. (with-current-buffer (get-buffer-create kill-ring-buffer-name)
  2153. (erase-buffer)
  2154. (yank)
  2155. (text-mode)
  2156. (current-local-map)
  2157. (goto-char (point-min))
  2158. (yank)
  2159. (current-buffer))))
  2160. (defun set-terminal-header (string)
  2161. "Set terminal header STRING."
  2162. (let ((savepos "\033[s")
  2163. (restorepos "\033[u")
  2164. (movecursor "\033[0;%dH")
  2165. (inverse "\033[7m")
  2166. (restorecolor "\033[0m")
  2167. (cols (frame-parameter nil 'width))
  2168. (length (length string)))
  2169. ;; (redraw-frame (selected-frame))
  2170. (send-string-to-terminal (concat savepos
  2171. (format movecursor
  2172. (1+ (- cols length)))
  2173. inverse
  2174. string
  2175. restorecolor
  2176. restorepos))
  2177. ))
  2178. (defun my-set-terminal-header ()
  2179. "Set terminal header."
  2180. (set-terminal-header (concat " "
  2181. user-login-name
  2182. "@"
  2183. (car (split-string system-name
  2184. "\\."))
  2185. " "
  2186. (format-time-string "%Y/%m/%d %T %z")
  2187. " ")))
  2188. ;; (run-with-timer
  2189. ;; 0.1
  2190. ;; 1
  2191. ;; 'my-set-terminal-header)
  2192. ;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  2193. ;; ;; savage emacs
  2194. ;; ;; when enabled emacs fails to complete
  2195. ;; ;; http://e-arrows.sakura.ne.jp/2010/05/emacs-should-be-more-savage.html
  2196. ;; (defadvice message (before message-for-stupid (arg &rest arg2) activate)
  2197. ;; (setq arg
  2198. ;; (concat arg
  2199. ;; (if (eq nil
  2200. ;; (string-match "\\. *$"
  2201. ;; arg))
  2202. ;; ".")
  2203. ;; " Stupid!")))
  2204. (defvar info-in-prompt
  2205. nil
  2206. "System info in the form of \"[user@host] \".")
  2207. (setq info-in-prompt
  2208. (concat "["
  2209. user-login-name
  2210. "@"
  2211. (car (split-string system-name
  2212. "\\."))
  2213. "]"))
  2214. (defun my-real-function-subr-p (function)
  2215. "Return t if FUNCTION is a built-in function even if it is advised."
  2216. (let* ((advised (and (symbolp function)
  2217. (featurep 'advice)
  2218. (ad-get-advice-info function)))
  2219. (real-function
  2220. (or (and advised (let ((origname (cdr (assq 'origname advised))))
  2221. (and (fboundp origname)
  2222. origname)))
  2223. function))
  2224. (def (if (symbolp real-function)
  2225. (symbol-function real-function)
  2226. function)))
  2227. (subrp def)))
  2228. ;; (my-real-function-subr-p 'my-real-function-subr-p)
  2229. ;; (defadvice read-from-minibuffer (before info-in-prompt activate)
  2230. ;; "Show system info when use `read-from-minibuffer'."
  2231. ;; (ad-set-arg 0
  2232. ;; (concat my-system-info
  2233. ;; (ad-get-arg 0))))
  2234. ;; (defadvice read-string (before info-in-prompt activate)
  2235. ;; "Show system info when use `read-string'."
  2236. ;; (ad-set-arg 0
  2237. ;; (concat my-system-info
  2238. ;; (ad-get-arg 0))))
  2239. ;; (when (< emacs-major-version 24)
  2240. ;; (defadvice completing-read (before info-in-prompt activate)
  2241. ;; "Show system info when use `completing-read'."
  2242. ;; (ad-set-arg 0
  2243. ;; (concat my-system-info
  2244. ;; (ad-get-arg 0)))))
  2245. (defmacro info-in-prompt-set (&rest functions)
  2246. "Set info-in-prompt advices for FUNCTIONS."
  2247. `(progn
  2248. ,@(mapcar (lambda (f)
  2249. `(defadvice ,f (before info-in-prompt activate)
  2250. "Show info in prompt."
  2251. (let ((orig (ad-get-arg 0)))
  2252. (unless (string-match-p (regexp-quote info-in-prompt)
  2253. orig)
  2254. (ad-set-arg 0
  2255. (concat info-in-prompt
  2256. " "
  2257. orig))))))
  2258. functions)))
  2259. (info-in-prompt-set read-from-minibuffer
  2260. read-string
  2261. completing-read)
  2262. ;;; emacs.el ends here