Notfiy NQE of QUIC RTT
[chromium-blink-merge.git] / docs / emacs.md
blobfbe7ce1699b8729c5d240120efe65db41f0d2ab1
1 # Emacs
3 [TOC]
5 ## Debugging
7 [Linux Debugging](linux_debugging.md) has some emacs-specific debugging tips.
10 ## Blink Style (WebKit)
12 Chrome and Blink/WebKit style differ. You can use
13 [directory-local variables](http://www.gnu.org/software/emacs/manual/html_node/emacs/Directory-Variables.html)
14 to make the tab key do the right thing. E.g., in `third_party/WebKit`, add a
15 `.dir-locals.el` that contains
17 ```el
18 ((nil . ((indent-tabs-mode . nil)
19          (c-basic-offset . 4)
20          (fill-column . 120))))
21 ```
23 This turns off tabs, sets your indent to four spaces, and makes `M-q` wrap at
24 120 columns (WebKit doesn't define a wrap column, but there's a soft limit
25 somewhere in that area for comments. Some reviewers do enforce the no wrap
26 limit, which Emacs can deal with gracefully; see below.)
28 Be sure to `echo .dir-locals.el >> .git/info/exclude` so `git clean` doesn't
29 delete your file.
31 It can be useful to set up a WebKit specific indent style. It's not too much
32 different so it's easy to base off of the core Google style. Somewhere after
33 you've loaded google.el (most likely in your .emacs file), add:
35 ```el
36 (c-add-style "WebKit" '("Google"
37                         (c-basic-offset . 4)
38                         (c-offsets-alist . ((innamespace . 0)
39                                             (access-label . -)
40                                             (case-label . 0)
41                                             (member-init-intro . +)
42                                             (topmost-intro . 0)
43                                             (arglist-cont-nonempty . +)))))
44 ```
46 then you can add
48 ```el
49 (c-mode . ((c-file-style . "WebKit")))
50 (c++-mode . ((c-file-style . "WebKit"))))
51 ```
53 to the end of the .dir-locals.el file you created above. Note that this style
54 may not yet be complete, but it covers the most common differences.
56 Now that you have a WebKit specific style being applied, and assuming you have
57 font locking and it's default jit locking turned on, you can also get Emacs 23
58 to wrap long lines more intelligently by adding the following to your .emacs
59 file:
61 ```el
62 ;; For dealing with WebKit long lines and word wrapping.
63 (defun c-mode-adaptive-indent (beg end)
64   "Set the wrap-prefix for the the region between BEG and END with adaptive filling."
65   (goto-char beg)
66   (while
67       (let ((lbp (line-beginning-position))
68             (lep (line-end-position)))
69         (put-text-property lbp lep 'wrap-prefix (concat (fill-context-prefix lbp lep) (make-string c-basic-offset ? )))
70         (search-forward "\n" end t))))
72 (define-minor-mode c-adaptive-wrap-mode
73   "Wrap the buffer text with adaptive filling for c-mode."
74   :lighter ""
75   (save-excursion
76     (save-restriction
77       (widen)
78       (let ((buffer-undo-list t)
79             (inhibit-read-only t)
80             (mod (buffer-modified-p)))
81         (if c-adaptive-wrap-mode
82             (jit-lock-register 'c-mode-adaptive-indent)
83           (jit-lock-unregister 'c-mode-adaptive-indent)
84           (remove-text-properties (point-min) (point-max) '(wrap-prefix pref)))
85         (restore-buffer-modified-p mod)))))
87 (defun c-adaptive-wrap-mode-for-webkit ()
88   "Turn on visual line mode and adaptive wrapping for WebKit source files."
89   (if (or (string-equal "webkit" c-indentation-style)
90           (string-equal "WebKit" c-indentation-style))
91       (progn
92         (visual-line-mode t)
93         (c-adaptive-wrap-mode t))))
95 (add-hook 'c-mode-common-hook 'c-adaptive-wrap-mode-for-webkit)
96 (add-hook 'hack-local-variables-hook 'c-adaptive-wrap-mode-for-webkit)
97 ```
99 This turns on visual wrap mode for files using the WebKit c style, and sets up a
100 hook to dynamically set the indent on the wrapped lines. It's not quite as
101 intelligent as it could be (e.g., what would the wrap be if there really were a
102 newline there?), but it's very fast. It makes dealing with long code lines
103 anywhere much more tolerable (not just in WebKit).
105 ## Syntax-error Highlighting
107 [Ninja](ninja_build.md) users get in-line highlighting of syntax errors using
108 `flymake.el` on each buffer-save:
111     (load-file "src/tools/emacs/flymake-chromium.el")
114 ## [ycmd](https://github.com/Valloric/ycmd) (YouCompleteMe) + flycheck
116 [emacs-ycmd](https://github.com/abingham/emacs-ycmd) in combination with
117 flycheck provides:
119 *   advanced code completion
120 *   syntax checking
121 *   navigation to declarations and definitions (using `ycmd-goto`) based on
122     on-the-fly processing using clang. A quick demo video showing code
123     completion and flycheck highlighting a missing semicolon syntax error:
125 [![video preview][img]][video]
127 [img]: http://img.youtube.com/vi/a0zMbm4jACk/0.jpg
128 [video]: http://www.youtube.com/watch?feature=player_embedded&v=a0zMbm4jACk
130 ### Requirements
132   * Your build system is set up for building with clang or wrapper+clang
134 ### Setup
136 1.  Clone, update external git repositories and build.sh ycmd from
137     https://github.com/Valloric/ycmd into a directory, e.g. `~/dev/ycmd`
138 1.  Test `ycmd` by running `~/dev/ycmd$ python ycmd/__main__.py` You should see
139     `KeyError: 'hmac_secret'`
140 1.  Install the following packages to emacs, for example from melpa:
141     *   `ycmd`
142     *   `company-ycmd`
143     *   `flycheck-ycmd`
144 1.  [More info on configuring emacs-ycmd](https://github.com/abingham/emacs-ycmd#quickstart)
145     1.  Assuming your checkout of Chromium is in `~/dev/blink`, i.e. this is the
146         directory in which you find the `src`folder, create a symbolic link as
147         follows:
149         ```shell
150         cd ~/dev/blink
151         ln -s src/tools/vim/chromium.ycm_extra_conf.py .ycm_extra_conf.py
152         ```
154     1.  Add something like the following to your `init.el`
156 ```el
157 ;; ycmd
159 ;;; Googlers can replace a lot of this with (require 'google-ycmd).
161 (require 'ycmd)
162 (require 'company-ycmd)
163 (require 'flycheck-ycmd)
165 (company-ycmd-setup)
166 (flycheck-ycmd-setup)
168 ;; Show completions after 0.15 seconds
169 (setq company-idle-delay 0.15)
171 ;; Activate for editing C++ files
172 (add-hook 'c++-mode-hook 'ycmd-mode)
173 (add-hook 'c++-mode-hook 'company-mode)
174 (add-hook 'c++-mode-hook 'flycheck-mode)
176 ;; Replace the directory information with where you downloaded ycmd to
177 (set-variable 'ycmd-server-command (list "python" (substitute-in-file-name "$HOME/dev/ycmd/ycmd/__main__.py")))
179 ;; Edit according to where you have your Chromium/Blink checkout
180 (add-to-list 'ycmd-extra-conf-whitelist (substitute-in-file-name "$HOME/dev/blink/.ycm_extra_conf.py"))
182 ;; Show flycheck errors in idle-mode as well
183 (setq ycmd-parse-conditions '(save new-line mode-enabled idle-change))
185 ;; Makes emacs-ycmd less verbose
186 (setq url-show-status nil)
189 ### Troubleshooting
191 *   If no completions show up or emacs reports errors, you can check the
192     `*ycmd-server*` buffer for errors. See the next bullet point for how to
193     handle "OS Error: No such file or directory"
194 *   Launching emacs from an OS menu might result in a different environment so
195     that `ycmd` does not find ninja. In that case, you can use a package like
196     [exec-path from shell](https://github.com/purcell/exec-path-from-shell) and
197     add the following to your `init.el`:
199 ```el
200 (require 'exec-path-from-shell)
201 (when (memq window-system '(mac ns x))
202     (exec-path-from-shell-initialize))
205 ## ff-get-other-file
207 There's a builtin function called `ff-get-other-file` which will get the "other
208 file" based on file extension. I have this bound to C-o in c-mode
209 (`(local-set-key "\C-o" 'ff-get-other-file)`). While "other file" is per-mode
210 defined, in c-like languages it means jumping between the header and the source
211 file. So I switch back and forth between the header and the source with C-o. If
212 we had separate include/ and src/ directories, this would be a pain to setup,
213 but this might just work out of the box for you. See the documentation for the
214 variable `cc-other-file-alist` for more information.
216 One drawback of ff-get-other-file is that it will always switch to a matching
217 buffer, even if the other file is in a different directory, so if you have
218 A.cc,A.h,A.cc(2) then ff-get-other-file will switch to A.h from A.cc(2) rather
219 than load A.h(2) from the appropriate directory. If you prefer something (C
220 specific) that always finds, try this:
222 ```el
223 (defun cc-other-file()
224   "Toggles source/header file"
225   (interactive)
226   (let ((buf (current-buffer))
227         (name (file-name-sans-extension (buffer-file-name)))
228         (other-extens
229          (cadr (assoc (concat "\\."
230                               (file-name-extension (buffer-file-name))
231                               "\\'")
232                       cc-other-file-alist))))
233     (dolist (e other-extens)
234       (if (let ((f (concat name e)))
235             (and (file-exists-p f) (find-file f)))
236           (return)))
237     )
238   )
241 _Note: if you know an easy way to change the ff-get-other-file behavior, please
242 replace this hack with that solution! - stevenjb@chromium.org_
244 ## Use Google's C++ style!
246 We have an emacs module,
247 [google-c-style.el](http://google-styleguide.googlecode.com/svn/trunk/google-c-style.el),
248 which adds c-mode formatting. Then add to your .emacs:
250 ```el
251 (load "/<path/to/chromium>/src/buildtools/clang_format/script/clang-format.el")
252 (add-hook 'c-mode-common-hook
253     (function (lambda () (local-set-key (kbd "TAB") 'clang-format-region))))
256 Now, you can use the
258 &lt;Tab&gt;
260 key to format the current line (even a long line) or region.
262 ## Highlight long lines
264 One nice way to highlight long lines and other style issues:
266 ```el
267 (require 'whitespace)
268 (setq whitespace-style '(face indentation trailing empty lines-tail))
269 (setq whitespace-line-column nil)
270 (set-face-attribute 'whitespace-line nil
271                     :background "purple"
272                     :foreground "white"
273                     :weight 'bold)
274 (global-whitespace-mode 1)
277 Note: You might need to grab the latest version of
278 [whitespace.el](http://www.emacswiki.org/emacs-en/download/whitespace.el).
280 ## gyp
282 ### `gyp` style
283 There is a gyp mode that provides basic indentation and font-lock (syntax
284 highlighting) support. The mode derives from python.el (bundled with newer
285 emacsen).
287 You can find it in /src/tools/gyp/tools/emacs
289 See the README file there for installation instructions.
291 **Important**: the mode is only tested with `python.el` (bundled with newer
292 emacsen), not with `python-mode.el` (outdated and less maintained these days).
294 ### deep nesting
296 A couple of helpers that show a summary of where you are; the first by tracing
297 the indentation hierarchy upwards, the second by only showing `#if`s and
298 `#else`s that are relevant to the current line:
300 ```el
301 (defun ami-summarize-indentation-at-point ()
302   "Echo a summary of how one gets from the left-most column to
303   POINT in terms of indentation changes."
304   (interactive)
305   (save-excursion
306     (let ((cur-indent most-positive-fixnum)
307           (trace '()))
308       (while (not (bobp))
309         (let ((current-line (buffer-substring (line-beginning-position)
310                                               (line-end-position))))
311           (when (and (not (string-match "^\\s-*$" current-line))
312                      (< (current-indentation) cur-indent))
313             (setq cur-indent (current-indentation))
314             (setq trace (cons current-line trace))
315             (if (or (string-match "^\\s-*}" current-line)
316                     (string-match "^\\s-*else " current-line)
317                     (string-match "^\\s-*elif " current-line))
318                 (setq cur-indent (1+ cur-indent)))))
319         (forward-line -1))
320       (message "%s" (mapconcat 'identity trace "\n")))))
322 (require 'cl)
323   (defun ami-summarize-preprocessor-branches-at-point ()
324     "Summarize the C preprocessor branches needed to get to point."
325     (interactive)
326     (flet ((current-line-text ()
327               (buffer-substring (line-beginning-position) (line-end-position))))
328       (save-excursion
329         (let ((eol (or (end-of-line) (point)))
330               deactivate-mark directives-stack)
331           (goto-char (point-min))
332           (while (re-search-forward "^#\\(if\\|else\\|endif\\)" eol t)
333             (if (or (string-prefix-p "#if" (match-string 0))
334                     (string-prefix-p "#else" (match-string 0)))
335                 (push (current-line-text) directives-stack)
336             (if (string-prefix-p "#endif" (match-string 0))
337                  (while (string-prefix-p "#else" (pop directives-stack)) t))))
338           (message "%s" (mapconcat 'identity (reverse directives-stack) "\n"))))))
341 ## find-things-fast
343 erg wrote a suite of tools that do common operations from the root of your
344 repository, called
345 [Find Things Fast](https://github.com/eglaysher/find-things-fast). It contains
346 ido completion over `git ls-files` (or the svn find equivalent) and `grepsource`
347 that only git greps files with extensions we care about (or the equivalent the
348 `find | xargs grep` statement in non-git repos.)
350 ## vc-mode and find-file performance
352 When you first open a file under git control, vc mode kicks in and does a high
353 level stat of your git repo. For huge repos, especially WebKit and Chromium,
354 this makes opening a file take literally seconds. This snippet disables VC git
355 for chrome directories:
357 ```el
358 ; Turn off VC git for chrome
359 (when (locate-library "vc")
360 (defadvice vc-registered (around nochrome-vc-registered (file))
361 (message (format "nochrome-vc-registered %s" file))
362 (if (string-match ".*chrome/src.*" file)
363 (progn
364 (message (format "Skipping VC mode for %s" % file))
365 (setq ad-return-value nil)
367 ad-do-it)
369 (ad-activate 'vc-registered)
373 ## git tools
375 We're collecting Chrome-specific tools under `tools/emacs`. See the files there
376 for details.
378 *   `trybot.el`: import Windows trybot output into a `compilation-mode` buffer.
380 ## ERC for IRC
382 See [ErcIrc][erc_irc.md].
384 ## TODO
386 *   Figure out how to make `M-x compile` default to
387     `cd /path/to/chrome/root; make -r chrome`.