How to force a syntax-highlighting refresh in emacs?
Yes. The emacs command is M-x font-lock-fontify-buffer if I recall it right. You can bind it to a key sequence if it’s not already bound in your mode.
Yes. The emacs command is M-x font-lock-fontify-buffer if I recall it right. You can bind it to a key sequence if it’s not already bound in your mode.
The short answer to your question is “No, there aren’t.” « and » are not actually intended as direction arrows, despite their frequent usage as such. What they are actually intended for is hinted at by their entity names — they’re supposed to be “angled quotes”. Certain European countries (notably France) tend to use these … Read more
The CSS 2.1 spec tells us that: Font family names must either be given quoted as strings, or unquoted as a sequence of one or more identifiers. This means most punctuation characters and digits at the start of each token must be escaped in unquoted font family names. It goes on to say: If a … Read more
You can always use String.format(….). i.e., String string = String.format(“A String %s %2d”, aStringVar, anIntVar); I’m not sure if that is attractive enough for you, but it can be quite handy. The syntax is the same as for printf and java.util.Formatter. I’ve used it much especially if I want to show tabular numeric data.