All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@git.madduck.net.
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
8 Execute(Completion should be done after dots in TypeScript):
9 AssertEqual '.', ale#completion#GetPrefix(&filetype, 1, 13)
11 Execute(Completion should be done after words in TypeScript):
12 AssertEqual 'ab', ale#completion#GetPrefix(&filetype, 2, 13)
14 Execute(Completion should be done after words in parens in TypeScript):
15 AssertEqual 'ab', ale#completion#GetPrefix(&filetype, 3, 14)
17 Execute(Completion should not be done after parens in TypeScript):
18 AssertEqual '', ale#completion#GetPrefix(&filetype, 3, 15)
20 Execute(Completion should be done after strings in TypeScript):
21 AssertEqual '''', ale#completion#GetPrefix(&filetype, 4, 16)
22 AssertEqual '"', ale#completion#GetPrefix(&filetype, 5, 16)
24 Execute(Completion prefixes should work for other filetypes):
25 AssertEqual 'ab', ale#completion#GetPrefix('xxxyyyzzz', 3, 14)
27 Execute(Completion prefixes should work for other filetypes):
28 AssertEqual 'ab', ale#completion#GetPrefix('xxxyyyzzz', 3, 14)
35 Execute(Completion should be done after dots in Rust):
36 AssertEqual '.', ale#completion#GetPrefix(&filetype, 1, 13)
38 Execute(Completion should be done after colons in Rust):
39 AssertEqual '::', ale#completion#GetPrefix(&filetype, 2, 19)
41 Execute(Completion should be done after words in parens in Rust):
42 AssertEqual 'ab', ale#completion#GetPrefix(&filetype, 3, 14)
44 Execute(Completion should not be done after parens in Rust):
45 AssertEqual '', ale#completion#GetPrefix(&filetype, 3, 15)
51 Execute(Completion should be done for function names with minuses in Lisp):
52 AssertEqual 'minus-name', ale#completion#GetPrefix(&filetype, 1, 12)
54 Execute(Completion should not be done after parens in Lisp):
55 AssertEqual '', ale#completion#GetPrefix(&filetype, 2, 12)
61 Execute(Completion should be done for function names with minuses in Clojure):
62 AssertEqual 'minus-name', ale#completion#GetPrefix(&filetype, 1, 12)
64 Execute(Completion should not be done after parens in Clojure):
65 AssertEqual '', ale#completion#GetPrefix(&filetype, 2, 12)