diff --git a/README.md b/README.md index 977e8b1..9ef7e6d 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ package and [meghanada-server][]. * Syntax check and analyze java source (`flycheck-meghanada`) * Support `Generic Types` * Code completion with [company-mode][] (`company-meghanada`) -* Optimize import +* Optimize import and sort * Jump declaration * Run [Junit][] test (include test runner) * Diagnostic reporting with [flycheck][] (`flycheck-meghanada`) @@ -104,6 +104,8 @@ M-x meghanada-update-server Auto completion is supported by `comapany-mode`. +Completion matcher is selectable. see type `M-x customize-group RET meghanada`. + ## Syntax/error checking Error checking is supported by `flycheck`. @@ -168,6 +170,10 @@ Import all and remove unused import statement. The format of the import statement will be in `google-java-format`. +### meghanada-import-at-point + +Add import statement from symbol at point. + ### meghanada-local-variable (C-c C-r r) Introduce local variable. (need expression is end `;`) diff --git a/RELEASES.md b/RELEASES.md index feb2b41..b39fc64 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,3 +1,11 @@ +# Version 1.0.3 (2018-05-24) + +* Support import completion from symbol (added import-at-point function). +* Completion matcher is selectable (default is prefix matcher). +* Fix broken static import completion. +* Fix import statement sort (in case google-java-format). +* Fix some bugs and improve stability. + # Version 1.0.2 (2018-05-08) * Show progress when meghanada downloading server module