formulahendry/vscode-auto-rename-tag

bug:to long tags attr(or to long?) can make vscode work slowly

Open

#59 opened on May 30, 2018

 (1 comment) (0 reactions) (0 assignees)TypeScript (39 forks)github user discovery
help wanted

Repository metrics

Stars
 (277 stars)
PR merge metrics
 (PR metrics pending)

Description

when i write many attr not change line, vscode become slowly ,and keyboard is no response some time

like this

        <input type={this.props.type?this.props.type:'text'} 
        className={style.defaultInput} 
        value={this.state.value}
        defaultValue={this.props.defaultValue?this.props.defaultValue:''}
        style={this.props.Ustyle?this.props.Ustyle:{}}
        placeholder={this.props.placeholder?this.props.placeholder:''} 
        onKeyUp={this.onKeyUp}
        onChange={this.onValueChange}
        onFocus={this.props.onFocus?this.props.onFocus:()=>{}}
        id={this.props.id?this.props.id:''}
        ref='uname'/>

if i not change line my vscode cant work!!

Contributor guide