Add simpler arrow function snippet

Not only `af` is 1 less keystroke, and the keys are very close (home row of the keyboard). `=` + `shift` + `.` (`=>`) are too far away from each other and takes too long to type :)
This commit is contained in:
Luiz Gonzaga dos Santos Filho 2015-12-12 16:31:10 -02:00
parent c0040abe4e
commit fc9195c9ce

View File

@ -16,6 +16,10 @@ snippet =>
(${0}) => {
${1}
}
snippet af
(${0}) => {
${1}
}
snippet sym
const ${0} = Symbol('${1}');
snippet ed