1
0
mirror of https://github.com/amix/vimrc synced 2025-07-04 06:44:59 +08:00

Merge branch 'pr/2'

This commit is contained in:
geezuslucifer@gmail.com
2020-03-20 10:10:45 -05:00
1315 changed files with 30338 additions and 18193 deletions

View File

@ -9,7 +9,12 @@ snippet fun "function"
function ${1:function_name}(${2}) {
${0:${VISUAL}}
}
<<<<<<< HEAD
snippet fun "async function"
=======
# Asynchronous Function
snippet asf "async function"
>>>>>>> 27ad0d07862847896f691309a544a206783c94d6
async function ${1:function_name}(${2}) {
${0:${VISUAL}}
}
@ -282,6 +287,11 @@ snippet timeout
setTimeout(function () {${0}}${2}, ${1:10});
snippet const
const ${1} = ${0};
<<<<<<< HEAD
=======
snippet constn
const ${1} = new ${0};
>>>>>>> 27ad0d07862847896f691309a544a206783c94d6
snippet let
let ${1} = ${0};
snippet im "import xyz from 'xyz'"