Out of the frying pan, into the fire. I 'fixed' the Intellisense problem and created a new one. I think this is a Visual Studio issue and not directly related to VisualMicro. (or more accurately, a stupid user error

)
I looked at all the intellisense errors, and a few were that the command/keyword was not recognized. Most of them however, like for pinMode, was something to the effect that it had several overloaded methods and couldn't figure out which one I was referring to.
Well, I clicked something, and all the Intellisense errors went away. Unfortunately, I'm not sure what I clicked on that did it! (I think it was just the 'Clear All' icon) And now I have a new problem: When I compile and get errors, it no longer shows me what the actual error message is or what line it is on, but does still show the line itself and what procedure it is in. Example below:
Compiling debug version of 'trafficLight' for 'Arduino/Genuino Uno'
trafficLight.ino:In function 'void loop()
:EEPROM.writeInt (eLocLastNight, minutesRunning)
:EEPROM.writeInt (eLocHalfNight, halfNight)
trafficLight.ino:In function 'void lostPower()
:EEPROM.writeInt(ADDR_USER_DATA + eLocLastNight, minutesRunning)
:EEPROM.writeInt(ADDR_USER_DATA + eLocHalfNight, halfNight)
trafficLight.ino:In function 'void stackEm(unsigned int)
:EEPROM.writeInt(ADDR_USER_DATA + eLocLastValidNight + i*2,EEPROM.readInt(eLocLastValidNight + i*2-2))
:EEPROM.writeInt(ADDR_USER_DATA + eLocLastValidNight,newVal)
Error compiling project sources
Boards I'm using are Arduino Uno and Mega, Arduino IDE is latest I think, 1.6.8, and VisualMicro is latest I think 1.1603.20.
What did I inadvertently turn off that I need to turn back on?