I am implementing a JTextPane-based text editor. Currently, when I have a piece of selected text, pressing the TAB key deletes the selected text. I would like to change this behavior such that TAB will indent the selected text.
How to go about it?
|
|
|
|
|
|
|
Something along the line of:
You have some classes out there which do just that, like this one. In particular, the function
might do just what you need. |
||
|
|
|
The other way is to redefine action for JTextArea component associated with TAB key. Take look at ActionMap. |
||
|
|