I have a maven project I'm running in eclipse that is using the rsyntaxtextarea2.02.jar
Here's is my snippet of code
editorTextArea = new RSyntaxTextArea(RSyntaxTextArea.INSERT_MODE);
editorTextArea.setSyntaxEditingStyle(SyntaxConstants.SYNTAX_STYLE_JAVA);
editorTextArea.setCodeFoldingEnabled(true);
editorTextArea.setAntiAliasingEnabled(true);
editorTextArea.setEditable(true);
RTextScrollPane editorScrollPane = new RTextScrollPane(editorTextArea);
splitPane_1.setLeftComponent(editorScrollPane);
editorTextArea.setText("public static void main(String[] args) {\n}");
it displays correctly, looks fantastic, and I'm unable to edit anything. I can copy and paste into the text area, I can use the right menu to undo and redo where appropriate. It just seems not to be receiving any of my key strokes.
Any suggestions would be appreciated.
