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.
 
 
 
 
 
 

3083 regels
103 KiB

  1. ;;; emacs.el --- 10sr emacs initialization
  2. ;;; Code:
  3. ;; SETUP_LOAD: (load "bytecomp") ;; Required for WSL environment
  4. ;; SETUP_LOAD: (let ((file "DOTFILES_DIR/emacs.el"))
  5. ;; SETUP_LOAD: (and (file-readable-p file)
  6. ;; SETUP_LOAD: (byte-recompile-file file nil 0 t)))
  7. ;; TODO: Use custom-set-variables in place of set-variable
  8. (setq debug-on-error t)
  9. ;; make directories
  10. (unless (file-directory-p (expand-file-name user-emacs-directory))
  11. (make-directory (expand-file-name user-emacs-directory)))
  12. ;; Custom file
  13. (setq custom-file (expand-file-name "custom.el" user-emacs-directory))
  14. (when (file-readable-p custom-file)
  15. (load custom-file))
  16. (require 'cl-lib)
  17. (require 'simple)
  18. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  19. ;; Some macros for internals
  20. (defvar after-first-visit-hook nil
  21. "Run only once at the first visit of file.")
  22. (defvar after-first-visit-hook--done nil
  23. "Non-nil when `after-first-visit-hook' has already been called.")
  24. (defun after-first-visit-hook-run ()
  25. "Run `after-first-visit-hook' and clear its config."
  26. (when (not after-first-visit-hook--done)
  27. (run-hooks 'after-first-visit-hook))
  28. (setq after-first-visit-hook--done t)
  29. (remove-hook 'find-file-hook
  30. 'after-first-visit-hook-run))
  31. (add-hook 'find-file-hook
  32. 'after-first-visit-hook-run)
  33. (defmacro eval-after-init (&rest body)
  34. "If `after-init-hook' has been run, run BODY immediately.
  35. Otherwize hook it."
  36. (declare (indent 0) (debug t))
  37. `(if after-init-time
  38. ;; Currently after-init-hook is run just after setting after-init-hook
  39. (progn
  40. ,@body)
  41. (add-hook 'after-init-hook
  42. (lambda ()
  43. ,@body))))
  44. ;; (defmacro safe-require-or-eval (feature)
  45. ;; "Require FEATURE if available.
  46. ;; At compile time the feature will be loaded immediately."
  47. ;; `(eval-and-compile
  48. ;; (message "safe-require-or-eval: Trying to require %s" ,feature)
  49. ;; (require ,feature nil t)))
  50. ;; (defmacro autoload-eval-lazily (feature &optional functions &rest body)
  51. ;; "Define autoloading FEATURE that defines FUNCTIONS.
  52. ;; FEATURE is a symbol. FUNCTIONS is a list of symbols. If FUNCTIONS is nil,
  53. ;; the function same as FEATURE is defined as autoloaded function. BODY is passed
  54. ;; to `eval-after-load'.
  55. ;; After this macro is expanded, this returns the path to library if FEATURE
  56. ;; found, otherwise returns nil."
  57. ;; (declare (indent 2) (debug t))
  58. ;; (let* ((libname (symbol-name (eval feature)))
  59. ;; (libpath (locate-library libname)))
  60. ;; `(progn
  61. ;; (when (locate-library ,libname)
  62. ;; ,@(mapcar (lambda (f)
  63. ;; `(unless (fboundp ',f)
  64. ;; (progn
  65. ;; (message "Autoloaded function `%S' defined (%s)"
  66. ;; (quote ,f)
  67. ;; ,libpath)
  68. ;; (autoload (quote ,f)
  69. ;; ,libname
  70. ;; ,(concat "Autoloaded function defined in \""
  71. ;; libpath
  72. ;; "\".")
  73. ;; t))))
  74. ;; (or (eval functions)
  75. ;; `(,(eval feature)))))
  76. ;; (eval-after-load ,feature
  77. ;; (quote (progn
  78. ;; ,@body)))
  79. ;; (locate-library ,libname))))
  80. ;; (when (autoload-eval-lazily 'tetris nil
  81. ;; (message "Tetris loaded!"))
  82. ;; (message "Tetris found!"))
  83. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  84. ;; package
  85. (require 'package)
  86. (set-variable 'package-archives
  87. `(,@package-archives
  88. ("melpa" . "https://melpa.org/packages/")
  89. ;; Somehow fails to download via https
  90. ("10sr-el" . "http://10sr.github.io/emacs-lisp/elpa/")))
  91. (package-initialize)
  92. ;; Use package-install-selected-packages to install these
  93. (let ((my '(
  94. vimrc-mode
  95. markdown-mode
  96. yaml-mode
  97. gnuplot-mode
  98. php-mode
  99. erlang
  100. js2-mode
  101. js-doc
  102. git-commit
  103. gitignore-mode
  104. adoc-mode
  105. go-mode
  106. ;; It seems malabar has been merged into jdee and this package
  107. ;; already removed
  108. ;; malabar-mode
  109. gosh-mode
  110. scala-mode
  111. web-mode
  112. toml-mode
  113. json-mode
  114. color-moccur
  115. ggtags
  116. flycheck
  117. auto-highlight-symbol
  118. hl-todo
  119. ;; Currently not available
  120. ;; pp-c-l
  121. xclip
  122. foreign-regexp
  123. multi-term
  124. term-run
  125. editorconfig
  126. git-ps1-mode
  127. restart-emacs
  128. fill-column-indicator
  129. pkgbuild-mode
  130. minibuffer-line
  131. which-key
  132. ;; I think this works in place of my autosave lib
  133. super-save
  134. pipenv
  135. imenu-list
  136. page-break-lines
  137. ;; aggressive-indent
  138. dired-filter
  139. wgrep
  140. magit
  141. git-gutter
  142. end-mark
  143. sl
  144. ;; TODO: Configure pony-tpl-mode
  145. pony-mode
  146. gited
  147. highlight-indentation
  148. diminish
  149. fzf
  150. fic-mode
  151. term-cursor
  152. pydoc
  153. color-identifiers-mode
  154. dired-k
  155. blacken
  156. back-button
  157. with-venv
  158. nyan-mode
  159. diredfl
  160. hardhat
  161. editorconfig
  162. editorconfig-custom-majormode
  163. git-command
  164. prompt-text
  165. ;; 10sr repository
  166. ;; 10sr-extras
  167. terminal-title
  168. dired-list-all-mode
  169. pack
  170. set-modeline-color
  171. read-only-only-mode
  172. smart-revert
  173. autosave
  174. ;;window-organizer
  175. ilookup
  176. pasteboard
  177. awk-preview
  178. recently
  179. )))
  180. (set-variable 'package-selected-packages
  181. (cl-remove-duplicates (append package-selected-packages
  182. my
  183. ()))))
  184. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  185. ;; my-idle-hook
  186. (defvar my-idle-hook nil
  187. "Hook run when idle for several secs.")
  188. (defvar my-idle-hook-sec 5
  189. "Second to run `my-idle-hook'.")
  190. (run-with-idle-timer my-idle-hook-sec
  191. t
  192. (lambda ()
  193. (run-hooks 'my-idle-hook)))
  194. ;; (add-hook 'my-idle-hook
  195. ;; (lambda ()
  196. ;; (message "idle hook message")))
  197. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  198. ;; start and quit
  199. (setq inhibit-startup-message t)
  200. (setq initial-buffer-choice 'messages-buffer)
  201. (setq confirm-kill-emacs 'y-or-n-p)
  202. ;; (setq gc-cons-threshold (* 1024 1024 16))
  203. (setq garbage-collection-messages nil)
  204. (when window-system
  205. (add-to-list 'default-frame-alist '(cursor-type . box))
  206. (add-to-list 'default-frame-alist '(background-color . "white"))
  207. (add-to-list 'default-frame-alist '(foreground-color . "gray10"))
  208. ;; (add-to-list 'default-frame-alist '(alpha . (80 100 100 100)))
  209. ;; does not work?
  210. )
  211. ;; (add-to-list 'default-frame-alist '(cursor-type . box))
  212. (menu-bar-mode 1)
  213. (define-key ctl-x-map "M" 'menu-bar-open)
  214. (defalias 'menu 'menu-bar-open)
  215. (and (fboundp 'tool-bar-mode)
  216. (tool-bar-mode 0))
  217. (and (fboundp 'set-scroll-bar-mode)
  218. (set-scroll-bar-mode nil))
  219. (eval-after-init
  220. (message "%s %s" invocation-name emacs-version)
  221. (message "Invocation directory: %s" default-directory)
  222. (message "%s was taken to initialize emacs." (emacs-init-time))
  223. ;; (view-echo-area-messages)
  224. ;; (view-emacs-news)
  225. )
  226. (with-current-buffer "*Messages*"
  227. (emacs-lock-mode 'kill))
  228. (cd ".") ; when using windows use / instead of \ in `default-directory'
  229. ;; locale
  230. (set-language-environment "Japanese")
  231. (set-default-coding-systems 'utf-8-unix)
  232. (prefer-coding-system 'utf-8-unix)
  233. (setq system-time-locale "C")
  234. ;; my prefix map
  235. (defvar my-prefix-map nil
  236. "My prefix map.")
  237. (define-prefix-command 'my-prefix-map)
  238. (global-set-key (kbd "C-^") 'my-prefix-map)
  239. ;; (define-key my-prefix-map (kbd "C-q") 'quoted-insert)
  240. ;; (define-key my-prefix-map (kbd "C-z") 'suspend-frame)
  241. ;; (comint-show-maximum-output)
  242. ;; kill scratch
  243. (eval-after-init
  244. (let ((buf (get-buffer "*scratch*")))
  245. (when buf
  246. (kill-buffer buf))))
  247. ;; modifier keys
  248. ;; (setq mac-option-modifier 'control)
  249. ;; display
  250. (setq visible-bell t)
  251. (setq ring-bell-function 'ignore)
  252. (mouse-avoidance-mode 'banish)
  253. (setq echo-keystrokes 0.1)
  254. (defun reload-init-file ()
  255. "Reload Emacs init file."
  256. (interactive)
  257. (when (and user-init-file
  258. (file-readable-p user-init-file))
  259. (load-file user-init-file)))
  260. (require 'session nil t)
  261. ;; server
  262. (set-variable 'server-name (concat "server"
  263. (number-to-string (emacs-pid))))
  264. ;; In Cygwin Environment `server-runnning-p' stops when server-use-tcp is nil
  265. ;; In Darwin environment, init fails with message like 'Service name too long'
  266. ;; when server-use-tcp is nil
  267. (when (or (eq system-type
  268. 'cygwin)
  269. (eq system-type
  270. 'darwin))
  271. (set-variable 'server-use-tcp t))
  272. ;; MSYS2 fix
  273. (when (eq system-type
  274. 'windows-nt)
  275. (setq shell-file-name
  276. (executable-find "bash"))
  277. '(setq function-key-map
  278. `(,@function-key-map ([pause] . [?\C-c])
  279. ))
  280. (define-key key-translation-map
  281. (kbd "<pause>")
  282. (kbd "C-c"))
  283. '(keyboard-translate [pause]
  284. (kbd "C-c")p)
  285. ;; TODO: move to other place later
  286. (when (not window-system)
  287. (setq interprogram-paste-function nil)
  288. (setq interprogram-cut-function nil)))
  289. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  290. ;; global keys
  291. (global-set-key (kbd "<up>") 'scroll-down-line)
  292. (global-set-key (kbd "<down>") 'scroll-up-line)
  293. (global-set-key (kbd "<left>") 'scroll-down)
  294. (global-set-key (kbd "<right>") 'scroll-up)
  295. ;; (define-key my-prefix-map (kbd "C-h") help-map)
  296. ;; (global-set-key (kbd "C-\\") help-map)
  297. (define-key ctl-x-map (kbd "DEL") help-map)
  298. (define-key ctl-x-map (kbd "C-h") help-map)
  299. ;; This is often fired mistakenly
  300. (define-key ctl-x-map "h" 'ignore) ;; Previously mark-whole-buffer
  301. (define-key help-map "a" 'apropos)
  302. ;; disable annoying keys
  303. (global-set-key [prior] 'ignore)
  304. (global-set-key (kbd "<next>") 'ignore)
  305. (global-set-key [menu] 'ignore)
  306. (global-set-key [down-mouse-1] 'ignore)
  307. (global-set-key [down-mouse-2] 'ignore)
  308. (global-set-key [down-mouse-3] 'ignore)
  309. (global-set-key [mouse-1] 'ignore)
  310. (global-set-key [mouse-2] 'ignore)
  311. (global-set-key [mouse-3] 'ignore)
  312. (global-set-key (kbd "<eisu-toggle>") 'ignore)
  313. (global-set-key (kbd "C-<eisu-toggle>") 'ignore)
  314. ;; Interactively evaluate Emacs Lisp expressions
  315. (define-key ctl-x-map "i" 'ielm)
  316. (when (fboundp 'which-key-mode)
  317. (which-key-mode))
  318. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  319. ;; editor
  320. ;; Basically it should not set globally (instead use something like file local
  321. ;; variables or editorconfig), but for most cases I just need this...
  322. (defun my-set-require-final-newline ()
  323. "Set `require-final-newline'."
  324. (set (make-local-variable 'require-final-newline)
  325. mode-require-final-newline))
  326. (add-hook 'prog-mode-hook
  327. 'my-set-require-final-newline)
  328. (add-hook 'text-mode-hook
  329. 'my-set-require-final-newline)
  330. (add-hook 'conf-mode-hook
  331. 'my-set-require-final-newline)
  332. ;; Used from term-cursor
  333. ;; hbar is too hard to find...
  334. (defun my-cursor-type-change (&rest args)
  335. "ARGS are discarded."
  336. ;; TODO: Support wdired and wgrep
  337. (if buffer-read-only
  338. (setq cursor-type 'hbar)
  339. (setq cursor-type 'box)))
  340. ;; (add-hook 'switch-buffer-functions
  341. ;; 'my-cursor-type-change)
  342. ;; (add-hook 'read-only-mode-hook
  343. ;; 'my-cursor-type-change)
  344. ;; (when (fboundp 'global-term-cursor-mode)
  345. ;; (global-term-cursor-mode 1))
  346. ;; ;; (term-cursor--eval)
  347. (setq kill-whole-line t)
  348. (setq scroll-conservatively 35
  349. scroll-margin 2)
  350. (setq-default major-mode 'text-mode)
  351. (setq next-line-add-newlines nil)
  352. (setq kill-read-only-ok t)
  353. (setq truncate-partial-width-windows nil) ; when splitted horizontally
  354. ;; (setq-default line-spacing 0.2)
  355. (setq-default indicate-empty-lines t) ; when using x indicate empty line
  356. ;; (setq-default tab-width 4)
  357. (setq-default indent-tabs-mode nil)
  358. (setq-default indent-line-function 'indent-to-left-margin)
  359. ;; (setq-default indent-line-function nil)
  360. (setq-default truncate-lines nil)
  361. ;; (pc-selection-mode 1) ; make some already defined keybind back to default
  362. (delete-selection-mode 1)
  363. (cua-mode 0)
  364. (setq line-move-visual nil)
  365. (setq create-lockfiles nil)
  366. (setq set-mark-command-repeat-pop t)
  367. (setq-default fill-column 80)
  368. (add-hook 'before-save-hook
  369. 'time-stamp)
  370. ;; Add Time-stamp: <> to insert timestamp there
  371. (set-variable 'time-stamp-format
  372. "%:y-%02m-%02d %02H:%02M:%02S %Z 10sr")
  373. ;; key bindings
  374. ;; moving around
  375. ;;(keyboard-translate ?\M-j ?\C-j)
  376. ;; (global-set-key (kbd "M-p") 'backward-paragraph)
  377. (define-key esc-map "p" 'backward-paragraph)
  378. ;; (global-set-key (kbd "M-n") 'forward-paragraph)
  379. (define-key esc-map "n" 'forward-paragraph)
  380. (global-set-key (kbd "C-<up>") 'scroll-down-line)
  381. (global-set-key (kbd "C-<down>") 'scroll-up-line)
  382. (global-set-key (kbd "C-<left>") 'scroll-down)
  383. (global-set-key (kbd "C-<right>") 'scroll-up)
  384. (global-set-key (kbd "<select>") 'ignore) ; 'previous-line-mark)
  385. (define-key ctl-x-map (kbd "ESC x") 'execute-extended-command)
  386. (define-key ctl-x-map (kbd "ESC :") 'eval-expression)
  387. ;; C-h and DEL
  388. (global-set-key (kbd "C-h") (kbd "DEL"))
  389. ;; (normal-erase-is-backspace-mode 1)
  390. ;;(global-set-key (kbd "C-m") 'reindent-then-newline-and-indent)
  391. (global-set-key (kbd "C-m") 'newline-and-indent)
  392. ;; (global-set-key (kbd "C-o") (kbd "C-e C-m"))
  393. ;; (global-set-key "\C-z" 'undo) ; undo is M-u
  394. (define-key esc-map "u" 'undo)
  395. (define-key esc-map "i" (kbd "ESC TAB"))
  396. ;; (global-set-key (kbd "C-r") 'query-replace-regexp)
  397. ;; (global-set-key (kbd "C-s") 'isearch-forward-regexp)
  398. ;; (global-set-key (kbd "C-r") 'isearch-backward-regexp)
  399. (set-variable 'search-default-mode t)
  400. ;; TODO: Do not depend on ivy function
  401. ;; (set-variable 'search-default-mode
  402. ;; (lambda (str lax)
  403. ;; (ivy--regex-fuzzy (replace-regexp-in-string (rx (one-or-more whitespace))
  404. ;; ""
  405. ;; str))))
  406. (when (fboundp 'undo-fu-only-undo)
  407. (global-set-key (kbd "C-_") 'undo-fu-only-undo))
  408. (when (fboundp 'undo-fu-only-redo)
  409. (global-set-key (kbd "C-M-_") 'undo-fu-only-redo))
  410. (require 'page-ext nil t)
  411. (when (fboundp 'global-page-break-lines-mode)
  412. (add-hook 'after-first-visit-hook
  413. 'global-page-break-lines-mode))
  414. (with-eval-after-load 'page-break-lines
  415. (set-face-foreground 'page-break-lines
  416. "cyan")
  417. )
  418. (defun my-insert-page-break ()
  419. "Insert ^L."
  420. (interactive)
  421. (insert "\^L\n"))
  422. (when (fboundp 'global-git-gutter-mode)
  423. (add-hook 'after-first-visit-hook
  424. 'global-git-gutter-mode))
  425. (with-eval-after-load 'git-gutter
  426. (declare-function global-git-gutter-mode "git-gutter")
  427. (custom-set-variables
  428. '(git-gutter:lighter " Gttr"))
  429. (custom-set-variables
  430. '(git-gutter:update-interval 2))
  431. (custom-set-variables
  432. '(git-gutter:unchanged-sign " "))
  433. (when (>= (display-color-cells)
  434. 256)
  435. (let ((c "color-233"))
  436. (set-face-background 'git-gutter:modified c)
  437. (set-face-background 'git-gutter:added c)
  438. (set-face-background 'git-gutter:deleted c)
  439. (set-face-background 'git-gutter:unchanged c)))
  440. (set-face-background 'git-gutter:modified "magenta")
  441. (set-face-background 'git-gutter:added "green")
  442. (set-face-background 'git-gutter:deleted "red")
  443. )
  444. ;; (when (fboundp 'fancy-narrow-mode)
  445. ;; (add-hook 'after-first-visit-hook
  446. ;; 'fancy-narrow-mode))
  447. ;; https://solist.work/blog/posts/mark-ring/
  448. (set-variable 'mark-ring-max 32)
  449. (defun my-exchange-point-and-mark ()
  450. "`exchange-point-and-mark' without mark activation."
  451. (interactive)
  452. (exchange-point-and-mark)
  453. (deactivate-mark))
  454. (define-key ctl-x-map (kbd "C-x") 'my-exchange-point-and-mark)
  455. (when (fboundp 'counsel-mark-ring)
  456. (define-key ctl-x-map "m" 'counsel-mark-ring))
  457. (with-eval-after-load 'ivy
  458. (defvar ivy-sort-functions-alist)
  459. (add-to-list 'ivy-sort-functions-alist
  460. '(counsel-mark-ring)))
  461. (run-with-idle-timer 10 t
  462. (lambda ()
  463. (push-mark)
  464. ;; (when (fboundp 'visible-mark-move-overlays)
  465. ;; (visible-mark-move-overlays))
  466. ))
  467. (add-hook 'switch-buffer-functions
  468. (lambda (&rest _)
  469. (unless (or (mark t)
  470. (minibufferp))
  471. (push-mark))))
  472. (add-hook 'switch-buffer-functions
  473. (lambda (&rest _)
  474. (when (minibufferp)
  475. ;; Remove mark in minibuffer
  476. (set-mark nil))))
  477. (when (fboundp 'back-button-mode)
  478. (back-button-mode 1))
  479. (when (fboundp 'back-button-local-forward)
  480. (global-set-key (kbd "<right>") 'back-button-local-forward))
  481. (when (fboundp 'back-button-local-backward)
  482. (global-set-key (kbd "<left>") 'back-button-local-backward))
  483. (when (fboundp 'global-visible-mark-mode)
  484. (set-variable 'visible-mark-max 2)
  485. ;; (set-variable 'visible-mark-faces '(visible-mark-face1 visible-mark-face2))
  486. ;; http://emacs.rubikitch.com/visible-mark/
  487. ;; transient-mark-modeでC-SPC C-SPC、あるいはC-SPC C-gすると消えるバグ修正
  488. (defun visible-mark-move-overlays--avoid-disappear (&rest them)
  489. "Fix.
  490. THEM are function and its args."
  491. (let ((mark-active t)) (apply them)))
  492. (advice-add 'visible-mark-move-overlays
  493. :around
  494. 'visible-mark-move-overlays--avoid-disappear)
  495. ;; (global-visible-mark-mode 1)
  496. )
  497. ;; visible-mark-mode
  498. ;; visible-mark-overlays
  499. ;; mark-ring
  500. ;; (equal mark-ring (cl-copy-list mark-ring))
  501. (when (fboundp 'global-hardhat-mode)
  502. (with-eval-after-load 'hardhat
  503. (defvar hardhat-fullpath-protected-regexps)
  504. (add-to-list 'hardhat-fullpath-protected-regexps
  505. "/\\.venv/")
  506. (defvar hardhat-fullpath-editable-regexps)
  507. (add-to-list 'hardhat-fullpath-editable-regexps
  508. "/\\.git/EDIT_INDEX\\.diff\\'")
  509. (defvar hardhat-basename-editable-regexps)
  510. (add-to-list 'hardhat-basename-editable-regexps
  511. "\\`Pipfile.lock\\'")
  512. )
  513. (global-hardhat-mode 1))
  514. (with-eval-after-load 'ignoramus
  515. (defvar ignoramus-file-basename-exact-names)
  516. (set-variable 'ignoramus-file-basename-exact-names
  517. (delete "profile"
  518. ignoramus-file-basename-exact-names))
  519. (set-variable 'ignoramus-file-basename-exact-names
  520. (delete "Profile"
  521. ignoramus-file-basename-exact-names))
  522. )
  523. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  524. ;; title and mode-line
  525. (when (fboundp 'terminal-title-mode)
  526. ;; if TERM is not screen use default value
  527. (if (getenv "TMUX")
  528. ;; if use tmux locally just basename of current dir
  529. (set-variable 'terminal-title-format
  530. '((file-name-nondirectory (directory-file-name
  531. default-directory))))
  532. (if (and (let ((tty-type (frame-parameter nil
  533. 'tty-type)))
  534. (and tty-type
  535. (equal (car (split-string tty-type
  536. "-"))
  537. "screen")))
  538. (not (getenv "SSH_CONNECTION")))
  539. (set-variable 'terminal-title-format
  540. '((file-name-nondirectory (directory-file-name
  541. default-directory))))
  542. ;; seems that TMUX is used locally and ssh to remote host
  543. (set-variable 'terminal-title-format
  544. `("em:"
  545. ,user-login-name
  546. "@"
  547. ,(car (split-string (system-name)
  548. "\\."))
  549. ":"
  550. default-directory))
  551. )
  552. )
  553. (terminal-title-mode))
  554. (setq eol-mnemonic-dos "\\r\\n")
  555. (setq eol-mnemonic-mac "\\r")
  556. (setq eol-mnemonic-unix "")
  557. (which-function-mode 1)
  558. (line-number-mode 0)
  559. (column-number-mode 0)
  560. (size-indication-mode 0)
  561. (setq mode-line-position
  562. '(:eval (format ":%%l:%%c /%d%s"
  563. (count-lines (point-max)
  564. (point-min))
  565. (if (buffer-narrowed-p)
  566. "[N]"
  567. "")
  568. )))
  569. (when (fboundp 'diminish)
  570. (eval-after-init
  571. (diminish 'recently-mode)
  572. (diminish 'editorconfig-mode)
  573. (diminish 'which-key-mode)
  574. )
  575. (with-eval-after-load 'whitespace
  576. (diminish 'global-whitespace-mode))
  577. (with-eval-after-load 'page-break-lines
  578. (diminish 'page-break-lines-mode))
  579. (with-eval-after-load 'auto-highlight-symbol
  580. (diminish 'auto-highlight-symbol-mode))
  581. (with-eval-after-load 'color-identifiers-mode
  582. (diminish 'color-identifiers-mode))
  583. (with-eval-after-load 'highlight-indentation
  584. (diminish 'highlight-indentation-mode))
  585. (with-eval-after-load 'back-button
  586. (diminish 'back-button-mode))
  587. (with-eval-after-load 'git-gutter
  588. (diminish 'git-gutter-mode))
  589. (with-eval-after-load 'autorevert
  590. (diminish 'auto-revert-mode))
  591. )
  592. (setq mode-line-front-space "")
  593. ;; (setq mode-line-end-spaces "")
  594. ;; Set current frame name to empty string
  595. (setq-default mode-line-format
  596. (let* ((l mode-line-format)
  597. (l (cl-substitute " " " "
  598. l
  599. :test 'equal))
  600. (l (cl-substitute " " " "
  601. l
  602. :test 'equal))
  603. )
  604. l))
  605. (set-frame-parameter nil 'name "")
  606. ;; See color-name-rgb-alist for available color names
  607. ;; http://www.raebear.net/computers/emacs-colors/
  608. ;; https://www.emacswiki.org/emacs/ListColors
  609. ;; (list-colors-display is not a complete list)
  610. (defconst my-mode-line-background-default
  611. (face-background 'mode-line)
  612. "Default color of mode-line at init.")
  613. (defun my-mode-line-color-update (&rest args)
  614. "ARGS are discarded"
  615. (let ((ro "skyblue")
  616. (rw my-mode-line-background-default))
  617. (if (or (not buffer-read-only)
  618. (and (eq major-mode 'wdired-mode)))
  619. (set-face-background 'mode-line
  620. rw)
  621. (set-face-background 'mode-line
  622. ro))))
  623. (add-hook 'switch-buffer-functions
  624. 'my-mode-line-color-update)
  625. (add-hook 'read-only-mode-hook
  626. 'my-mode-line-color-update)
  627. (add-hook 'wdired-mode-hook
  628. 'my-mode-line-color-update)
  629. (advice-add 'wdired-change-to-dired-mode
  630. :after
  631. 'my-mode-line-color-update)
  632. (advice-add 'wgrep-change-to-wgrep-mode
  633. :after
  634. 'my-mode-line-color-update)
  635. (advice-add 'wgrep-to-original-mode
  636. :after
  637. 'my-mode-line-color-update)
  638. (with-eval-after-load 'hardhat
  639. ;; hardhat-mode-hook does not work as expected...
  640. (advice-add 'hardhat-local-hook
  641. :after
  642. 'my-mode-line-color-update))
  643. (set-face-background 'header-line
  644. my-mode-line-background-default)
  645. ;; sky-color-clock
  646. ;; https://tsuu32.hatenablog.com/entry/2019/11/07/020005
  647. (declare-function sky-color-clock "sky-color-clock")
  648. (declare-function sky-color-clock-initialize "sky-color-clock")
  649. (defun sky-color-clock--form ()
  650. "Gen string for right aligned form."
  651. (let* ((sky-color-clock-str
  652. (propertize (sky-color-clock) 'help-echo (format-time-string "Sky color clock\n%F (%a)")))
  653. (mode-line-right-margin
  654. (propertize " " 'display `(space :align-to (- right-fringe ,(length sky-color-clock-str))))))
  655. (concat mode-line-right-margin sky-color-clock-str)))
  656. (when (require 'sky-color-clock nil t)
  657. (sky-color-clock-initialize 35) ; Tokyo, Japan
  658. (set-variable 'sky-color-clock-format "%H:%M")
  659. (set-variable 'sky-color-clock-enable-emoji-icon nil)
  660. (setq mode-line-end-spaces '(:eval (sky-color-clock--form))))
  661. ;; http://www.geocities.jp/simizu_daisuke/bunkei-meadow.html#frame-title
  662. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  663. ;; minibuffer
  664. (setq insert-default-directory t)
  665. (setq completion-ignore-case t
  666. read-file-name-completion-ignore-case t
  667. read-buffer-completion-ignore-case t)
  668. (setq resize-mini-windows t)
  669. (temp-buffer-resize-mode 1)
  670. (savehist-mode 1)
  671. (defvar display-time-format "%Y/%m/%d %a %H:%M")
  672. (set-variable 'help-at-pt-display-when-idle t)
  673. (fset 'yes-or-no-p 'y-or-n-p)
  674. ;; complete symbol when `eval'
  675. (define-key read-expression-map (kbd "TAB") 'completion-at-point)
  676. (define-key minibuffer-local-map (kbd "C-u")
  677. (lambda () (interactive) (delete-region (point-at-bol) (point))))
  678. ;; I dont know these bindings are good
  679. (define-key minibuffer-local-map (kbd "C-p") (kbd "ESC p"))
  680. (define-key minibuffer-local-map (kbd "C-n") (kbd "ESC n"))
  681. (with-eval-after-load 'minibuffer-line
  682. (set-face-underline 'minibuffer-line nil)
  683. )
  684. (when (fboundp 'minibuffer-line-mode)
  685. (set-variable 'minibuffer-line-refresh-interval
  686. 25)
  687. ;; Set idle timer
  688. (defvar my-minibuffer-line--idle-timer nil)
  689. (defvar minibuffer-line-mode)
  690. (add-hook 'minibuffer-line-mode-hook
  691. (lambda ()
  692. (when my-minibuffer-line--idle-timer
  693. (cancel-timer my-minibuffer-line--idle-timer)
  694. (setq my-minibuffer-line--idle-timer nil))
  695. (when minibuffer-line-mode
  696. (setq my-minibuffer-line--idle-timer
  697. (run-with-idle-timer 0.5
  698. t
  699. 'minibuffer-line--update)))))
  700. (set-variable 'minibuffer-line-format
  701. `(,(concat user-login-name
  702. "@"
  703. (car (split-string (system-name)
  704. "\\."))
  705. ":")
  706. (:eval (abbreviate-file-name (or buffer-file-name
  707. default-directory)))
  708. (:eval (and (fboundp 'git-ps1-mode-get-current)
  709. (git-ps1-mode-get-current " [GIT:%s]")))
  710. " "
  711. (:eval (format-time-string display-time-format))))
  712. (when (eval-and-compile (require 'nyan-mode nil t))
  713. (set-variable 'minibuffer-line-format
  714. '((:eval (progn
  715. (list (nyan-create))))))
  716. (defun my-nyan-set-length (&rest _)
  717. "Set `nyan-mode' length to window width."
  718. (set-variable 'nyan-bar-length
  719. (- (frame-parameter nil 'width) 4)))
  720. ;; (my-nyan-set-length)
  721. ;; (add-hook 'after-init-hook
  722. ;; 'my-nyan-set-length)
  723. (add-hook 'window-configuration-change-hook
  724. 'my-nyan-set-length)
  725. (add-hook 'switch-buffer-functions
  726. 'my-nyan-set-length)
  727. )
  728. (minibuffer-line-mode 1)
  729. )
  730. (when (fboundp 'prompt-text-mode)
  731. (set-variable 'prompt-text-format
  732. `(,(concat ""
  733. user-login-name
  734. "@"
  735. (car (split-string (system-name)
  736. "\\."))
  737. ":")
  738. (:eval (abbreviate-file-name (or buffer-file-name
  739. default-directory)))
  740. (:eval (and (fboundp 'git-ps1-mode-get-current)
  741. (git-ps1-mode-get-current " [GIT:%s]")))
  742. " "
  743. (:eval (format-time-string display-time-format))
  744. "\n"
  745. (:eval (symbol-name this-command))
  746. ": "))
  747. (prompt-text-mode 1))
  748. (with-eval-after-load 'helm
  749. (defvar helm-map)
  750. (define-key helm-map (kbd "C-h") (kbd "DEL")))
  751. (setq-default header-line-format
  752. '(:eval (let ((f (or (buffer-file-name)
  753. default-directory)))
  754. (when f
  755. (abbreviate-file-name f)))))
  756. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  757. ;; letters, font-lock mode and fonts
  758. (when (fboundp 'color-identifiers-mode)
  759. (add-hook 'prog-mode-hook
  760. 'color-identifiers-mode))
  761. (setq text-quoting-style 'grave)
  762. ;; (set-face-background 'vertical-border (face-foreground 'mode-line))
  763. ;; (set-window-margins (selected-window) 1 1)
  764. (unless window-system
  765. (setq frame-background-mode 'dark))
  766. (and (or (eq system-type 'Darwin)
  767. (eq system-type 'darwin))
  768. (fboundp 'mac-set-input-method-parameter)
  769. (mac-set-input-method-parameter 'japanese 'cursor-color "red")
  770. (mac-set-input-method-parameter 'roman 'cursor-color "black"))
  771. (when (and (boundp 'input-method-activate-hook) ; i dont know this is correct
  772. (boundp 'input-method-inactivate-hook))
  773. (add-hook 'input-method-activate-hook
  774. (lambda () (set-cursor-color "red")))
  775. (add-hook 'input-method-inactivate-hook
  776. (lambda () (set-cursor-color "black"))))
  777. (when (fboundp 'show-paren-mode)
  778. (add-hook 'after-first-visit-hook
  779. 'show-paren-mode))
  780. (set-variable 'show-paren-delay 0.5)
  781. (set-variable 'show-paren-style 'parenthesis) ; mixed is hard to read
  782. ;; (set-face-background 'show-paren-match
  783. ;; "black")
  784. ;; ;; (face-foreground 'default))
  785. ;; (set-face-foreground 'show-paren-match
  786. ;; "white")
  787. ;; (set-face-inverse-video-p 'show-paren-match
  788. ;; t)
  789. (transient-mark-mode 1)
  790. (global-font-lock-mode 1)
  791. (setq font-lock-global-modes
  792. '(not
  793. help-mode
  794. eshell-mode
  795. ;;term-mode
  796. Man-mode
  797. ))
  798. ;; (standard-display-ascii ?\n "$\n")
  799. ;; (defvar my-eol-face
  800. ;; '(("\n" . (0 font-lock-comment-face t nil)))
  801. ;; )
  802. ;; (defvar my-tab-face
  803. ;; '(("\t" . '(0 highlight t nil))))
  804. (defvar my-jspace-face
  805. '(("\u3000" . '(0 highlight t nil))))
  806. (add-hook 'font-lock-mode-hook
  807. (lambda ()
  808. ;; (font-lock-add-keywords nil my-eol-face)
  809. (font-lock-add-keywords nil my-jspace-face)
  810. ))
  811. (set-variable 'font-lock-maximum-decoration
  812. '(
  813. ;; (python-mode . 2)
  814. (t . 2)
  815. ))
  816. (when (fboundp 'global-whitespace-mode)
  817. (add-hook 'after-first-visit-hook
  818. 'global-whitespace-mode))
  819. (add-hook 'dired-mode-hook
  820. ;; Other way to disable in dired buffers?
  821. (lambda () (set-variable 'whitespace-style nil t)))
  822. (with-eval-after-load 'whitespace
  823. (defvar whitespace-display-mappings)
  824. (defvar whitespace-mode)
  825. (add-to-list 'whitespace-display-mappings
  826. ;; We need t since last one takes precedence
  827. `(tab-mark ?\t ,(vconcat "|>\t")) t)
  828. ;; (add-to-list 'whitespace-display-mappings
  829. ;; `(newline-mark ?\n ,(vconcat "$\n")))
  830. (set-variable 'whitespace-style '(face
  831. trailing ; trailing blanks
  832. ;; tabs
  833. ;; spaces
  834. ;; lines
  835. lines-tail ; lines over 80
  836. newline ; newlines
  837. ;; empty ; empty lines at beg or end of buffer
  838. ;; big-indent
  839. ;; space-mark
  840. tab-mark
  841. newline-mark ; use display table for newline
  842. ))
  843. ;; (setq whitespace-newline 'font-lock-comment-face)
  844. ;; (setq whitespace-style (delq 'newline-mark whitespace-style))
  845. (defun my-whitesspace-mode-reload ()
  846. "Reload whitespace-mode config."
  847. (interactive)
  848. (when whitespace-mode
  849. (whitespace-mode 0)
  850. (whitespace-mode 1)))
  851. (set-variable 'whitespace-line-column nil)
  852. (if (>= (display-color-cells)
  853. 256)
  854. (set-face-foreground 'whitespace-newline "color-109")
  855. ;; (progn
  856. ;; (set-face-bold-p 'whitespace-newline
  857. ;; t))
  858. ))
  859. (and nil
  860. '(require 'fill-column-indicator nil t)
  861. (setq fill-column-indicator))
  862. (defun my-gen-hl-line-color-dark ()
  863. "Generate color for current line in black background."
  864. (let* ((candidates (mapcar 'number-to-string (number-sequence 1 6)))
  865. (limit (length candidates))
  866. (r 0) (g 0) (b 0))
  867. (while (and (<= (abs (- r g)) 1)
  868. (<= (abs (- g b)) 1)
  869. (<= (abs (- b r)) 1))
  870. (setq r (random limit))
  871. (setq g (random limit))
  872. (setq b (random limit)))
  873. (format "#%s%s%s"
  874. (nth r candidates)
  875. (nth g candidates)
  876. (nth b candidates)
  877. )))
  878. ;; (my-gen-hl-line-color-dark)
  879. ;; highlight current line
  880. ;; http://wiki.riywo.com/index.php?Meadow
  881. (face-spec-set 'hl-line
  882. `((((min-colors 256)
  883. (background dark))
  884. ;; Rotate midnightblue
  885. (:background ,(my-gen-hl-line-color-dark)))
  886. (((min-colors 256)
  887. (background light))
  888. ;; TODO: What is should be?
  889. (:background "color-234"))
  890. (t
  891. (:underline "black"))))
  892. (set-variable 'hl-line-global-modes
  893. '(not
  894. term-mode))
  895. (global-hl-line-mode 1) ;; (hl-line-mode 1)
  896. (set-face-foreground 'font-lock-regexp-grouping-backslash "#666")
  897. (set-face-foreground 'font-lock-regexp-grouping-construct "#f60")
  898. ;;(require 'set-modeline-color nil t)
  899. ;; (let ((fg (face-foreground 'default))
  900. ;; (bg (face-background 'default)))
  901. ;; (set-face-background 'mode-line-inactive
  902. ;; (if (face-inverse-video-p 'mode-line) fg bg))
  903. ;; (set-face-foreground 'mode-line-inactive
  904. ;; (if (face-inverse-video-p 'mode-line) bg fg)))
  905. ;; (set-face-underline 'mode-line-inactive
  906. ;; t)
  907. ;; (set-face-underline 'vertical-border
  908. ;; nil)
  909. ;; (when (require 'end-mark nil t)
  910. ;; (global-end-mark-mode))
  911. ;; M-x highlight-* to highlight things
  912. (global-hi-lock-mode 1)
  913. (unless (fboundp 'highlight-region-text)
  914. (defun highlight-region-text (beg end)
  915. "Highlight text between BEG and END."
  916. (interactive "r")
  917. (highlight-regexp (regexp-quote (buffer-substring-no-properties beg
  918. end)))
  919. (setq deactivate-mark t)))
  920. (when (fboundp 'auto-highlight-symbol-mode)
  921. (add-hook 'prog-mode-hook
  922. 'auto-highlight-symbol-mode))
  923. ;; Not work in combination with flyspell-mode
  924. ;; (when (fboundp 'global-auto-highlight-symbol-mode)
  925. ;; (add-hook 'after-first-visit-hook
  926. ;; 'global-auto-highlight-symbol-mode))
  927. (set-variable 'ahs-idle-interval 0.6)
  928. (when (fboundp 'highlight-indentation-mode)
  929. (dolist (hook
  930. '(
  931. prog-mode-hook
  932. text-mode-hook
  933. ))
  934. ;; Makes display slow?
  935. ;; (add-hook hook
  936. ;; 'highlight-indentation-mode)
  937. ))
  938. (with-eval-after-load 'highlight-indentation
  939. (set-face-background 'highlight-indentation-face "color-236"))
  940. ;; (set-face-background 'highlight-indentation-current-column-face "#c3b3b3")
  941. (when (fboundp 'fic-mode)
  942. (add-hook 'prog-mode-hook
  943. 'fic-mode))
  944. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  945. ;; file handling
  946. (auto-insert-mode 1)
  947. ;; fzf
  948. ;; Too slow in term buffer!
  949. ;; (set-variable 'fzf/executable "sk")
  950. ;; (set-variable 'fzf/args "--color bw --print-query")
  951. ;; Modified from hardcoded default to include:
  952. ;; - directories
  953. ;; - hidden files
  954. ;; - root directory (.)
  955. ;; - parent directory (..)
  956. ;; ripgrep cannot list directories...
  957. ;; (setenv "FZF_DEFAULT_COMMAND" "rg --files --hidden --follow --glob '!.git/*' --no-ignore")
  958. (defvar my-fzf-default-command nil
  959. "My fzf FZF_DEFAULT_COMMAND.")
  960. (set-variable 'my-fzf-default-command
  961. (let ((find (or (executable-find "bfs") ;; Breadth-first find https://github.com/tavianator/bfs
  962. ;; Use gfind if available?
  963. "find"))
  964. (fd (or (executable-find "fdfind")
  965. (executable-find "fd"))))
  966. (if fd
  967. (concat "set -eu; set -o pipefail; "
  968. "echo .; "
  969. "echo ..; "
  970. "command " fd " "
  971. "--follow --hidden --no-ignore "
  972. "--color always "
  973. "2>/dev/null")
  974. (concat "set -eu; set -o pipefail; "
  975. "echo .; "
  976. "echo ..; "
  977. "command " find " -L . "
  978. "-mindepth 1 "
  979. "\\( -fstype 'sysfs' -o -fstype 'devfs' -o -fstype 'devtmpfs' -o -fstype 'proc' \\) -prune "
  980. "-o -print "
  981. "2> /dev/null "
  982. "| "
  983. "cut -b3-"))))
  984. (set-variable 'fzf/window-height 45)
  985. (set-variable 'fzf/args "--print-query --ansi --color='bg+:-1' --inline-info --cycle")
  986. ;; (set-variable 'fzf/args "--print-query --ansi --inline-info --cycle")
  987. ;; (set-variable 'fzf/args "--print-query --ansi --color=bw --inline-info --cycle")
  988. (declare-function fzf "fzf" t)
  989. (defun my-fzf-or-find-file ()
  990. "Call fzf if usable or call `find-file'."
  991. (declare (interactive-only t))
  992. (interactive)
  993. (if (and (executable-find "fzf")
  994. (fboundp 'fzf)
  995. (not (file-remote-p default-directory)))
  996. (let ((process-environment (cl-copy-list process-environment)))
  997. (setenv "FZF_DEFAULT_COMMAND" my-fzf-default-command)
  998. (fzf))
  999. (call-interactively 'find-file)))
  1000. (define-key ctl-x-map "f" 'my-fzf-or-find-file)
  1001. (defun my-fzf-all-lines ()
  1002. "Fzf all lines."
  1003. (interactive)
  1004. (let ((process-environment (cl-copy-list process-environment)))
  1005. (setenv "FZF_DEFAULT_COMMAND" "rg -nH --no-heading --hidden --follow --glob '!.git/*' --color=always ^")
  1006. (fzf)))
  1007. (define-key ctl-x-map "S" 'my-fzf-all-lines)
  1008. ;; recently
  1009. ;; TODO: Enable after first visit file?
  1010. (with-eval-after-load 'recently
  1011. (defvar recently-excludes)
  1012. (add-to-list 'recently-excludes
  1013. (rx-to-string (list 'and
  1014. 'string-start
  1015. (expand-file-name package-user-dir))
  1016. t)))
  1017. (when (fboundp 'recently-mode)
  1018. (define-key ctl-x-map (kbd "C-r") 'recently-show)
  1019. (set-variable 'recently-max 1000)
  1020. (recently-mode 1))
  1021. (defvar my-cousel-recently-history nil "History of `my-counsel-recently'.")
  1022. (declare-function recently-list "recently" t)
  1023. (when (and (require 'recently nil t)
  1024. (fboundp 'ivy-read))
  1025. (defun my-counsel-recently ()
  1026. "Consel `recently'."
  1027. (interactive)
  1028. (ivy-read "Recently: " (mapcar 'abbreviate-file-name (recently-list))
  1029. :require-match t
  1030. :history 'my-cousel-recently-history
  1031. :preselect default-directory
  1032. :action (lambda (x) (find-file x))
  1033. :caller 'my-counsel-recently))
  1034. (define-key ctl-x-map (kbd "C-r") 'my-counsel-recently)
  1035. )
  1036. (when (fboundp 'editorconfig-mode)
  1037. (add-hook 'after-first-visit-hook
  1038. 'editorconfig-mode)
  1039. (add-hook 'after-first-visit-hook
  1040. 'editorconfig-mode-apply
  1041. t)) ;; Do after enabling editorconfig-mode
  1042. (set-variable 'editorconfig-get-properties-function
  1043. 'editorconfig-core-get-properties-hash)
  1044. (set-variable 'editorconfig-mode-lighter "")
  1045. (when (fboundp 'ws-butler-mode)
  1046. (set-variable 'editorconfig-trim-whitespaces-mode
  1047. 'ws-butler-mode))
  1048. (with-eval-after-load 'org-src
  1049. ;; [*.org\[\*Org Src*\[ c \]*\]]
  1050. (add-hook 'org-src-mode-hook
  1051. 'editorconfig-mode-apply t))
  1052. (when (fboundp 'editorconfig-custom-majormode)
  1053. (add-hook 'editorconfig-after-apply-functions
  1054. 'editorconfig-custom-majormode))
  1055. ;; Add readonly=true to set read-only-mode
  1056. (add-hook 'editorconfig-after-apply-functions
  1057. (lambda (props)
  1058. (let ((r (gethash 'readonly props)))
  1059. (when (and (string= r "true")
  1060. (not buffer-read-only))
  1061. (read-only-mode 1)))))
  1062. (add-hook 'editorconfig-hack-properties-functions
  1063. '(lambda (props)
  1064. (when (derived-mode-p 'makefile-mode)
  1065. (puthash 'indent_style "tab" props))
  1066. (when (derived-mode-p 'diff-mode)
  1067. (puthash 'trim_trailing_whitespace "false" props)
  1068. (puthash 'insert_final_newline "false" props)
  1069. )
  1070. ))
  1071. (when (fboundp 'editorconfig-auto-apply-enable)
  1072. (add-hook 'editorconfig-conf-mode-hook
  1073. 'editorconfig-auto-apply-enable))
  1074. ;; (when (fboundp 'editorconfig-charset-extras)
  1075. ;; (add-hook 'editorconfig-custom-hooks
  1076. ;; 'editorconfig-charset-extras))
  1077. (setq revert-without-query '(".+"))
  1078. ;; save cursor position
  1079. (when (fboundp 'save-place-mode)
  1080. (autoload 'save-place-find-file-hook "saveplace")
  1081. (add-hook 'after-first-visit-hook
  1082. 'save-place-mode)
  1083. (add-hook 'after-first-visit-hook
  1084. 'save-place-find-file-hook
  1085. t))
  1086. (set-variable 'save-place-file (concat user-emacs-directory
  1087. "places"))
  1088. ;; http://www.bookshelf.jp/soft/meadow_24.html#SEC260
  1089. (setq make-backup-files t)
  1090. (setq vc-make-backup-files t)
  1091. ;; (make-directory (expand-file-name "~/.emacsbackup"))
  1092. (setq backup-directory-alist
  1093. (cons (cons "." (expand-file-name (concat user-emacs-directory
  1094. "backup")))
  1095. backup-directory-alist))
  1096. (setq version-control 't)
  1097. (setq delete-old-versions t)
  1098. (setq kept-new-versions 20)
  1099. (setq auto-save-list-file-prefix (expand-file-name (concat user-emacs-directory
  1100. "auto-save/")))
  1101. ;; (setq delete-auto-save-files t)
  1102. (setq auto-save-visited-interval 8)
  1103. (auto-save-visited-mode 1)
  1104. ;; (add-to-list 'auto-save-file-name-transforms
  1105. ;; `(".*" ,(concat user-emacs-directory "auto-save-dir") t))
  1106. ;; (setq auto-save-interval 3)
  1107. ;; (auto-save-mode 1)
  1108. (add-to-list 'completion-ignored-extensions ".bak")
  1109. (set-variable 'completion-cycle-threshold nil) ;; NEVER use
  1110. (setq delete-by-moving-to-trash t)
  1111. ;; trash-directory "~/.emacs.d/trash")
  1112. (add-hook 'after-save-hook
  1113. 'executable-make-buffer-file-executable-if-script-p)
  1114. (when (fboundp 'smart-revert-on)
  1115. (smart-revert-on))
  1116. ;; autosave
  1117. ;; auto-save-visited-mode can be used instead?
  1118. ;; (when (require 'autosave nil t)
  1119. ;; (autosave-set 8))
  1120. ;; bookmarks
  1121. (set-variable 'bookmark-default-file
  1122. (expand-file-name (concat user-emacs-directory
  1123. "bmk")))
  1124. (set-variable 'bookmark-sort-flag nil)
  1125. (defun my-bookmark-set ()
  1126. "My `bookmark-set'."
  1127. (interactive)
  1128. (cl-assert (or buffer-file-name
  1129. default-directory))
  1130. (let ((name (file-name-nondirectory (or buffer-file-name
  1131. (directory-file-name default-directory))))
  1132. (linenum (count-lines (point-min)
  1133. (point)))
  1134. (linetext (buffer-substring-no-properties (point-at-bol)
  1135. (point-at-eol))))
  1136. (bookmark-set (format "%s:%d:%s"
  1137. name linenum linetext)
  1138. nil)))
  1139. ;; Done by advice instead
  1140. ;; (set-variable 'bookmark-save-flag
  1141. ;; 1)
  1142. (with-eval-after-load 'recentf
  1143. (defvar recentf-exclude)
  1144. (defvar bookmark-default-file)
  1145. (add-to-list 'recentf-exclude
  1146. (regexp-quote bookmark-default-file)))
  1147. (defvar bookmark-default-file)
  1148. (defun my-bookmark-set--advice (orig-func &rest args)
  1149. "Function for `bookmark-set-internal'.
  1150. ORIG-FUNC is the target function, and ARGS is the argument when it is called."
  1151. (bookmark-load bookmark-default-file)
  1152. (apply orig-func args)
  1153. (bookmark-save))
  1154. (with-eval-after-load 'bookmark
  1155. (advice-add 'bookmark-set-internal
  1156. :around
  1157. 'my-bookmark-set--advice))
  1158. (define-key ctl-x-map "b" 'list-bookmarks)
  1159. (when (fboundp 'counsel-bookmark)
  1160. (define-key ctl-x-map "b" 'counsel-bookmark))
  1161. (define-key ctl-x-map "B" 'my-bookmark-set)
  1162. ;; vc
  1163. (set-variable 'vc-handled-backends '(RCS))
  1164. (set-variable 'vc-rcs-register-switches "-l")
  1165. (set-variable 'vc-rcs-checkin-switches "-l")
  1166. (set-variable 'vc-command-messages t)
  1167. (when (fboundp 'neotree)
  1168. (define-key ctl-x-map (kbd "C-n") 'neotree))
  1169. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1170. ;; share clipboard with x
  1171. ;; this page describes this in details, but only these sexps seem to be needed
  1172. ;; http://garin.jp/doc/Linux/xwindow_clipboard
  1173. (and nil
  1174. (not window-system)
  1175. (not (eq window-system 'mac))
  1176. (getenv "DISPLAY")
  1177. (not (equal (getenv "DISPLAY") ""))
  1178. (executable-find "xclip")
  1179. ;; (< emacs-major-version 24)
  1180. '(require 'xclip nil t)
  1181. nil
  1182. (turn-on-xclip))
  1183. (declare-function turn-on-pasteboard "pasteboard")
  1184. (and (eq system-type 'darwin)
  1185. (require 'pasteboard nil t)
  1186. (turn-on-pasteboard))
  1187. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1188. ;; some modes and hooks
  1189. ;; Include some extra modes
  1190. (require 'generic-x)
  1191. ;; Derived from https://github.com/ensime/ensime-emacs/issues/591#issuecomment-291916753
  1192. (defun my-scalafmt ()
  1193. (interactive)
  1194. (cl-assert buffer-file-name)
  1195. (cl-assert (not (buffer-modified-p)))
  1196. (let* ((configdir (locate-dominating-file default-directory ".scalafmt.conf"))
  1197. (configoption (if configdir
  1198. (concat " --config "
  1199. (shell-quote-argument (expand-file-name configdir))
  1200. ".scalafmt.conf"
  1201. )
  1202. ""))
  1203. (str (concat "scalafmt -f "
  1204. (shell-quote-argument buffer-file-name)
  1205. configoption
  1206. " -i --exclude ensime")))
  1207. (message str)
  1208. (shell-command-to-string str))
  1209. (message "scalafmt done")
  1210. (revert-buffer nil t))
  1211. (when (fboundp 'web-mode)
  1212. (add-to-list 'auto-mode-alist
  1213. '("\\.html\\.j2\\'" . web-mode))
  1214. (add-to-list 'auto-mode-alist
  1215. ;; Django Template Language
  1216. '("\\.dtl\\'" . web-mode))
  1217. )
  1218. (when (locate-library "wgrep")
  1219. (set-variable 'wgrep-auto-save-buffer t)
  1220. (with-eval-after-load 'grep
  1221. (defvar grep-mode-map)
  1222. (define-key grep-mode-map
  1223. "e"
  1224. 'wgrep-change-to-wgrep-mode)))
  1225. (when (fboundp 'grep-context-mode)
  1226. (add-hook 'compilation-mode-hook #'grep-context-mode))
  1227. (with-eval-after-load 'remember
  1228. (defvar remember-mode-map)
  1229. (define-key remember-mode-map (kbd "C-x C-s") 'ignore))
  1230. (set-variable 'remember-notes-initial-major-mode
  1231. 'change-log-mode)
  1232. (declare-function global-magit-file-mode "magit-files")
  1233. (with-eval-after-load 'magit-files
  1234. ;; `global-magit-file-mode' is enabled by default and this mode overwrites
  1235. ;; existing keybindings.
  1236. ;; Apparently it is a HARMFUL behavior and it is really awful that I have
  1237. ;; to disable thie mode here, but do anyway.
  1238. ;; See also https://github.com/magit/magit/issues/3517
  1239. (global-magit-file-mode -1))
  1240. (with-eval-after-load 'magit-section
  1241. (set-face-background 'magit-section-highlight
  1242. nil))
  1243. ;; Sane colors
  1244. (with-eval-after-load 'magit-diff
  1245. (set-face-background 'magit-diff-context nil)
  1246. (set-face-background 'magit-diff-context-highlight nil)
  1247. (set-face-foreground 'magit-diff-hunk-heading nil)
  1248. (set-face-background 'magit-diff-hunk-heading nil)
  1249. (set-face-foreground 'magit-diff-hunk-heading-highlight nil)
  1250. (set-face-background 'magit-diff-hunk-heading-highlight nil)
  1251. ;; https://blog.shibayu36.org/entry/2016/03/27/220552
  1252. (set-face-foreground 'magit-diff-added "green")
  1253. (set-face-background 'magit-diff-added nil)
  1254. (set-face-foreground 'magit-diff-added-highlight "green")
  1255. (set-face-background 'magit-diff-added-highlight nil)
  1256. (set-face-foreground 'magit-diff-removed "red")
  1257. (set-face-background 'magit-diff-removed nil)
  1258. (set-face-foreground 'magit-diff-removed-highlight "red")
  1259. (set-face-background 'magit-diff-removed-highlight nil)
  1260. (set-face-background 'magit-diff-lines-boundary "blue")
  1261. )
  1262. (declare-function magit-show-commit "magit")
  1263. (defun my-magit-messenger (file line)
  1264. "Magit messenger."
  1265. (interactive (list buffer-file-name
  1266. (line-number-at-pos)))
  1267. (cl-assert file)
  1268. (cl-assert line)
  1269. (let* ((blame-args '("-w"))
  1270. (id (with-temp-buffer
  1271. (let ((exit (apply 'call-process
  1272. "git" ;; PROGRAM
  1273. nil ;; INFILE
  1274. t ;; DESTINATION
  1275. nil ;; DISPLAY
  1276. "--no-pager" ;; ARGS
  1277. "blame"
  1278. "-L"
  1279. (format "%d,+1" line)
  1280. "--porcelain"
  1281. file
  1282. blame-args
  1283. )))
  1284. (goto-char (point-min))
  1285. (cl-assert (eq exit 0)
  1286. "Failed: %s" (buffer-substring (point)
  1287. (point-at-eol)))
  1288. (save-match-data
  1289. (re-search-forward (rx buffer-start
  1290. (one-or-more hex-digit)))
  1291. (match-string 0))))))
  1292. (magit-show-commit id)))
  1293. (when (boundp 'git-rebase-filename-regexp)
  1294. (add-to-list 'auto-mode-alist
  1295. `(,git-rebase-filename-regexp . text-mode)))
  1296. (when (fboundp 'ggtags-mode)
  1297. (add-hook 'c-mode-common-hook
  1298. 'ggtags-mode)
  1299. (add-hook 'python-mode-hook
  1300. 'ggtags-mode)
  1301. (add-hook 'js-mode-hook
  1302. 'ggtags-mode)
  1303. (add-hook 'scheme-mode-hook
  1304. 'ggtags-mode)
  1305. )
  1306. (when (fboundp 'imenu-list-minor-mode)
  1307. (defvar imenu-list-buffer-name)
  1308. (defun my-imenu-list-toggle ()
  1309. "My 'imenu-list` toggle."
  1310. (interactive)
  1311. (require 'imenu-list)
  1312. (if (eq (window-buffer)
  1313. (get-buffer imenu-list-buffer-name))
  1314. (imenu-list-minor-mode -1)
  1315. (imenu-list-minor-mode 1)))
  1316. ;; (set-variable 'imenu-list-auto-resize t)
  1317. (set-variable 'imenu-list-focus-after-activation t)
  1318. ;; (define-key ctl-x-map (kbd "C-l") 'my-imenu-list-toggle)
  1319. (define-key ctl-x-map (kbd "C-l") 'imenu-list-smart-toggle)
  1320. )
  1321. (add-hook 'emacs-lisp-mode-hook
  1322. (lambda ()
  1323. (setq imenu-generic-expression
  1324. `(("Sections" ";;;\+\n;; \\(.*\\)\n" 1)
  1325. ,@imenu-generic-expression))))
  1326. ;; TODO: Try paraedit http://daregada.blogspot.com/2012/03/paredit.html
  1327. (with-eval-after-load 'compile
  1328. (defvar compilation-filter-start)
  1329. (defvar compilation-error-regexp-alist)
  1330. (eval-and-compile (require 'ansi-color))
  1331. (add-hook 'compilation-filter-hook
  1332. (lambda ()
  1333. (let ((inhibit-read-only t))
  1334. (ansi-color-apply-on-region compilation-filter-start
  1335. (point)))))
  1336. (add-to-list 'compilation-error-regexp-alist
  1337. ;; ansible-lint
  1338. '("^\\([^ \n]+\\):\\([0-9]+\\)$" 1 2))
  1339. (add-to-list 'compilation-error-regexp-alist
  1340. ;; pydocstyle
  1341. '("^\\([^ \n]+\\):\\([0-9]+\\) " 1 2))
  1342. )
  1343. (declare-function company-cancel "company")
  1344. (when (fboundp 'global-company-mode)
  1345. (add-hook 'after-first-visit-hook
  1346. 'global-company-mode))
  1347. (declare-function company-manual-begin "company")
  1348. (with-eval-after-load 'company
  1349. ;; http://qiita.com/sune2/items/b73037f9e85962f5afb7
  1350. ;; https://qiita.com/yuze/items/a145b1e3edb6d0c24cbf
  1351. (set-variable 'company-idle-delay nil)
  1352. (set-variable 'company-minimum-prefix-length 2)
  1353. (set-variable 'company-selection-wrap-around t)
  1354. (defvar company-mode-map)
  1355. (define-key company-mode-map (kbd "C-i") 'company-indent-or-complete-common)
  1356. ;; (with-eval-after-load 'python
  1357. ;; (defvar python-indent-trigger-commands)
  1358. ;; ;; TODO: This disables completion in puthon?
  1359. ;; (add-to-list 'python-indent-trigger-commands
  1360. ;; 'company-indent-or-complete-common))
  1361. (define-key ctl-x-map (kbd "C-i") 'company-complete) ; Originally `indent-rigidly'
  1362. (defvar company-active-map)
  1363. (define-key company-active-map (kbd "C-n") 'company-select-next)
  1364. (define-key company-active-map (kbd "C-p") 'company-select-previous)
  1365. (define-key company-active-map (kbd "C-s") 'company-filter-candidates)
  1366. (define-key company-active-map (kbd "C-i") 'company-complete-selection)
  1367. (define-key company-active-map (kbd "C-f") 'company-complete-selection)
  1368. (defvar company-mode)
  1369. (defvar company-candidates)
  1370. (defvar company-candidates-length)
  1371. ;; (popup-tip "Hello, World!")
  1372. (defun my-company-lighter-current-length ()
  1373. "Get current candidate length."
  1374. (interactive)
  1375. (let ((l nil)
  1376. (inhibit-message t))
  1377. (when (and company-mode
  1378. (not (minibufferp))
  1379. ;; Do nothing when already in company completion
  1380. (not company-candidates))
  1381. ;; FIXME: Somehow it cannto catch errors from ggtags
  1382. (ignore-errors
  1383. ;; (company-auto-begin)
  1384. (company-manual-begin)
  1385. (setq l company-candidates-length)
  1386. (company-cancel)))
  1387. (if l
  1388. (format "[%d]" l)
  1389. "")))
  1390. (defvar company-lighter)
  1391. (set-variable 'company-lighter-base "Cmp")
  1392. ;; (add-to-list 'company-lighter
  1393. ;; '(:eval (my-company-lighter-current-length))
  1394. ;; t)
  1395. ;; This breaks japanese text input
  1396. ;; (set-variable 'my-company-length-popup-tip-timer
  1397. ;; (run-with-idle-timer 0.2 t
  1398. ;; 'my-company-length-popup-tip))
  1399. ;; (current-active-maps)
  1400. ;; (lookup-key)
  1401. '(mapcar (lambda (map)
  1402. (lookup-key map (kbd "C-i")))
  1403. (current-active-maps))
  1404. ;; https://qiita.com/syohex/items/8d21d7422f14e9b53b17
  1405. (set-face-attribute 'company-tooltip nil
  1406. :foreground "black" :background "lightgrey")
  1407. (set-face-attribute 'company-tooltip-common nil
  1408. :foreground "black" :background "lightgrey")
  1409. (set-face-attribute 'company-tooltip-common-selection nil
  1410. :foreground "white" :background "steelblue")
  1411. (set-face-attribute 'company-tooltip-selection nil
  1412. :foreground "black" :background "steelblue")
  1413. (set-face-attribute 'company-preview-common nil
  1414. :background nil :foreground "lightgrey" :underline t)
  1415. (set-face-attribute 'company-scrollbar-fg nil
  1416. :background "orange")
  1417. (set-face-attribute 'company-scrollbar-bg nil
  1418. :background "gray40")
  1419. )
  1420. ;; https://github.com/lunaryorn/flycheck
  1421. ;; TODO: Any way to disable auto check?
  1422. ;; Update flycheck-hooks-alist?
  1423. (when (fboundp 'global-flycheck-mode)
  1424. (add-hook 'after-first-visit-hook
  1425. 'global-flycheck-mode))
  1426. ;; (set-variable 'flycheck-display-errors-delay 2.0)
  1427. ;; (fset 'flycheck-display-error-at-point-soon 'ignore)
  1428. ;; (with-eval-after-load 'flycheck
  1429. ;; (when (fboundp 'flycheck-black-check-setup)
  1430. ;; (flycheck-black-check-setup)))
  1431. (when (fboundp 'ilookup-open-word)
  1432. (define-key ctl-x-map "d" 'ilookup-open-word))
  1433. (set-variable 'ac-ignore-case nil)
  1434. (when (fboundp 'term-run-shell-command)
  1435. (define-key ctl-x-map "t" 'term-run-shell-command))
  1436. (add-to-list 'safe-local-variable-values
  1437. '(encoding utf-8))
  1438. (setq enable-local-variables :safe)
  1439. ;; Detect file type from shebang and set major-mode.
  1440. (add-to-list 'interpreter-mode-alist
  1441. '("python3" . python-mode))
  1442. (add-to-list 'interpreter-mode-alist
  1443. '("python2" . python-mode))
  1444. (with-eval-after-load 'python
  1445. (defvar python-mode-map (make-sparse-keymap))
  1446. (define-key python-mode-map (kbd "C-m") 'newline-and-indent))
  1447. ;; I want to use this, but this breaks normal self-insert-command
  1448. ;; (set-variable 'py-indent-list-style
  1449. ;; 'one-level-to-beginning-of-statement)
  1450. (set-variable 'pydoc-command
  1451. "python3 -m pydoc")
  1452. (declare-function with-venv-advice-add "with-venv")
  1453. (with-eval-after-load 'pydoc
  1454. (when (require 'with-venv nil t)
  1455. (with-venv-advice-add 'pydoc)))
  1456. (set-variable 'flycheck-python-mypy-ini ".mypy.ini")
  1457. (set-variable 'flycheck-flake8rc "setup.cfg")
  1458. (set-variable 'flycheck-python-pylint-executable "python3")
  1459. (set-variable 'flycheck-python-pycompile-executable "python3")
  1460. (set-variable 'python-indent-guess-indent-offset nil)
  1461. (with-eval-after-load 'blacken
  1462. (when (require 'with-venv nil t)
  1463. (with-venv-advice-add 'blacken-buffer)))
  1464. (with-eval-after-load 'ansible-doc
  1465. (when (require 'with-venv nil t)
  1466. (with-venv-advice-add 'ansible-doc)))
  1467. ;; `isortify-buffer' breaks buffer when it contains japanese text
  1468. (defun my-isortify ()
  1469. (interactive)
  1470. (cl-assert buffer-file-name)
  1471. (cl-assert (not (buffer-modified-p)))
  1472. (call-process "python" ;; PROGRAM
  1473. nil ;; INFILE
  1474. nil ;; DESTINATION
  1475. nil ;; DISPLAY
  1476. "-m" "isort" buffer-file-name)
  1477. (message "isortify done")
  1478. (revert-buffer nil t))
  1479. (when (fboundp 'with-venv-advice-add)
  1480. ;; TODO: Lazy load with-venv
  1481. (with-venv-advice-add 'my-isortify))
  1482. ;; https://github.com/lunaryorn/old-emacs-configuration/blob/master/lisp/flycheck-virtualenv.el
  1483. (defun my-set-venv-flycheck-executable-find ()
  1484. "Set flycheck executabie find."
  1485. (interactive)
  1486. (when (fboundp 'with-venv)
  1487. (set-variable 'flycheck-executable-find
  1488. '(lambda (e)
  1489. (with-venv
  1490. (executable-find e)))
  1491. t)))
  1492. (defun my-update-flycheck-flake8-error-level-alist ()
  1493. "Update `flycheck-flake8-error-level-alist'."
  1494. (defvar flycheck-flake8-error-level-alist)
  1495. ;; (add-to-list 'flycheck-flake8-error-level-alist
  1496. ;; '("^D.*$" . warning))
  1497. (set-variable 'flycheck-flake8-error-level-alist
  1498. nil)
  1499. )
  1500. (add-hook 'python-mode-hook
  1501. 'my-set-venv-flycheck-executable-find)
  1502. (add-hook 'python-mode-hook
  1503. 'my-update-flycheck-flake8-error-level-alist)
  1504. (when (fboundp 'with-venv-info-mode)
  1505. (add-hook 'python-mode-hook
  1506. 'with-venv-info-mode))
  1507. ;; Run multiple chekcers
  1508. ;; https://github.com/flycheck/flycheck/issues/186
  1509. (add-hook 'python-mode-hook
  1510. (lambda ()
  1511. ;; Currently on python-mode eldoc-mode sometimes print
  1512. ;; wired message on "from" keyword:
  1513. ;;var from = require("./from")
  1514. (eldoc-mode -1)))
  1515. ;; http://fukuyama.co/foreign-regexp
  1516. '(and (require 'foreign-regexp nil t)
  1517. (progn
  1518. (setq foreign-regexp/regexp-type 'perl)
  1519. '(setq reb-re-syntax 'foreign-regexp)
  1520. ))
  1521. (with-eval-after-load 'sql
  1522. (require 'sql-indent nil t))
  1523. (add-to-list 'auto-mode-alist
  1524. '("\\.hql\\'" . sql-mode))
  1525. (when (fboundp 'git-command)
  1526. (define-key ctl-x-map "g" 'git-command))
  1527. (when (fboundp 'gited-list)
  1528. (defalias 'gited 'gited-list))
  1529. (when (fboundp 'global-git-commit-mode)
  1530. (add-hook 'after-first-visit-hook
  1531. 'global-git-commit-mode)
  1532. (add-hook 'after-first-visit-hook
  1533. 'git-commit-setup-check-buffer))
  1534. (with-eval-after-load 'git-commit
  1535. (add-hook 'git-commit-setup-hook
  1536. 'turn-off-auto-fill t))
  1537. (with-eval-after-load 'rst
  1538. (defvar rst-mode-map)
  1539. (define-key rst-mode-map (kbd "C-m") 'newline-and-indent))
  1540. (with-eval-after-load 'jdee
  1541. (add-hook 'jdee-mode-hook
  1542. (lambda ()
  1543. (make-local-variable 'global-mode-string)
  1544. (add-to-list 'global-mode-string
  1545. mode-line-position))))
  1546. ;; Cannot enable error thrown. Why???
  1547. ;; https://github.com/m0smith/malabar-mode#Installation
  1548. ;; (when (require 'malabar-mode nil t)
  1549. ;; (add-to-list 'load-path
  1550. ;; (expand-file-name (concat user-emacs-directory "/cedet")))
  1551. ;; (require 'cedet-devel-load nil t)
  1552. ;; (eval-after-init (activate-malabar-mode)))
  1553. (with-eval-after-load 'make-mode
  1554. (defvar makefile-mode-map (make-sparse-keymap))
  1555. (define-key makefile-mode-map (kbd "C-m") 'newline-and-indent)
  1556. ;; this functions is set in write-file-functions, i cannot find any
  1557. ;; good way to remove this.
  1558. (fset 'makefile-warn-suspicious-lines 'ignore))
  1559. (with-eval-after-load 'verilog-mode
  1560. (defvar verilog-mode-map (make-sparse-keymap))
  1561. (define-key verilog-mode-map ";" 'self-insert-command))
  1562. (setq diff-switches "-u")
  1563. (autoload 'diff-goto-source "diff-mode" nil t)
  1564. (with-eval-after-load 'diff-mode
  1565. ;; (when (and (eq major-mode
  1566. ;; 'diff-mode)
  1567. ;; (not buffer-file-name))
  1568. ;; ;; do not pass when major-mode is derived mode of diff-mode
  1569. ;; (view-mode 1))
  1570. (set-face-attribute 'diff-header nil
  1571. :foreground nil
  1572. :background nil
  1573. :weight 'bold)
  1574. (set-face-attribute 'diff-file-header nil
  1575. :foreground nil
  1576. :background nil
  1577. :weight 'bold)
  1578. (set-face-foreground 'diff-index "blue")
  1579. (set-face-attribute 'diff-hunk-header nil
  1580. :foreground "cyan"
  1581. :weight 'normal)
  1582. (set-face-attribute 'diff-context nil
  1583. ;; :foreground "white"
  1584. :foreground nil
  1585. :weight 'normal)
  1586. (set-face-foreground 'diff-removed "red")
  1587. (set-face-foreground 'diff-added "green")
  1588. (set-face-background 'diff-removed nil)
  1589. (set-face-background 'diff-added nil)
  1590. (set-face-attribute 'diff-changed nil
  1591. :foreground "magenta"
  1592. :weight 'normal)
  1593. (set-face-attribute 'diff-refine-changed nil
  1594. :foreground nil
  1595. :background nil
  1596. :weight 'bold
  1597. :inverse-video t)
  1598. ;; Annoying !
  1599. ;;(diff-auto-refine-mode)
  1600. )
  1601. ;; (ffap-bindings)
  1602. (set-variable 'browse-url-browser-function
  1603. 'eww-browse-url)
  1604. (set-variable 'sh-here-document-word "__EOC__")
  1605. (with-eval-after-load 'adoc-mode
  1606. (defvar adoc-mode-map)
  1607. (define-key adoc-mode-map (kbd "C-m") 'newline))
  1608. (when (fboundp 'adoc-mode)
  1609. (setq auto-mode-alist
  1610. `(("\\.adoc\\'" . adoc-mode)
  1611. ("\\.asciidoc\\'" . adoc-mode)
  1612. ,@auto-mode-alist)))
  1613. (with-eval-after-load 'markup-faces
  1614. ;; Is this too match ?
  1615. (set-face-foreground 'markup-meta-face
  1616. "color-245")
  1617. (set-face-foreground 'markup-meta-hide-face
  1618. "color-245")
  1619. )
  1620. ;; TODO: check if this is required
  1621. (with-eval-after-load 'groovy-mode
  1622. (defvar groovy-mode-map)
  1623. (define-key groovy-mode-map "(" 'self-insert-command)
  1624. (define-key groovy-mode-map ")" 'self-insert-command)
  1625. (define-key groovy-mode-map (kbd "C-m") 'newline-and-indent)
  1626. )
  1627. (when (fboundp 'groovy-mode)
  1628. (add-to-list 'auto-mode-alist
  1629. '("build\\.gradle\\'" . groovy-mode)))
  1630. (add-to-list 'auto-mode-alist
  1631. '("\\.gawk\\'" . awk-mode))
  1632. (with-eval-after-load 'yaml-mode
  1633. (defvar yaml-mode-map (make-sparse-keymap))
  1634. (define-key yaml-mode-map (kbd "C-m") 'newline))
  1635. (with-eval-after-load 'html-mode
  1636. (defvar html-mode-map (make-sparse-keymap))
  1637. (define-key html-mode-map (kbd "C-m") 'reindent-then-newline-and-indent))
  1638. (with-eval-after-load 'text-mode
  1639. (define-key text-mode-map (kbd "C-m") 'newline))
  1640. (with-eval-after-load 'info
  1641. (defvar Info-additional-directory-list)
  1642. (dolist (dir (directory-files (concat user-emacs-directory
  1643. "info")
  1644. t
  1645. "^[^.].*"))
  1646. (when (file-directory-p dir)
  1647. (add-to-list 'Info-additional-directory-list
  1648. dir)))
  1649. (let ((dir (expand-file-name "~/.brew/share/info")))
  1650. (when (file-directory-p dir)
  1651. (add-to-list 'Info-additional-directory-list
  1652. dir))))
  1653. (with-eval-after-load 'apropos
  1654. (defvar apropos-mode-map (make-sparse-keymap))
  1655. (define-key apropos-mode-map "n" 'next-line)
  1656. (define-key apropos-mode-map "p" 'previous-line))
  1657. ;; `isearch' library does not call `provide' so cannot use with-eval-after-load
  1658. ;; (define-key isearch-mode-map
  1659. ;; (kbd "C-j") 'isearch-other-control-char)
  1660. ;; (define-key isearch-mode-map
  1661. ;; (kbd "C-k") 'isearch-other-control-char)
  1662. ;; (define-key isearch-mode-map
  1663. ;; (kbd "C-h") 'isearch-other-control-char)
  1664. (define-key isearch-mode-map (kbd "C-h") 'isearch-del-char)
  1665. (define-key isearch-mode-map (kbd "M-r")
  1666. 'isearch-query-replace-regexp)
  1667. ;; do not cleanup isearch highlight: use `lazy-highlight-cleanup' to remove
  1668. (setq lazy-highlight-cleanup nil)
  1669. ;; face for isearch highlighing
  1670. (set-face-attribute 'lazy-highlight
  1671. nil
  1672. :foreground `unspecified
  1673. :background `unspecified
  1674. :underline t
  1675. ;; :weight `bold
  1676. )
  1677. (add-hook 'outline-mode-hook
  1678. (lambda ()
  1679. (when (string-match "\\.md\\'" buffer-file-name)
  1680. (setq-local outline-regexp "#+ "))))
  1681. (add-hook 'outline-mode-hook
  1682. 'outline-show-all)
  1683. (add-to-list 'auto-mode-alist (cons "\\.md\\'" 'outline-mode))
  1684. (with-eval-after-load 'markdown-mode
  1685. (defvar gfm-mode-map)
  1686. (define-key gfm-mode-map (kbd "C-m") 'electric-indent-just-newline)
  1687. (define-key gfm-mode-map "`" nil) ;; markdown-electric-backquote
  1688. )
  1689. (when (fboundp 'gfm-mode)
  1690. (add-to-list 'auto-mode-alist (cons "\\.md\\'" 'gfm-mode))
  1691. (add-hook 'markdown-mode-hook
  1692. 'outline-minor-mode)
  1693. (add-hook 'markdown-mode-hook
  1694. (lambda ()
  1695. (setq-local comment-start ";")))
  1696. )
  1697. ;; http://keisanbutsuriya.hateblo.jp/entry/2015/02/10/152543
  1698. ;; M-$ to ispell word
  1699. ;; M-x flyspell-buffer to highlight all suspicious words
  1700. (when (executable-find "aspell")
  1701. (set-variable 'ispell-program-name "aspell")
  1702. (set-variable 'ispell-extra-args '("--lang=en_US")))
  1703. (with-eval-after-load 'ispell
  1704. (add-to-list 'ispell-skip-region-alist '("[^\000-\377]+")))
  1705. (when (fboundp 'flyspell-mode)
  1706. (add-hook 'text-mode-hook
  1707. 'flyspell-mode))
  1708. (when (fboundp 'flyspell-prog-mode)
  1709. (add-hook 'prog-mode-hook
  1710. 'flyspell-prog-mode))
  1711. ;; c-mode
  1712. ;; http://www.emacswiki.org/emacs/IndentingC
  1713. ;; http://en.wikipedia.org/wiki/Indent_style
  1714. ;; http://d.hatena.ne.jp/emergent/20070203/1170512717
  1715. ;; http://seesaawiki.jp/whiteflare503/d/Emacs%20%a5%a4%a5%f3%a5%c7%a5%f3%a5%c8
  1716. (with-eval-after-load 'cc-vars
  1717. (defvar c-default-style nil)
  1718. (add-to-list 'c-default-style
  1719. '(c-mode . "k&r"))
  1720. (add-to-list 'c-default-style
  1721. '(c++-mode . "k&r")))
  1722. (with-eval-after-load 'js2-mode
  1723. ;; currently do not use js2-mode
  1724. ;; (add-to-list 'auto-mode-alist '("\\.js\\'" . js2-mode))
  1725. ;; (add-to-list 'auto-mode-alist '("\\.jsm\\'" . js2-mode))
  1726. ;; (defvar js2-mode-map (make-sparse-keymap))
  1727. ;; (define-key js2-mode-map (kbd "C-m") (lambda ()
  1728. ;; (interactive)
  1729. ;; (js2-enter-key)
  1730. ;; (indent-for-tab-command)))
  1731. ;; (add-hook (kill-local-variable 'before-save-hook)
  1732. ;; 'js2-before-save)
  1733. ;; (add-hook 'before-save-hook
  1734. ;; 'my-indent-buffer
  1735. ;; nil
  1736. ;; t)
  1737. )
  1738. (add-to-list 'interpreter-mode-alist
  1739. '("node" . js-mode))
  1740. (add-hook 'haskell-mode-hook 'turn-on-haskell-indentation)
  1741. (with-eval-after-load 'uniquify
  1742. (setq uniquify-buffer-name-style 'post-forward-angle-brackets)
  1743. (setq uniquify-ignore-buffers-re "*[^*]+*")
  1744. (setq uniquify-min-dir-content 1))
  1745. (with-eval-after-load 'view
  1746. (defvar view-mode-map (make-sparse-keymap))
  1747. (define-key view-mode-map "j" 'scroll-up-line)
  1748. (define-key view-mode-map "k" 'scroll-down-line)
  1749. (define-key view-mode-map "v" 'toggle-read-only)
  1750. (define-key view-mode-map "q" 'bury-buffer)
  1751. ;; (define-key view-mode-map "/" 'nonincremental-re-search-forward)
  1752. ;; (define-key view-mode-map "?" 'nonincremental-re-search-backward)
  1753. ;; (define-key view-mode-map
  1754. ;; "n" 'nonincremental-repeat-search-forward)
  1755. ;; (define-key view-mode-map
  1756. ;; "N" 'nonincremental-repeat-search-backward)
  1757. ;; N conflicts with git-walktree
  1758. ;; (define-key view-mode-map "/" 'isearch-forward-regexp)
  1759. ;; (define-key view-mode-map "?" 'isearch-backward-regexp)
  1760. ;; (define-key view-mode-map "n" 'isearch-repeat-forward)
  1761. ;; (define-key view-mode-map "N" 'isearch-repeat-backward)
  1762. (define-key view-mode-map (kbd "C-m") 'my-rgrep-symbol-at-point))
  1763. (global-set-key "\M-r" 'view-mode)
  1764. ;; (setq view-read-only t)
  1765. (with-eval-after-load 'term
  1766. (defvar term-raw-map (make-sparse-keymap))
  1767. (define-key term-raw-map (kbd "C-x")
  1768. (lookup-key (current-global-map)
  1769. (kbd "C-x"))))
  1770. (add-hook 'term-mode-hook
  1771. (lambda ()
  1772. ;; Stop current line highlighting
  1773. (set-variable 'hl-line-range-function (lambda () '(0 . 0)) t)
  1774. (set-variable 'scroll-margin 0 t)
  1775. ))
  1776. (set-variable 'term-buffer-maximum-size 20480)
  1777. (set-variable 'term-suppress-hard-newline t)
  1778. (add-hook 'Man-mode-hook
  1779. (lambda ()
  1780. (view-mode 1)
  1781. (setq truncate-lines nil)))
  1782. (set-variable 'Man-notify-method (if window-system
  1783. 'newframe
  1784. 'aggressive))
  1785. (set-variable 'woman-cache-filename (expand-file-name (concat user-emacs-directory
  1786. "woman_cache.el")))
  1787. ;; not work because man.el will be loaded when man called
  1788. (defalias 'man 'woman)
  1789. (add-to-list 'auto-mode-alist
  1790. '("tox\\.ini\\'" . conf-unix-mode))
  1791. (when (fboundp 'toml-mode)
  1792. (add-to-list 'auto-mode-alist
  1793. '("/tox\\.ini\\'" . toml-mode))
  1794. (add-to-list 'auto-mode-alist
  1795. '("/Pipfile\\'" . toml-mode))
  1796. (add-to-list 'auto-mode-alist
  1797. '("/poetry\\.lock\\'" . toml-mode))
  1798. )
  1799. (when (fboundp 'json-mode)
  1800. (add-to-list 'auto-mode-alist
  1801. '("/Pipfile\\.lock\\'" . json-mode)))
  1802. (add-hook 'go-mode-hook
  1803. (lambda()
  1804. (defvar go-mode-map)
  1805. (add-hook 'before-save-hook' 'gofmt-before-save nil t)
  1806. (define-key go-mode-map (kbd "M-.") 'godef-jump)))
  1807. (when (fboundp 'k8s-mode)
  1808. (add-to-list 'auto-mode-alist
  1809. '("\\.k8s\\'" . k8s-mode)))
  1810. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1811. ;; buffers
  1812. (defvar bs-configurations)
  1813. (declare-function bs-set-configuration "bs")
  1814. (declare-function bs-refresh "bs")
  1815. (declare-function bs-message-without-log "bs")
  1816. (declare-function bs--current-config-message "bs")
  1817. (with-eval-after-load 'bs
  1818. (add-to-list 'bs-configurations
  1819. '("specials" "^\\*" nil ".*" nil nil))
  1820. (add-to-list 'bs-configurations
  1821. '("files-and-specials" "^\\*" buffer-file-name ".*" nil nil))
  1822. (defvar bs-mode-map)
  1823. (defvar bs-current-configuration)
  1824. (define-key bs-mode-map (kbd "t")
  1825. ;; TODO: fix toggle feature
  1826. (lambda ()
  1827. (interactive)
  1828. (if (string= "specials"
  1829. bs-current-configuration)
  1830. (bs-set-configuration "files")
  1831. (bs-set-configuration "specials"))
  1832. (bs-refresh)
  1833. (bs-message-without-log "%s"
  1834. (bs--current-config-message))))
  1835. ;; (setq bs-configurations (list
  1836. ;; '("processes" nil get-buffer-process ".*" nil nil)
  1837. ;; '("files-and-scratch" "^\\*scratch\\*$" nil nil
  1838. ;; bs-visits-non-file bs-sort-buffer-interns-are-last)))
  1839. )
  1840. (when (fboundp 'bs-show)
  1841. (defalias 'list-buffers 'bs-show)
  1842. (set-variable 'bs-default-configuration "files-and-specials")
  1843. (set-variable 'bs-default-sort-name "by nothing")
  1844. (add-hook 'bs-mode-hook
  1845. (lambda ()
  1846. (setq-local scroll-margin 0)
  1847. (setq-local header-line-format nil)
  1848. (setq-local mode-line-format nil)
  1849. )))
  1850. ;;(iswitchb-mode 1)
  1851. (icomplete-mode)
  1852. (defun iswitchb-buffer-display-other-window ()
  1853. "Do iswitchb in other window."
  1854. (interactive)
  1855. (let ((iswitchb-default-method 'display))
  1856. (call-interactively 'iswitchb-buffer)))
  1857. ;; buffer killing
  1858. ;; (defun my-delete-window-killing-buffer () nil)
  1859. (defun my-query-kill-current-buffer ()
  1860. "Interactively kill current buffer."
  1861. (interactive)
  1862. (if (y-or-n-p (concat "kill current buffer? :"))
  1863. (kill-buffer (current-buffer))))
  1864. (defun my-force-query-kill-current-buffer ()
  1865. "Interactively kill current buffer."
  1866. (interactive)
  1867. (when (y-or-n-p (concat "kill current buffer? :"))
  1868. (let ((kill-buffer-hook nil)
  1869. (kill-buffer-query-functions nil))
  1870. (kill-buffer (current-buffer)))))
  1871. ;;(global-set-key "\C-xk" 'my-query-kill-current-buffer)
  1872. ;; Originally C-x C-k -> kmacro-keymap
  1873. ;; (global-set-key "\C-x\C-k" 'kmacro-keymap)
  1874. (global-set-key (kbd "C-x C-k") 'my-query-kill-current-buffer)
  1875. (substitute-key-definition 'kill-buffer
  1876. 'my-query-kill-current-buffer
  1877. global-map)
  1878. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1879. ;; dired
  1880. (defun my-file-head (filename &optional n)
  1881. "Return list of first N lines of file FILENAME."
  1882. ;; TODO: Fix for janapese text
  1883. ;; TODO: Fix for short text
  1884. (let ((num (or n 10))
  1885. (size 100)
  1886. (beg 0)
  1887. (end 0)
  1888. (result '())
  1889. (read -1))
  1890. (with-temp-buffer
  1891. (erase-buffer)
  1892. (while (or (<= (count-lines (point-min)
  1893. (point-max))
  1894. num)
  1895. (eq read 0))
  1896. (setq end (+ beg size))
  1897. (setq read (nth 1 (insert-file-contents-literally filename
  1898. nil
  1899. beg
  1900. end)))
  1901. (goto-char (point-max))
  1902. (setq beg (+ beg size)))
  1903. (goto-char (point-min))
  1904. (while (< (length result) num)
  1905. (let ((start (point)))
  1906. (forward-line 1)
  1907. (setq result
  1908. `(,@result ,(buffer-substring-no-properties start
  1909. (point))))))
  1910. result
  1911. ;; (buffer-substring-no-properties (point-min)
  1912. ;; (progn
  1913. ;; (forward-line num)
  1914. ;; (point)))
  1915. )))
  1916. ;; (apply 'concat (my-file-head "./shrc" 10)
  1917. (declare-function dired-get-filename "dired" t)
  1918. (defun my-dired-echo-file-head (arg)
  1919. "Echo head of current file.
  1920. ARG is num to show, or defaults to 7."
  1921. (interactive "P")
  1922. (let ((f (dired-get-filename)))
  1923. (message "%s"
  1924. (apply 'concat
  1925. (my-file-head f
  1926. 7)))))
  1927. (declare-function dired-get-marked-files "dired")
  1928. (defun my-dired-diff ()
  1929. "Show diff of marked file and file of current line."
  1930. (interactive)
  1931. (let ((files (dired-get-marked-files nil nil nil t)))
  1932. (if (eq (car files)
  1933. t)
  1934. (diff (cadr files) (dired-get-filename))
  1935. (message "One file must be marked!"))))
  1936. (defun dired-get-file-info ()
  1937. "Print information of current line file."
  1938. (interactive)
  1939. (let* ((file (dired-get-filename t))
  1940. (quoted (shell-quote-argument file)))
  1941. (if (file-directory-p file)
  1942. (progn
  1943. (message "Calculating disk usage...")
  1944. (let ((du (or (executable-find "gdu")
  1945. (executable-find "du")
  1946. (error "du not found"))))
  1947. (shell-command (concat du
  1948. " -hsD "
  1949. quoted))))
  1950. (shell-command (concat "file "
  1951. quoted)))))
  1952. (defun my-dired-scroll-up ()
  1953. "Scroll up."
  1954. (interactive)
  1955. (my-dired-previous-line (- (window-height) 1)))
  1956. (defun my-dired-scroll-down ()
  1957. "Scroll down."
  1958. (interactive)
  1959. (my-dired-next-line (- (window-height) 1)))
  1960. ;; (defun my-dired-forward-line (arg)
  1961. ;; ""
  1962. ;; (interactive "p"))
  1963. (declare-function dired-get-subdir "dired")
  1964. (declare-function dired-move-to-filename "dired")
  1965. (defun my-dired-previous-line (arg)
  1966. "Move ARG lines up."
  1967. (interactive "p")
  1968. (if (> arg 0)
  1969. (progn
  1970. (if (eq (line-number-at-pos)
  1971. 1)
  1972. (goto-char (point-max))
  1973. (forward-line -1))
  1974. (my-dired-previous-line (if (or (dired-get-filename nil t)
  1975. (dired-get-subdir))
  1976. (- arg 1)
  1977. arg)))
  1978. (dired-move-to-filename)))
  1979. (defun my-dired-next-line (arg)
  1980. "Move ARG lines down."
  1981. (interactive "p")
  1982. (if (> arg 0)
  1983. (progn
  1984. (if (eq (point)
  1985. (point-max))
  1986. (goto-char (point-min))
  1987. (forward-line 1))
  1988. (my-dired-next-line (if (or (dired-get-filename nil t)
  1989. (dired-get-subdir))
  1990. (- arg 1)
  1991. arg)))
  1992. (dired-move-to-filename)))
  1993. (defun my-tramp-remote-find-file (f)
  1994. "Open F."
  1995. (interactive (list (read-file-name "My Find File Tramp: "
  1996. "/scp:"
  1997. nil ;; "/scp:"
  1998. (confirm-nonexistent-file-or-buffer))))
  1999. (find-file f))
  2000. ;;http://bach.istc.kobe-u.ac.jp/lect/tamlab/ubuntu/emacs.html
  2001. (if (eq window-system 'mac)
  2002. (setq dired-listing-switches "-lhF")
  2003. (setq dired-listing-switches "-lhF --time-style=long-iso")
  2004. )
  2005. (setq dired-listing-switches "-lhF")
  2006. ;; when using dired-find-alternate-file
  2007. ;; reuse current dired buffer for the file to open
  2008. ;; (put 'dired-find-alternate-file 'disabled nil)
  2009. (set-variable 'dired-ls-F-marks-symlinks t)
  2010. (set-variable 'ls-lisp-use-insert-directory-program nil) ; always use ls-lisp
  2011. (set-variable 'ls-lisp-dirs-first t)
  2012. (set-variable 'ls-lisp-use-localized-time-format t)
  2013. (set-variable 'ls-lisp-format-time-list
  2014. '("%Y-%m-%d %H:%M"
  2015. "%Y-%m-%d "))
  2016. (set-variable 'dired-dwim-target t)
  2017. (set-variable 'dired-isearch-filenames t)
  2018. (set-variable 'dired-hide-details-hide-symlink-targets nil)
  2019. (set-variable 'dired-hide-details-hide-information-lines nil)
  2020. (set-variable 'dired-deletion-confirmer 'y-or-n-p)
  2021. (set-variable 'dired-recursive-deletes 'always)
  2022. ;; (add-hook 'dired-after-readin-hook
  2023. ;; 'my-replace-nasi-none)
  2024. (with-eval-after-load 'dired
  2025. (require 'ls-lisp nil t)
  2026. (defvar dired-mode-map (make-sparse-keymap))
  2027. ;; dired-do-chgrp sometimes cause system hung
  2028. (define-key dired-mode-map "G" 'ignore)
  2029. (define-key dired-mode-map "e" 'wdired-change-to-wdired-mode)
  2030. (define-key dired-mode-map "i" 'dired-get-file-info)
  2031. ;; (define-key dired-mode-map "f" 'find-file)
  2032. (define-key dired-mode-map "f" 'my-fzf-or-find-file)
  2033. (define-key dired-mode-map "z" 'fzf)
  2034. (define-key dired-mode-map "!" 'shell-command)
  2035. (define-key dired-mode-map "&" 'async-shell-command)
  2036. (define-key dired-mode-map "X" 'dired-do-async-shell-command)
  2037. (define-key dired-mode-map "=" 'my-dired-diff)
  2038. (define-key dired-mode-map "B" 'gtkbm-add-current-dir)
  2039. (define-key dired-mode-map "b" 'gtkbm)
  2040. (define-key dired-mode-map "h" 'my-dired-echo-file-head)
  2041. (define-key dired-mode-map (kbd "TAB") 'other-window)
  2042. ;; (define-key dired-mode-map "P" 'my-dired-do-pack-or-unpack)
  2043. (define-key dired-mode-map "/" 'dired-isearch-filenames)
  2044. (define-key dired-mode-map (kbd "DEL") 'dired-up-directory)
  2045. (define-key dired-mode-map (kbd "C-h") 'dired-up-directory)
  2046. (substitute-key-definition 'dired-next-line
  2047. 'my-dired-next-line
  2048. dired-mode-map)
  2049. (substitute-key-definition 'dired-previous-line
  2050. 'my-dired-previous-line
  2051. dired-mode-map)
  2052. ;; (define-key dired-mode-map (kbd "C-p") 'my-dired-previous-line)
  2053. ;; (define-key dired-mode-map (kbd "p") 'my-dired-previous-line)
  2054. ;; (define-key dired-mode-map (kbd "C-n") 'my-dired-next-line)
  2055. ;; (define-key dired-mode-map (kbd "n") 'my-dired-next-line)
  2056. (define-key dired-mode-map (kbd "<left>") 'my-dired-scroll-up)
  2057. (define-key dired-mode-map (kbd "<right>") 'my-dired-scroll-down)
  2058. (define-key dired-mode-map (kbd "ESC p") 'my-dired-scroll-up)
  2059. (define-key dired-mode-map (kbd "ESC n") 'my-dired-scroll-down)
  2060. (add-hook 'dired-mode-hook
  2061. (lambda ()
  2062. (when (fboundp 'dired-hide-details-mode)
  2063. (dired-hide-details-mode t)
  2064. (local-set-key "l" 'dired-hide-details-mode))
  2065. (let ((file "._Icon\015"))
  2066. (when nil
  2067. '(file-readable-p file)
  2068. (delete-file file)))))
  2069. (when (fboundp 'pack-dired-dwim)
  2070. (with-eval-after-load 'dired
  2071. (define-key dired-mode-map "P" 'pack-dired-dwim)))
  2072. (when (fboundp 'dired-list-all-mode)
  2073. (setq dired-listing-switches "-lhF")
  2074. (with-eval-after-load 'dired
  2075. (define-key dired-mode-map "a" 'dired-list-all-mode))))
  2076. (when (fboundp 'dired-filter-mode)
  2077. (add-hook 'dired-mode-hook
  2078. 'dired-filter-mode))
  2079. (set-variable 'dired-filter-stack nil)
  2080. ;; Currently disabled in favor of dired-from-git-ls-files
  2081. ;; (define-key ctl-x-map "f" 'find-dired)
  2082. (defvar my-dired-git-ls-files-history
  2083. "History for `my-dired-git-ls-files'." nil)
  2084. (defun my-dired-git-ls-files (arg)
  2085. "Dired from git ls-files."
  2086. (interactive (list
  2087. (read-shell-command "git ls-files: "
  2088. "git ls-files -z ")))
  2089. (pop-to-buffer-same-window
  2090. (dired-noselect `(,default-directory
  2091. ,@(split-string (shell-command-to-string arg)
  2092. "\0" t))
  2093. ""))
  2094. )
  2095. (define-key ctl-x-map (kbd "G") 'my-dired-git-ls-files)
  2096. (with-eval-after-load 'dired
  2097. (defvar dired-mode-map (make-sparse-keymap))
  2098. (define-key dired-mode-map "G" 'my-dired-git-ls-files))
  2099. (with-eval-after-load 'pack
  2100. (set-variable 'pack-silence
  2101. t)
  2102. (defvar pack-program-alist)
  2103. (add-to-list 'pack-program-alist
  2104. '("\\.txz\\'" :pack "tar -cJf" :unpack "tar -xf"))
  2105. (when (executable-find "aunpack")
  2106. (add-to-list 'pack-program-alist
  2107. ' ("\\.zip\\'"
  2108. :pack ("zip" "-r" archive sources)
  2109. :pack-append ("zip" "-r" archive sources)
  2110. :unpack ("aunpack" archive))))
  2111. )
  2112. ;; dired-k
  2113. ;; Current HEAD of original repo is broken
  2114. ;; https://github.com/syohex/emacs-dired-k/issues/45
  2115. (declare-function dired-k-no-revert "dired-k")
  2116. (when (fboundp 'dired-k)
  2117. (set-variable 'dired-k-style 'git)
  2118. ;; What is the best way of doing this?
  2119. (with-eval-after-load 'dired-k
  2120. (fset 'dired-k--highlight-by-file-attribyte 'ignore))
  2121. ;; (set-variable 'dired-k-size-colors
  2122. ;; `((,most-positive-fixnum)))
  2123. ;; (set-variable 'dired-k-date-colors
  2124. ;; `((,most-positive-fixnum)))
  2125. (let* ((pkg (cadr (assq 'dired-k
  2126. package-alist)))
  2127. (version-str (package-version-join (package-desc-version pkg))))
  2128. ;; Currently dired-k HEAD of original repository is broken so do not use that
  2129. (when (string= version-str
  2130. "20171017.1228")
  2131. ;; always execute dired-k when dired buffer is opened and reverted
  2132. (add-hook 'dired-after-readin-hook #'dired-k-no-revert)
  2133. ;; This still create index.lock files...........................
  2134. ;; (add-hook 'switch-buffer-functions
  2135. ;; (lambda (prev cur)
  2136. ;; (when (derived-mode-p 'dired-mode)
  2137. ;; (dired-k-no-revert))))
  2138. )))
  2139. ;; (when (eval-and-compile (require 'dired-rainbow nil t))
  2140. ;; (dired-rainbow-define gtags "brightblack" "GTAGS"))
  2141. ;; ?
  2142. ;; (set-variable 'dired-omit-files
  2143. ;; (rx (or (regexp "^\\.?#")
  2144. ;; (regexp "^\\.$")
  2145. ;; (regexp "^\\.\\.$")
  2146. ;; (regexp "^GPATH$")
  2147. ;; (regexp "^GRTAGS$")
  2148. ;; (regexp "^GTAGS$")
  2149. ;; )))
  2150. (with-eval-after-load 'diredfl
  2151. (set-face-foreground 'diredfl-file-name nil)
  2152. )
  2153. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  2154. ;; misc funcs
  2155. (define-key ctl-x-map "T" 'git-worktree)
  2156. (define-key ctl-x-map "W" 'git-walktree)
  2157. (when (fboundp 'browse-url-default-macosx-browser)
  2158. (defalias 'browse-osx 'browse-url-default-macosx-browser))
  2159. (defalias 'qcalc 'quick-calc)
  2160. (defun memo (&optional dir)
  2161. "Open memo.txt in DIR."
  2162. (interactive)
  2163. (pop-to-buffer (find-file-noselect (concat (if dir
  2164. (file-name-as-directory dir)
  2165. "")
  2166. "memo.txt"))))
  2167. ;; TODO: remember-projectile
  2168. (set (defvar my-privnotes-path nil
  2169. "My privnotes repository path.")
  2170. (expand-file-name "~/my/privnotes"))
  2171. (defun my-privnotes-readme (dir)
  2172. "Open my privnotes DIR."
  2173. (interactive (list
  2174. (read-file-name "Privnotes: "
  2175. (expand-file-name (format-time-string "%Y%m%d_")
  2176. my-privnotes-path))))
  2177. (let ((path (expand-file-name "README.md" dir)))
  2178. (with-current-buffer (find-file path)
  2179. (unless (file-exists-p path)
  2180. (insert (file-name-base dir)
  2181. "\n"
  2182. "=======\n"
  2183. "\n\n")))))
  2184. (define-key ctl-x-map "p" 'my-privnotes-readme)
  2185. (set (defvar my-rgrep-alist nil
  2186. "Alist of rgrep command.
  2187. Each element is in the form like (NAME SEXP COMMAND), where SEXP returns the
  2188. condition to choose COMMAND when evaluated.")
  2189. `(
  2190. ;; ripgrep
  2191. ("rg"
  2192. (executable-find "rg")
  2193. "rg -nH --no-heading --hidden --glob '!.git/' --smart-case -M 1280 ")
  2194. ;; git grep
  2195. ("gitgrep"
  2196. (eq 0
  2197. (shell-command "git rev-parse --git-dir"))
  2198. "git --no-pager grep -nH -e ")
  2199. ;; sift
  2200. ("sift"
  2201. (executable-find "sift")
  2202. ("sift --binary-skip --filename --line-number --git --smart-case "))
  2203. ;; the silver searcher
  2204. ("ag"
  2205. (executable-find "ag")
  2206. "ag --nogroup --nopager --filename ")
  2207. ;; ack
  2208. ("ack"
  2209. (executable-find "ack")
  2210. "ack --nogroup --nopager --with-filename ")
  2211. ;; gnu global
  2212. ("global"
  2213. (and (require 'ggtags nil t)
  2214. (executable-find "global")
  2215. (ggtags-current-project-root))
  2216. "global --result grep ")
  2217. ;; grep
  2218. ("grep"
  2219. t
  2220. ,(concat "find . "
  2221. "-path '*/.git' -prune -o "
  2222. "-path '*/.svn' -prune -o "
  2223. "-type f -print0 | "
  2224. "xargs -0 grep -nH -e "))
  2225. )
  2226. )
  2227. (defvar my-rgrep-default nil
  2228. "Default command name for my-rgrep.")
  2229. (defun my-rgrep-grep-command (&optional name alist)
  2230. "Return recursive grep command for current directory or nil.
  2231. If NAME is given, use that without testing.
  2232. Commands are searched from ALIST."
  2233. (if alist
  2234. (if name
  2235. ;; if name is given search that from alist and return the command
  2236. (nth 2 (assoc name
  2237. alist))
  2238. ;; if name is not given try test in 1th elem
  2239. (let ((car (car alist))
  2240. (cdr (cdr alist)))
  2241. (if (eval (nth 1 car))
  2242. ;; if the condition is true return the command
  2243. (nth 2 car)
  2244. ;; try next one
  2245. (and cdr
  2246. (my-rgrep-grep-command name cdr)))))
  2247. ;; if alist is not given set default value
  2248. (my-rgrep-grep-command name my-rgrep-alist)))
  2249. (declare-function projectile-project-p "projectile")
  2250. (declare-function projectile-with-default-dir "projectile")
  2251. (declare-function projectile-project-root "projectile")
  2252. (defun my-rgrep (command-args)
  2253. "My recursive grep. Run COMMAND-ARGS.
  2254. If prefix argument is given, use current symbol as default search target
  2255. and search from projectile root (if projectile is available)."
  2256. (interactive (let ((cmd (my-rgrep-grep-command my-rgrep-default
  2257. nil)))
  2258. (if cmd
  2259. (list (read-shell-command "grep command: "
  2260. (concat cmd
  2261. (if current-prefix-arg
  2262. (thing-at-point 'symbol t)
  2263. ""))
  2264. 'grep-find-history))
  2265. (error "My-Rgrep: Command for rgrep not found")
  2266. )))
  2267. (if (and current-prefix-arg
  2268. (eval-and-compile (require 'projectile nil t))
  2269. (projectile-project-p))
  2270. (projectile-with-default-dir (projectile-project-root)
  2271. (compilation-start command-args
  2272. 'grep-mode))
  2273. (compilation-start command-args
  2274. 'grep-mode)))
  2275. (defun my-rgrep-thing-at-point-projectile-root ()
  2276. "My recursive grep to find thing at point from project root."
  2277. (interactive)
  2278. (let* ((cmd (my-rgrep-grep-command my-rgrep-default
  2279. nil))
  2280. (command-args
  2281. (if cmd
  2282. (concat cmd
  2283. (or (thing-at-point 'symbol t)
  2284. (error "No symbol at point")))
  2285. (error "My-Rgrep: Command for rgrep not found"))))
  2286. (if (eval-and-compile (require 'projectile nil t))
  2287. (projectile-with-default-dir (or (projectile-project-root)
  2288. default-directory)
  2289. (compilation-start command-args
  2290. 'grep-mode))
  2291. (compilation-start command-args
  2292. 'grep-mode))))
  2293. (defmacro define-my-rgrep (name)
  2294. "Define rgrep for NAME."
  2295. `(defun ,(intern (concat "my-rgrep-"
  2296. name)) ()
  2297. ,(format "My recursive grep by %s."
  2298. name)
  2299. (interactive)
  2300. (let ((my-rgrep-default ,name))
  2301. (if (called-interactively-p 'any)
  2302. (call-interactively 'my-rgrep)
  2303. (error "Not intended to be called noninteractively. Use `my-rgrep'"))))
  2304. )
  2305. (define-my-rgrep "ack")
  2306. (define-my-rgrep "ag")
  2307. (define-my-rgrep "rg")
  2308. (define-my-rgrep "sift")
  2309. (define-my-rgrep "gitgrep")
  2310. (define-my-rgrep "grep")
  2311. (define-my-rgrep "global")
  2312. (define-key ctl-x-map "s" 'my-rgrep)
  2313. (define-key ctl-x-map "." 'my-rgrep-thing-at-point-projectile-root)
  2314. (defun my-occur (regexp &optional region)
  2315. "My occur command to search REGEXP to search REGION."
  2316. (interactive (list (read-string "List lines matching regexp: "
  2317. (thing-at-point 'symbol t))))
  2318. (occur regexp nil region))
  2319. (define-key ctl-x-map (kbd "C-o") 'my-occur)
  2320. (set-variable 'dumb-jump-prefer-searcher 'rg)
  2321. (defalias 'make 'compile)
  2322. (define-key ctl-x-map "c" 'compile)
  2323. (autoload 'pb/push-item "pushbullet")
  2324. (defun my-pushbullet-note (text &optional title)
  2325. "Push TEXT with optional TITLE."
  2326. (interactive "sText to Push: ")
  2327. (pb/push-item '("") text "note" (or title "")))
  2328. ;;;;;;;;;;;;;;;;;;;;;
  2329. ;; git-bug
  2330. (defconst git-bug-ls-regexp
  2331. (eval-when-compile
  2332. (rx bol
  2333. (submatch (one-or-more alphanumeric)) ; id
  2334. ;; (one-or-more any)
  2335. (one-or-more space)
  2336. (submatch (or "open" "close")) ; status
  2337. (one-or-more space)
  2338. (submatch (maximal-match (zero-or-more print))) ; title
  2339. "\t"
  2340. (submatch (one-or-more alphanumeric)) ; user
  2341. (one-or-more space)
  2342. "C:"
  2343. (submatch (one-or-more digit)) ; Comment num
  2344. (one-or-more space)
  2345. "L:"
  2346. (submatch (one-or-more digit)) ; Label num
  2347. eol
  2348. ))
  2349. "Regexp to parse line of output of git-bug ls.
  2350. Used by `git-bug-ls'.")
  2351. (declare-function string-trim "subr-x")
  2352. (defun git-bug-bugs ()
  2353. "Get list of git-bug bugs."
  2354. (with-temp-buffer
  2355. (git-bug--call-process "bug" "ls")
  2356. (goto-char (point-min))
  2357. (let ((bugs nil))
  2358. (while (not (eq (point) (point-max)))
  2359. (save-match-data
  2360. (when (re-search-forward git-bug-ls-regexp (point-at-eol) t)
  2361. (setq bugs `(,@bugs
  2362. ,(list
  2363. :id (match-string 1)
  2364. :status (match-string 2)
  2365. :title (string-trim (match-string 3))
  2366. :user (match-string 4)
  2367. :comment-num (match-string 5)
  2368. :label-num (match-string 6)
  2369. )))))
  2370. (forward-line 1)
  2371. (goto-char (point-at-bol)))
  2372. bugs)))
  2373. (defun git-bug-ls ()
  2374. "Open and select git bug list buffer."
  2375. (interactive)
  2376. (pop-to-buffer (git-bug-ls-noselect)))
  2377. (defun git-bug-ls--set-tabulated-list-mode-variables ()
  2378. "Not implemented.")
  2379. (defun git-bug-ls-mode ()
  2380. "Not implemented.")
  2381. (defun git-bug-ls-noselect (&optional directory)
  2382. "Open git bug list buffer.
  2383. If optional arg DIRECTORY is given change current directory to there before
  2384. initializing."
  2385. (setq directory (expand-file-name (or directory
  2386. default-directory)))
  2387. (cl-assert (file-directory-p directory))
  2388. (let* ((root (git-bug--get-repository-root directory))
  2389. (name (file-name-nondirectory root))
  2390. (bname (format "*GitBug<%s>*" name)))
  2391. (with-current-buffer (get-buffer-create bname)
  2392. (cd root)
  2393. (git-bug-ls--set-tabulated-list-mode-variables)
  2394. (git-bug-ls-mode)
  2395. (current-buffer))))
  2396. (defun git-bug--get-repository-root (dir)
  2397. "Resolve repository root of DIR.
  2398. If DIR is not inside of any git repository, signal an error."
  2399. (cl-assert (file-directory-p dir))
  2400. (with-temp-buffer
  2401. (cd dir)
  2402. (git-bug--call-process "rev-parse" "--show-toplevel")
  2403. (goto-char (point-min))
  2404. (buffer-substring-no-properties (point-at-bol) (point-at-eol))))
  2405. (defun git-bug--call-process (&rest args)
  2406. "Start git process synchronously with ARGS.
  2407. Raise error when git process ends with non-zero status.
  2408. Any output will be written to current buffer."
  2409. (let ((status (apply 'call-process
  2410. "git"
  2411. nil
  2412. t
  2413. nil
  2414. args)))
  2415. (cl-assert (eq status 0)
  2416. nil
  2417. (buffer-substring-no-properties (point-min) (point-max)))))
  2418. ;;;;;;;;;;;;;;;;;;;
  2419. ;; peek-file-mode
  2420. (defvar peek-file-buffers
  2421. ()
  2422. "Peek buffers.")
  2423. (defun peek-file (file)
  2424. "Peek FILE."
  2425. (interactive "fFile to peek: ")
  2426. (with-current-buffer (find-file file)
  2427. (peek-file-mode)))
  2428. (define-minor-mode peek-file-mode
  2429. "Peek file mode."
  2430. :lighter "PK"
  2431. (view-mode peek-file-mode)
  2432. (add-to-list 'peek-file-buffers
  2433. (current-buffer))
  2434. (add-hook 'switch-buffer-functions
  2435. 'peek-file-remove-buffers))
  2436. (defun peek-file-remove-buffers (&args _)
  2437. "Remove peek file buffers."
  2438. (cl-dolist (buf (cl-copy-list peek-file-buffers))
  2439. (unless (get-buffer-window buf t)
  2440. (setq peek-file-buffers
  2441. (delq buf
  2442. peek-file-buffers))
  2443. (with-current-buffer buf
  2444. (when peek-file-mode
  2445. (kill-buffer))))))
  2446. ;;;;;;;;;;;;;;;;;;;;
  2447. ;; remember-projectile
  2448. ;; TODO: Add global-minor-mode
  2449. (defvar remember-data-file)
  2450. (defun my-set-remember-data-file-buffer-local ()
  2451. "Set `remember-data-file'."
  2452. (when (require 'projectile nil t)
  2453. (setq-local remember-data-file
  2454. (expand-file-name ".remember.notes"
  2455. (projectile-project-root)))))
  2456. (add-hook 'after-change-major-mode-hook
  2457. 'my-set-remember-data-file-buffer-local)
  2458. (define-key ctl-x-map "R" 'remember)
  2459. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  2460. ;; ivy
  2461. ;; (set-variable 'enable-recursive-minibuffers t)
  2462. ;; (minibuffer-depth-indicate-mode 1)
  2463. (declare-function ivy--regex-ignore-order "ivy")
  2464. (declare-function ivy--regex-fuzzy "ivy")
  2465. (defun my--ivy-regex-fuzzy-ignore-order (str)
  2466. "Re-build regex from STR for ignore-order fuzzy match."
  2467. (let ((re-list (ivy--regex-ignore-order str)))
  2468. (if (listp re-list)
  2469. (mapcar (lambda (e)
  2470. (let ((head (car e))
  2471. (tail (cdr e)))
  2472. (if tail
  2473. (cons (ivy--regex-fuzzy head)
  2474. tail)
  2475. (cons head tail))))
  2476. re-list)
  2477. (ivy--regex-fuzzy re-list))))
  2478. ;; (my--ivy-regex-fuzzy-ignore-order "ab bc !cee")
  2479. ;; (ivy--regex-fuzzy "ab")
  2480. ;; (ivy--regex-ignore-order "a b")
  2481. (set-variable 'ivy-re-builders-alist
  2482. '((t . my--ivy-regex-fuzzy-ignore-order)))
  2483. ;; (set-variable 'ivy-format-functions-alist
  2484. ;; '((t . ivy-format-function-arrow)))
  2485. (set-variable 'ivy-format-functions-alist
  2486. '((t . (lambda (cands) (ivy--format-function-generic
  2487. (lambda (str)
  2488. (concat "+> "
  2489. (ivy--add-face str 'ivy-current-match)
  2490. ))
  2491. (lambda (str)
  2492. (concat "| " str))
  2493. cands
  2494. "\n")))))
  2495. (set-variable 'ivy-wrap t)
  2496. (set-variable 'ivy-sort-max-size 500)
  2497. (when (fboundp 'ivy-rich-mode)
  2498. (ivy-rich-mode 1))
  2499. (with-eval-after-load 'ivy
  2500. (defvar ivy-minibuffer-map)
  2501. (define-key ivy-minibuffer-map (kbd "C-u")
  2502. (lambda () (interactive) (delete-region (point-at-bol) (point)))))
  2503. (set-variable 'ivy-on-del-error-function 'ignore)
  2504. (when (fboundp 'counsel-M-x)
  2505. (define-key esc-map "x" 'counsel-M-x)
  2506. ;; (counsel-mode 1)
  2507. ;; counsel-fzf executes fzf -f QUERY for each input
  2508. ;; (define-key ctl-x-map "f"
  2509. ;; (lambda ()
  2510. ;; (interactive
  2511. ;; (let ((process-environment (cl-copy-list process-environment)))
  2512. ;; (setenv "FZF_DEFAULT_COMMAND" nil)
  2513. ;; (counsel-fzf)))))
  2514. )
  2515. ;; (when (fboundp 'counsel-switch-buffer)
  2516. ;; (define-key ctl-x-map (kbd "C-b") 'counsel-switch-buffer))
  2517. (declare-function ivy-thing-at-point "ivy")
  2518. (when (and (fboundp 'ivy-read)
  2519. (locate-library "counsel"))
  2520. (defvar counsel-describe-map)
  2521. (defun my-counsel-describe-symbol ()
  2522. "Forwaord to `describe-symbol'."
  2523. (interactive)
  2524. (cl-assert (eval-and-compile (require 'help-mode nil t))) ;; describe-symbol-backends
  2525. (cl-assert (eval-and-compile (require 'counsel nil t)))
  2526. (ivy-read "Describe symbol: " obarray
  2527. ;; From describe-symbol definition
  2528. :predicate (lambda (vv)
  2529. (cl-some (lambda (x) (funcall (nth 1 x) vv))
  2530. describe-symbol-backends))
  2531. :require-match t
  2532. :history 'counsel-describe-symbol-history
  2533. :keymap counsel-describe-map
  2534. :preselect (ivy-thing-at-point)
  2535. :action (lambda (x)
  2536. (describe-symbol (intern x)))
  2537. :caller 'my-counsel-describe-symbol))
  2538. (define-key help-map "o" 'my-counsel-describe-symbol)
  2539. )
  2540. ;; (defun my-ivy-length (x y)
  2541. ;; "Ivy sort to order by string length."
  2542. ;; (<= (length (if (consp x) (car x) x))
  2543. ;; (length (if (consp y) (car y) y))))
  2544. ;; (my-ivy-length "a" (cons "bc" t))
  2545. ;; (my-ivy-length "a" (cons "c" t))
  2546. (declare-function ivy-configure "ivy")
  2547. (with-eval-after-load 'counsel ;; Hook to counsel, not ivy
  2548. ;; (ivy-configure 'my-counsel-describe-symbol
  2549. ;; :sort-fn 'my-ivy-length)
  2550. (ivy-configure 'counsel-M-x
  2551. :initial-input ""
  2552. ;; :sort-fn 'my-ivy-length
  2553. )
  2554. (defvar ivy-sort-matches-functions-alist)
  2555. (add-to-list 'ivy-sort-matches-functions-alist
  2556. '(my-counsel-describe-symbol . ivy--shorter-matches-first))
  2557. (add-to-list 'ivy-sort-matches-functions-alist
  2558. '(counsel-M-x . ivy--shorter-matches-first))
  2559. )
  2560. (when (fboundp 'counsel-imenu)
  2561. (define-key ctl-x-map "l" 'counsel-imenu))
  2562. (when (fboundp 'swiper)
  2563. (define-key esc-map (kbd "C-s") 'swiper))
  2564. ;; ?
  2565. (define-key input-decode-map "\e[1;5C" [C-right])
  2566. (define-key input-decode-map "\e[1;5D" [C-left])
  2567. ;;;;;;;;;;;;;;;;;;;;;;;;
  2568. ;; mozc
  2569. (global-set-key (kbd "C-c m e") 'ignore)
  2570. (global-set-key (kbd "C-c m d") 'ignore)
  2571. ;; mozc
  2572. (when (locate-library "mozc")
  2573. ;; https://tottoto.net/mac-emacs-karabiner-elements-japanese-input-method-config/
  2574. (with-eval-after-load 'mozc
  2575. ;; (define-key mozc-mode-map (kbd "C-h") 'backward-delete-char)
  2576. ;; (define-key mozc-mode-map (kbd "C-p") (kbd "<up>"))
  2577. ;; (define-key mozc-mode-map (kbd "C-n") (kbd "SPC"))
  2578. )
  2579. (setq default-input-method "japanese-mozc")
  2580. (custom-set-variables '(mozc-leim-title "あ"))
  2581. (defun turn-on-input-method ()
  2582. (interactive)
  2583. (activate-input-method default-input-method))
  2584. (defun turn-off-input-method ()
  2585. (interactive)
  2586. (deactivate-input-method))
  2587. ;; (setq mozc-candidate-style 'echo-area)
  2588. (global-set-key (kbd "C-c m e") 'turn-on-input-method)
  2589. (global-set-key (kbd "C-c m d") 'turn-off-input-method)
  2590. (global-set-key (kbd "<f7>") 'turn-off-input-method)
  2591. (global-set-key (kbd "<f8>") 'turn-on-input-method)
  2592. (require 'mozc-popup)
  2593. (set-variable 'mozc-candidate-style 'popup)
  2594. ;; これいる?
  2595. (when (require 'mozc-im nil t)
  2596. (setq default-input-method "japanese-mozc-im")
  2597. ;; (global-set-key (kbd "C-j") 'toggle-input-method)
  2598. )
  2599. )
  2600. ;;;;;;;;;;;;;;
  2601. ;; mmv
  2602. ;; https://www.emacswiki.org/emacs/MakingMarkVisible
  2603. ;;;; Make the mark visible, and the visibility toggleable. ('mmv' means 'make
  2604. ;;;; mark visible'.) By Patrick Gundlach, Teemu Leisti, and Stefan.
  2605. (defgroup mmv nil
  2606. "Make mark visible."
  2607. :group 'tools)
  2608. (defvar mmv-face-foreground
  2609. (face-foreground 'hi-yellow)
  2610. "Foreground color for `mmv-face'.")
  2611. (defvar mmv-face-background
  2612. (face-background 'hi-yellow)
  2613. "Background color for `mmv-face'.")
  2614. (defface mmv-face
  2615. `((t :background ,mmv-face-background :foreground ,mmv-face-foreground))
  2616. "Face used for showing the mark's position."
  2617. :group 'mmv)
  2618. (defvar-local mmv-mark-overlay nil
  2619. "The overlay for showing the mark's position.")
  2620. (defvar-local mmv-is-mark-visible t
  2621. "The overlay is visible only when this variable's value is t.")
  2622. (defun mmv-draw-mark (&rest _)
  2623. "Make the mark's position stand out by means of a one-character-long overlay.
  2624. If the value of variable `mmv-is-mark-visible' is nil, the mark will be
  2625. invisible."
  2626. (unless mmv-mark-overlay
  2627. (setq mmv-mark-overlay (make-overlay 0 0 nil t))
  2628. (overlay-put mmv-mark-overlay 'face 'mmv-face)
  2629. (overlay-put mmv-mark-overlay 'priority 10)) ;; bigger than highlight-indentation-current-column-overlay-priority
  2630. (let ((mark-position (mark t)))
  2631. (cond
  2632. ((null mark-position) (delete-overlay mmv-mark-overlay))
  2633. ((and (< mark-position (point-max))
  2634. (not (eq ?\n (char-after mark-position))))
  2635. (overlay-put mmv-mark-overlay 'after-string nil)
  2636. (move-overlay mmv-mark-overlay mark-position (1+ mark-position)))
  2637. (t
  2638. ;; This branch is called when the mark is at the end of a line or at the
  2639. ;; end of the buffer. We use a bit of trickery to avoid the higlight
  2640. ;; extending from the mark all the way to the right end of the frame.
  2641. (overlay-put mmv-mark-overlay 'after-string
  2642. (propertize " " 'face (overlay-get mmv-mark-overlay 'face)))
  2643. (move-overlay mmv-mark-overlay mark-position mark-position)))))
  2644. ;; Makes display very slow?
  2645. (add-hook 'pre-redisplay-functions #'mmv-draw-mark)
  2646. (defun mmv-toggle-mark-visibility ()
  2647. "Toggles the mark's visiblity and redraws it (whether invisible or visible)."
  2648. (interactive)
  2649. (setq mmv-is-mark-visible (not mmv-is-mark-visible))
  2650. (if mmv-is-mark-visible
  2651. (set-face-attribute 'mmv-face nil :background mmv-face-background :foreground mmv-face-foreground)
  2652. (set-face-attribute 'mmv-face nil :background 'unspecified :foreground 'unspecified))
  2653. (mmv-draw-mark))
  2654. ;; Local Variables:
  2655. ;; flycheck-disabled-checkers: (emacs-lisp-checkdoc)
  2656. ;; flycheck-checker: emacs-lisp
  2657. ;; End:
  2658. ;;; emancs.el ends here