Added ggtags keybindings for next-file and prev-file.

This commit is contained in:
tastytea 2019-09-06 01:49:44 +02:00
parent ee214d9f52
commit 076ade59fb
1 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,5 @@
;;; init.el --- tastytea's Emacs init file.
;; Time-stamp: <2019-08-25T03:19:46+00:00>
;; Time-stamp: <2019-09-05T23:17:12+00:00>
;;; Commentary:
;; I am using this file with Emacs 26, but most of it will probably work with
@ -497,6 +497,8 @@ With argument, do this that many times."
(:map ggtags-mode-map
("C-M-." . ggtags-navigation-next-mark)
("C-M-," . ggtags-navigation-previous-mark)
("C-M-:" . ggtags-navigation-next-file)
("C-M-;" . ggtags-navigation-previous-file)
)
:hook
(c++-mode . ggtags-mode)