Pages

Saturday 10 November 2018

Keyboard shortcuts in CRXDE Lite

Ctrl-G - Go to path/Search
Ctrl-Shift-R - Reload selected node
Ctrl-O - Open selected file
Ctrl-N - Create a node
Ctrl-Alt-N - Create a node
Ctrl-Shift-N - Create a file
Ctrl-M - Move a node
Ctrl-Shift-C - Copy node to clipboard
Ctrl-Shift-V - Paste node from clipboard
Shift-Del - Delete node ( When focus is on Repository Tree)
Shift-Del - Delete property (When focus is on Property Editor)


No comments:

Post a Comment

Converting InputStream to String

    private String convertToString(InputStream inputStreamObj)             throws IOException {         if (inputStreamObj != null) {     ...