You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Motivated by the discussion on PR #190, I am hereby splitting the request for single backtick support from issue #184 into this new issue with more details:
It would be great if our single backticks code could distinguish between keywords, arguments and the rest, and then depending on that insert <K>bla</K>, <A>bla</A>, or <C>bla</C> -- right now, it always inserts <C>bla</C>.
The text was updated successfully, but these errors were encountered:
Note that one can use ALL_KEYWORDS() to detect keywords. The hardest bit is to recognize arguments. One problem with that is that we may not know them yet at the time we process the backtick.
Motivated by the discussion on PR #190, I am hereby splitting the request for single backtick support from issue #184 into this new issue with more details:
It would be great if our single backticks code could distinguish between keywords, arguments and the rest, and then depending on that insert
<K>bla</K>
,<A>bla</A>
, or<C>bla</C>
-- right now, it always inserts<C>bla</C>
.The text was updated successfully, but these errors were encountered: