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:
amix
2016-02-20 13:13:10 +00:00
parent 795a8fb80d
commit e81e42ec4d
214 changed files with 5916 additions and 1107 deletions

View File

@ -1,26 +1,28 @@
snippet const
const ${0} = ${1};
const ${1} = ${0};
snippet let
let ${0} = ${1};
let ${1} = ${0};
snippet im
import ${0} from '${1}';
import ${1} from '${0}';
snippet cla
class ${0} {
${1}
class ${1} {
${0}
}
snippet clax
class ${0} extends ${1} {
${2}
class ${1} extends ${2} {
${0}
}
snippet =>
(${0}) => {
${1}
(${1}) => {
${0}
}
snippet af
(${0}) => {
${1}
(${1}) => {
${0}
}
snippet sym
const ${0} = Symbol('${1}');
const ${1} = Symbol('${0}');
snippet ed
export default ${0}
snippet ${
${${1}}${0}