+ 4
Is there any emmet-vim (a vim plug) abbreviations for react-native(not react)?
For example: "fc" expanding to following script=> import React from 'react'; import {View ,Text} from 'react-native'; Const _=(props)=>{ return ( <View> <Text></Text> </View> ) }; export default _; Or is there a way I could map this script in emmet-vim to "fc" and similar keywords so I get that expansion and if yes how would I ? Any help is much appreciated.
0 Antworten