C: Bind "C-c d" to gtk-lookup-symbol

master
Pierre Neidhardt 2018-11-09 08:36:40 +01:00
parent 90fbd297a9
commit 3605a51f94
1 changed files with 4 additions and 2 deletions

View File

@ -6,10 +6,12 @@
(ambrevar/define-keys map "C-c m" 'cc-main
"<f5>" 'ambrevar/cc-clean
"M-." 'semantic-ia-fast-jump
"C-c C-d" 'semantic-ia-show-summary
"C-c C-d" 'semantic-ia-show-doc
"M-<tab>" 'semantic-complete-analyze-inline)
(when (require 'company nil t)
(define-key map (kbd "M-<tab>") (if (require 'helm-company nil t) 'helm-company 'company-complete))))
(define-key map (kbd "M-<tab>") (if (require 'helm-company nil t) 'helm-company 'company-complete)))
(when (require 'gtk-look nil 'noerror)
(define-key map (kbd "C-c d") 'gtk-lookup-symbol)))
;; (define-key map (kbd "C-c o") 'ff-find-other-file)
(defvaralias 'c-basic-offset 'tab-width)