From 4c6b5ab00daa6be8ea3bf0ef7f6479e9c635095e Mon Sep 17 00:00:00 2001 From: tsukimizake Date: Sun, 13 Jul 2014 14:49:09 +0900 Subject: [PATCH] Update README.md Update setup example and TODO --- editors/emacs/README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/editors/emacs/README.md b/editors/emacs/README.md index 2cf9285..c01c337 100644 --- a/editors/emacs/README.md +++ b/editors/emacs/README.md @@ -25,8 +25,11 @@ (define-key d-mode-map (kbd "C-c ,") 'ac-dcd-goto-def-pop-marker) (when (featurep 'popwin) -(add-to-list 'popwin:special-display-config -`(,ac-dcd-document-buffer-name :position right :width 80))) + (add-to-list 'popwin:special-display-config + `(,ac-dcd-error-buffer-name :noselect t)) + (add-to-list 'popwin:special-display-config + `(,ac-dcd-document-buffer-name :position right :width 80))) + ``` * Third, set import path using ```M-x customize-variable RET ac-dcd-flags```. @@ -40,5 +43,4 @@ * After goto definition, you can pop to previous position with ```C-c ,``` ## TODO -* Better error handling * Multi byte character support (Need help!)