Update README.md

Update setup example and TODO
This commit is contained in:
tsukimizake 2014-07-13 14:49:09 +09:00
parent 3fc877a1be
commit 4c6b5ab00d
1 changed files with 5 additions and 3 deletions

View File

@ -25,8 +25,11 @@
(define-key d-mode-map (kbd "C-c ,") 'ac-dcd-goto-def-pop-marker) (define-key d-mode-map (kbd "C-c ,") 'ac-dcd-goto-def-pop-marker)
(when (featurep 'popwin) (when (featurep 'popwin)
(add-to-list 'popwin:special-display-config
`(,ac-dcd-error-buffer-name :noselect t))
(add-to-list 'popwin:special-display-config (add-to-list 'popwin:special-display-config
`(,ac-dcd-document-buffer-name :position right :width 80))) `(,ac-dcd-document-buffer-name :position right :width 80)))
``` ```
* Third, set import path using ```M-x customize-variable RET ac-dcd-flags```. * 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 ,``` * After goto definition, you can pop to previous position with ```C-c ,```
## TODO ## TODO
* Better error handling
* Multi byte character support (Need help!) * Multi byte character support (Need help!)