We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c527af6 commit 5206bc4Copy full SHA for 5206bc4
README.md
@@ -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