emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] 37/38: Rename try-complete-ggtags-tag to ggtags-try-complete-tag


From: Leo Liu
Subject: [elpa] 37/38: Rename try-complete-ggtags-tag to ggtags-try-complete-tag
Date: Mon, 24 Mar 2014 09:31:39 +0000

leoliu pushed a commit to branch master
in repository elpa.

commit 50fd757af3cec4588d35afb137a28b5f44a20d56
Author: Leo Liu <address@hidden>
Date:   Mon Mar 24 16:38:04 2014 +0800

    Rename try-complete-ggtags-tag to ggtags-try-complete-tag
    
    Update README.rst.
---
 README.rst |   17 +++++++++++++++++
 ggtags.el  |    2 +-
 2 files changed, 18 insertions(+), 1 deletions(-)

diff --git a/README.rst b/README.rst
index ae9766a..6296c54 100644
--- a/README.rst
+++ b/README.rst
@@ -241,6 +241,23 @@ ggtags-browse-file-as-hypertext
    Use ``htags`` to generate HTML of the source tree. This allows
    browsing the porject in a browser with cross-references.
 
+Integration with other packages
++++++++++++++++++++++++++++++++
+
+* imenu
+
+  Emacs major modes usually have excellent support for ``imenu`` so
+  this is not enabled by default. To use:
+  ::
+
+    (setq-local imenu-create-index-function #'ggtags-build-imenu-index)
+
+* hippie-exp
+  ::
+
+     (setq-local hippie-expand-try-functions-list
+                 (cons 'ggtags-try-complete-tag 
hippie-expand-try-functions-list))
+
 Bugs
 ~~~~
 
diff --git a/ggtags.el b/ggtags.el
index 64b4613..541025a 100644
--- a/ggtags.el
+++ b/ggtags.el
@@ -1831,7 +1831,7 @@ to nil disables displaying this information.")
 ;;; hippie-expand
 
 ;;;###autoload
-(defun try-complete-ggtags-tag (old)
+(defun ggtags-try-complete-tag (old)
   "A function suitable for `hippie-expand-try-functions-list'."
   (with-no-warnings                     ; to avoid loading hippie-exp
     (unless old



reply via email to

[Prev in Thread] Current Thread [Next in Thread]