RSyntaxTextArea
RSyntaxTextArea copied to clipboard
Optionally skip creation of multiline block comment (CPP)
Some of our users are concerned about the automatic creation of a
/*
*
*/
block when hitting return after /*. Is there a way to turn this completion off?
Not currently, but this can be made into a new feature. This action currently lives in org.fife.ui.rsyntaxtextarea.AbstractJFlexCTokenMaker. insertBreakInMLC would have to be conditionally called, depending on whether or not this feature is desired.
This will of course affect all C-style languages subclassing AbstractJFlexCTokenMaker, but there's no way around that without more involved code changes.