1
0
mirror of https://github.com/amix/vimrc synced 2025-06-16 01:25:00 +08:00

Updated plugins

This commit is contained in:
Amir
2020-12-04 22:15:32 +01:00
parent e83f5ea2e7
commit a06964dd3b
261 changed files with 6955 additions and 2773 deletions

View File

@ -175,9 +175,9 @@ snippet tryf
##
## Find Methods
snippet findall
List<${1:listName}> ${2:items} = ${1}.findAll();
List<${1:listName}> ${2:items} = $1.findAll();
snippet findbyid
${1:var} ${2:item} = ${1}.findById(${3});
${1:var} ${2:item} = $1.findById(${3});
##
## Javadocs
snippet /**