diff --git a/RELEASES.md b/RELEASES.md index 0cd3020..0be37c0 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,4 +1,11 @@ -# Version 1.0.0 (2018-04-XX) +# Version 1.0.1 (2018-04-26) + +* Disable full-text-search by default +* Supported import static method completion (experimental) +* Fix package completion +* Fix some bugs and improve stability. + +# Version 1.0.0 (2018-04-07) ## Highlights diff --git a/meghanada.el b/meghanada.el index be1d959..0448939 100644 --- a/meghanada.el +++ b/meghanada.el @@ -230,10 +230,15 @@ In linux or macOS, it can be \"mvn\"; In Windows, it can be \"mvn.cmd\". " :type 'function) (defcustom meghanada-import-static-enable "java.util.Objects,org.junit.Assert" - "Sets import static comletion class." + "Sets import static completion classes." :group 'meghanada :type 'string) +(defcustom meghanada-full-text-search-enable nil + "If true, enable full text search and meghanada-search-everywhere." + :group 'meghanada + :type 'boolean) + ;; ;; utility ;; @@ -438,6 +443,8 @@ function." (push (format "-Dmeghanada.javac.arg=%s" meghanada-javac-xlint) options)) (when meghanada-import-static-enable (push (format "-Dmeghanada.search.static.method.classes=%s" meghanada-import-static-enable) options)) + (when meghanada-full-text-search-enable + (push "-Dmeghanada.full.text.searchs=true" options)) (when meghanada-gradle-version (push (format "-Dmeghanada.gradle.version=%s" meghanada-gradle-version) options)) (when meghanada-gradle-prepare-compile-task