Skip to content

Commit 5206bc4

Browse files
authored
Create README.md
1 parent c527af6 commit 5206bc4

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

README.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# EclipsePasteAsJavaString
2+
Eclipse Plugin to paste text as Java string (with escape multi-line) when Ctrl+Shift+V pressed
3+
4+
# Install
5+
Drop .jar file in Eclipse plugins folder and restart Eclipse.
6+
https://github.com/Enyby/EclipsePasteAsJavaString/blob/master/plugins/com.pastejava_1.0.0.jar?raw=true
7+
8+
# Usage
9+
Press Ctrl+Shift+V for insert text as Java string.
10+
11+
# Example
12+
Paste as usual via Ctrl+V:
13+
```
14+
some text with tabs
15+
and new
16+
lines
17+
```
18+
Paste as Java string via Ctrl+Shift+V
19+
```
20+
"some text\twith tabs\r\n" +
21+
"and new \r\n" +
22+
"lines"
23+
```

0 commit comments

Comments
 (0)