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

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

[elpa] 28/52: Add package-version property to vars after in 0.7.0


From: Dmitry Gutov
Subject: [elpa] 28/52: Add package-version property to vars after in 0.7.0
Date: Tue, 01 Jul 2014 11:53:20 +0000

dgutov pushed a commit to branch master
in repository elpa.

commit 08b1bfcda80954900dfb77c67a284b25cf420ca7
Author: Dmitry Gutov <address@hidden>
Date:   Wed Jun 4 17:35:26 2014 +0300

    Add package-version property to vars after in 0.7.0
---
 company-clang.el   |    4 +++-
 company-dabbrev.el |    3 ++-
 company-etags.el   |    3 ++-
 company.el         |    9 ++++++---
 4 files changed, 13 insertions(+), 6 deletions(-)

diff --git a/company-clang.el b/company-clang.el
index cc7660c..a1a3251 100644
--- a/company-clang.el
+++ b/company-clang.el
@@ -61,7 +61,9 @@ or automatically through a custom 
`company-clang-prefix-guesser'."
   "Major modes which clang may complete.")
 
 (defcustom company-clang-insert-arguments t
-  "When non-nil, insert function arguments as a template after completion.")
+  "When non-nil, insert function arguments as a template after completion."
+  :type 'boolean
+  :package-version '(company . "0.8.0"))
 
 ;; prefix 
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 
diff --git a/company-dabbrev.el b/company-dabbrev.el
index 7fd20b6..ef63d90 100644
--- a/company-dabbrev.el
+++ b/company-dabbrev.el
@@ -64,7 +64,8 @@ If you set this value to nil, you may also want to set
 `company-dabbrev-ignore-case' to any value other than `keep-prefix'.")
 
 (defcustom company-dabbrev-minimum-length (1+ company-minimum-prefix-length)
-  "The minimum length for the string to be included.")
+  "The minimum length for the string to be included."
+  :type 'integer)
 
 (defmacro company-dabrev--time-limit-while (test start limit &rest body)
   (declare (indent 3) (debug t))
diff --git a/company-etags.el b/company-etags.el
index 32c13f7..c7ba608 100644
--- a/company-etags.el
+++ b/company-etags.el
@@ -42,7 +42,8 @@ buffer automatically."
 
 (defcustom company-etags-ignore-case nil
   "Non-nil to ignore case in completion candidates."
-  :type 'boolean)
+  :type 'boolean
+  :package-version '(company . "0.7.3"))
 
 (defvar company-etags-modes '(prog-mode c-mode objc-mode c++-mode java-mode
                               jde-mode pascal-mode perl-mode python-mode))
diff --git a/company.el b/company.el
index 08b3a96..fb02f71 100644
--- a/company.el
+++ b/company.el
@@ -260,7 +260,8 @@ If this many lines are not available, prefer to display the 
tooltip above."
 (defcustom company-tooltip-minimum-width 0
   "The minimum width of the tooltip's inner area.
 This doesn't include the margins and the scroll bar."
-  :type 'integer)
+  :type 'integer
+  :package-version '(company . "0.8.0"))
 
 (defcustom company-tooltip-margin 1
   "Width of margin columns to show around the toolip."
@@ -275,7 +276,8 @@ This doesn't include the margins and the scroll bar."
 
 (defcustom company-tooltip-align-annotations nil
   "When non-nil, align annotations to the right tooltip border."
-  :type 'boolean)
+  :type 'boolean
+  :package-version '(company . "0.7.1"))
 
 (defcustom company-tooltip-flip-when-above nil
   "Whether to flip the tooltip when it's above the current line."
@@ -480,7 +482,8 @@ back-end, consider using the `post-completion' command 
instead."
   "If enabled, cancel a manually started completion when the prefix gets
 shorter than both `company-minimum-prefix-length' and the length of the
 prefix it was started from."
-  :type 'boolean)
+  :type 'boolean
+  :package-version '(company . "0.8.0"))
 
 (defcustom company-require-match 'company-explicit-action-p
   "If enabled, disallow non-matching input.



reply via email to

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