Every once and a while Emacs fails at syntax highlighting and the coloring gets all funky in a buffer. Is there any way to force Emacs to "recolor" the syntax? Just try over? I don't mind if it takes a moment.
How to force emacs recolor
1.5k Views Asked by sligocki At
2
There are 2 best solutions below
0

I once wrote the following simple function to reset the buffer to its natural mode, refontify it, bring the line where the cursor is to the center of the screen, disable the menu-bar, disable the tool-bar and move the scroll-bar left.
(defun --normal-mode-no-gimmicks ()
"Enable buffer `normal-mode' and refontify.
Disable frame menu, toolbar, scrollbars."
(interactive)
(menu-bar-mode 0)
(tool-bar-mode 0)
(set-scroll-bar-mode 'left)
(toggle-scroll-bar 1)
(normal-mode) (recenter-top-bottom)
(font-lock-fontify-buffer))
This can be very useful when the mode changes, Emacs suddenly displays the menubar or something else goes wrong. Then I just press M-g g
to heal it.
(global-set-key [?\M-g ?g] '--normal-mode-no-gimmicks)
I didn't know about M-o M-o
; it seems as if this could be a better key binding for this function.
I think
M-x font-lock-fontify-buffer
will do what you are looking for. Or select a region and doM-o M-o
(orM-x font-lock-fontify-block
).