@syanchuck wrote:
I have to use F7 and F9 unfortunately instead of the bottom ribbon buttons.
because I have to work sometimes in Snap Off mode, then sometimes in SNAP On, I can't visually see the mode status, only play with the mouse. It is not comfortable for me, sorry...
If this will do it for you, you can see the status of Snap and Grid [including the values they're set to] in this kind of format at the left end of the status line:

with a MODEMACRO setting in an ACAD.lsp file:
(defun S::STARTUP ()
(setvar 'modemacro
(strcat
"$(if,$(getvar,snapmode),Snap: ,Snap OFF)"
"$(if,$(getvar,snapmode),$(rtos,$(getvar,snapunit)))"
"$(if,$(getvar,gridmode), Grid: , Grid OFF)"
"$(if,$(getvar,gridmode),$(rtos,$(getvar,gridunit)))"
)
)
)
If you use the Aspect option [different values in X and Y directions] for either, the above will display the X-direction value only. It is probably possible to show both, with some additional code.
That will be present in both Model and Paper space, so it will be redundant with the icons to its right when in Model space, except for its also showing the values when on.
If you have the Grid set to follow the Snap setting, it will show the Grid value as zero [when the Grid is on].
[Since it establishes itself only at Startup, you need to re-start AutoCAD after you save it.]
Kent Cooper, AIA