function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
8hrWait8hrWait 

Content-Assist in Force.com IDE

Hi,

 

In the Force.com IDE, the content assist works sometimes and not at times (using ctrl+space).

Please let me know, if we have any plugin to avoid this?

 

or any particular thumb rule to get this working everytime?

 

Thanks

Best Answer chosen by Admin (Salesforce Developers) 
EnthEnth

In general when it doesn't work it's because of another syntax error in your code. If the Force.com IDE plugin can't parse your code it won't be able to work out the context to show the method/attribute options.

 

I don't believe there's a way round this other than to ensure you change the way you work to comment out or complete any areas of code in development not relevant to the code you're working on.

All Answers

EnthEnth

In general when it doesn't work it's because of another syntax error in your code. If the Force.com IDE plugin can't parse your code it won't be able to work out the context to show the method/attribute options.

 

I don't believe there's a way round this other than to ensure you change the way you work to comment out or complete any areas of code in development not relevant to the code you're working on.

This was selected as the best answer
8hrWait8hrWait

Thank you, this helps..