diff options
author | Raphael Nepomuceno <58113327+rphln@users.noreply.github.com> | 2020-09-14 12:11:16 -0300 |
---|---|---|
committer | Raphael Nepomuceno <58113327+rphln@users.noreply.github.com> | 2020-09-14 12:11:16 -0300 |
commit | 9769565f882b43512105d1b63a2f4ceda7a39d86 (patch) | |
tree | 16a70dd875f7dd9bb0680a7cd59e745499a3e479 /test/completion | |
parent | 08295ce17405cb5f6c80d2f726262493bfd21210 (diff) | |
download | ale-9769565f882b43512105d1b63a2f4ceda7a39d86.zip |
Collapse spaces and lines in the completion menu.
Diffstat (limited to 'test/completion')
-rw-r--r-- | test/completion/test_lsp_completion_parsing.vader | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/completion/test_lsp_completion_parsing.vader b/test/completion/test_lsp_completion_parsing.vader index d989aefe..36228c10 100644 --- a/test/completion/test_lsp_completion_parsing.vader +++ b/test/completion/test_lsp_completion_parsing.vader @@ -40,6 +40,7 @@ Execute(Should handle Rust completion results correctly): \ {'word': 'from', 'menu': 'fn from(s: &''a str) -> String', 'info': '', 'kind': 'f', 'icase': 1, 'user_data': json_encode({'_ale_completion_item': 1})}, \ {'word': 'from', 'menu': 'fn from(s: Box<str>) -> String', 'info': '', 'kind': 'f', 'icase': 1, 'user_data': json_encode({'_ale_completion_item': 1})}, \ {'word': 'from', 'menu': 'fn from(s: Cow<''a, str>) -> String', 'info': '', 'kind': 'f', 'icase': 1, 'user_data': json_encode({'_ale_completion_item': 1})}, + \ {'word': 'to_vec', 'menu': 'pub fn to_vec(&self) -> Vec<T> where T: Clone,', 'info': '', 'kind': 'f', 'icase': 1, 'user_data': json_encode({'_ale_completion_item': 1})}, \], \ ale#completion#ParseLSPCompletions({ \ "jsonrpc":"2.0", @@ -184,6 +185,11 @@ Execute(Should handle Rust completion results correctly): \ "label":"from", \ "kind":3, \ "detail":"fn from(s: Cow<'a, str>) -> String" + \ }, + \ { + \ "label":"to_vec", + \ "kind":3, + \ "detail":"pub fn to_vec(&self) -> Vec<T>\nwhere\n T: Clone," \ } \ ] \ }) |