Browse Source

Add comment

master
10sr 5 years ago
parent
commit
4a21d1b55b
Signed by: 10sr GPG Key ID: 7BEC428194130EB2
1 changed files with 10 additions and 4 deletions
  1. +10
    -4
      emacs.el

+ 10
- 4
emacs.el View File

@@ -1078,6 +1078,12 @@ found, otherwise returns nil."
(run-with-idle-timer 0.5 t
'my-company-length-popup-tip))

;; (current-active-maps)
;; (lookup-key)
'(mapcar (lambda (map)
(lookup-key map (kbd "C-i")))
(current-active-maps))

;; https://qiita.com/syohex/items/8d21d7422f14e9b53b17
(set-face-attribute 'company-tooltip nil
:foreground "black" :background "lightgrey")
@@ -1901,8 +1907,8 @@ and search from projectile root (if projectile is available)."
(safe-require-or-eval 'projectile)
(projectile-project-p))
(projectile-with-default-dir (projectile-project-root)
(compilation-start command-args
'grep-mode))
(compilation-start command-args
'grep-mode))
(compilation-start command-args
'grep-mode)))

@@ -1920,8 +1926,8 @@ and search from projectile root (if projectile is available)."
(if (safe-require-or-eval 'projectile)
(projectile-with-default-dir (or (projectile-project-root)
default-directory)
(compilation-start command-args
'grep-mode))
(compilation-start command-args
'grep-mode))
(compilation-start command-args
'grep-mode))))



Loading…
Cancel
Save