config
(require 'whitespace)
(setq whitespace-line-column 80) ;; limit line length
(setq whitespace-style '(face tabs empty trailing lines-tail))
For first line, whitespace-mode correctly highlights characters in line which are over 80 characters
In second line, org symbol (\Rightarrow) is used. whitespace-mode seems to highlight based on the character count instead of column number 80
Need help in making whitespace-mode highlight basing on the column number instead of character count.. or any better alternatives... Thanks
edit:
evaluation (current-column)
at the location of first highlighted(pink) l
in first line gives 80
evaluating (current-column)
at the location of first highlighted(pink) arrow in second line gives 16