Add new symbol fields to autocomplete list

This commit is contained in:
Jon Evans 2022-08-26 23:53:23 -04:00
parent 460e8015f0
commit 5c43c46365
1 changed files with 2 additions and 0 deletions

View File

@ -1011,6 +1011,8 @@ void SCH_SYMBOL::GetContextualTextVars( wxArrayString* aVars ) const
aVars->push_back( wxT( "FOOTPRINT_LIBRARY" ) );
aVars->push_back( wxT( "FOOTPRINT_NAME" ) );
aVars->push_back( wxT( "UNIT" ) );
aVars->push_back( wxT( "SYMBOL_LIBRARY" ) );
aVars->push_back( wxT( "SYMBOL_NAME" ) );
}