diff options
author | Marios S <eimaiosatanas@gmail.com> | 2022-07-04 22:00:29 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-04 22:00:29 +0900 |
commit | a918f8c7bc7faa8b035fecf23aa35d395d0636c4 (patch) | |
tree | 8c7ab35ce96f15a77474e4fac94384fe3a260bd8 /test | |
parent | d6f3d4976d21e516193da5907db3f06e56d3e5c8 (diff) | |
download | ale-a918f8c7bc7faa8b035fecf23aa35d395d0636c4.zip |
Improve struct and pointer autocompletion in C (#4231)
* Add explicit trigger characters for C (#4226)
* Stop completion before issuing subsequent requests (#4226)
Co-authored-by: Marios Sioutis <26476573+s-marios@users.noreply.github.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/python/test_deoplete_source.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/python/test_deoplete_source.py b/test/python/test_deoplete_source.py index 8304fa25..74a42dc2 100644 --- a/test/python/test_deoplete_source.py +++ b/test/python/test_deoplete_source.py @@ -53,6 +53,7 @@ class DeopleteSourceTest(unittest.TestCase): 'rust': r'(\.|::)\w*$', 'typescript': r'(\.|\'|")\w*$', 'cpp': r'(\.|::|->)\w*$', + 'c': r'(\.|->)\w*$', }, 'is_bytepos': True, 'is_volatile': True, |