diff options
author | Yasuhiro Matsumoto <mattn.jp@gmail.com> | 2019-10-02 09:25:34 +0900 |
---|---|---|
committer | Yasuhiro Matsumoto <mattn.jp@gmail.com> | 2019-10-02 09:25:34 +0900 |
commit | 31de6a5e48b65dface121e654e40e06de6bf364a (patch) | |
tree | ac3331876f21219a665b13858f1103a4098bb9e4 /template/java | |
parent | df88ac36ed24e68d7d9d7e4d9aa471575d3c79bd (diff) | |
download | vim-sonictemplate-31de6a5e48b65dface121e654e40e06de6bf364a.tar.gz vim-sonictemplate-31de6a5e48b65dface121e654e40e06de6bf364a.tar.bz2 vim-sonictemplate-31de6a5e48b65dface121e654e40e06de6bf364a.zip |
Update postfix completion
Diffstat (limited to 'template/java')
-rw-r--r-- | template/java/pattern.stpl | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/template/java/pattern.stpl b/template/java/pattern.stpl index 2a48364..69ad725 100644 --- a/template/java/pattern.stpl +++ b/template/java/pattern.stpl @@ -9,3 +9,9 @@ \(\S.*\)\.pr\%[int]l\%[n]$ System.out.println({{$1}}); {{_cursor_}} + +\(\S.*\)\.false$ + assertFalse({{$1}});{{_cursor_}} + +\(\S.*\)\.true$ + assertTrue({{$1}});{{_cursor_}} |