1

According to the Semantic docs, semantic-edit.el is the file which handles all incremental parsing. I see frequent incremental parse errors(not information messages, since I have semantic-edits-verbose-flag nil) and would like to set a minimum time interval between consecutive reparses of my cpp files. Other than semantic-edits-verbose-flag, I don't see any defcustom's in semantic-edit.el. Is there a way of customizing this behaviour?

Pradhan
  • 2,330
  • 14
  • 28

1 Answers1

2

Semantic should parse only when Emacs is idle. The variable semantic-idle-scheduler-idle-time is the amount of idle time, in seconds, before the Semantic idle scheduler activates.

Tu Do
  • 6,772
  • 20
  • 39