-
Notifications
You must be signed in to change notification settings - Fork 4
/
test_ultisnips.vader
79 lines (56 loc) · 1.89 KB
/
test_ultisnips.vader
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
===============================================================================
Before:
let g:UltiSnipsExpandTrigger="<tab>"
let g:UltiSnipsExpandTrigger="<tab>"
Given python (Test: postfix completion and auto import):
hoge.pp
Do (Expand snippet and jump):
A\<tab>\<Esc>
Expect python (test snippet was expanded):
from pprint import pprint as pp
pp(hoge)
===============================================================================
Given python (Test: post action):
List
Dict
Do (Expand snippet and jump):
ggA\<tab>\<Esc>
jA\<tab>\<Esc>
Expect python (test snippet was expanded):
from typing import Dict, List
List
Dict
===============================================================================
Given python (Test: pydocstring expansion):
def test_function(a: str, b: int) -> None:
"""
Do (Expand):
ggjA\<tab>\<c-j>\<c-j>\<c-j>hoge\<esc>
Expect python (test snippet was expanded):
def test_function(a: str, b: int) -> None:
"""
description of this function
Args:
a (str): description of a
b (int): description of b
"""
hoge
===============================================================================
Given python (Test: pydocstring expansion (hardcase)):
def test_function(a: str, b: int) -> None:
def inner_function(c: List[int], d: Dict[str, int]) -> List[Dict[str, Any]]:
"""
Do (Expand):
gg/"""\<cr>A\<tab>\<c-j>\<c-j>\<c-j>\<c-j>hoge\<Esc>
Expect python (test snippet was expanded):
def test_function(a: str, b: int) -> None:
def inner_function(c: List[int], d: Dict[str, int]) -> List[Dict[str, Any]]:
"""
description of this function
Args:
c (List[int]): description of c
d (Dict[str, int]): description of d
Returns:
List[Dict[str, Any]]: description of return value
"""
hoge