You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+24-22Lines changed: 24 additions & 22 deletions
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@
9
9
10
10
## About
11
11
12
-
A Windows desktop application to paste clipboard contents into files and copy file contents to the clipboard via the context menu
12
+
A Windows desktop application to paste clipboard contents directly into files and copy file contents to the clipboard via the context menu or hotkey
13
13
14
14
15
15
@@ -23,7 +23,7 @@ _The full changelog can be found on the [release page](https://github.com/eltos/
23
23
24
24
### Features
25
25
26
-
+ Explorer context menu entries "[Paste into file](#paste-clipboard-contents)", "[Replace with clipboard content](#replace-with-clipboard-content)" and "[Copy file contents](#copy-file-contents)"
26
+
+ Explorer context menu entries "[Paste into file](#paste-clipboard-contents)", "[Paste into this file (Append/Replace)](#paste-into-existing-files-appendreplace)" and "[Copy file contents](#copy-file-contents)"
27
27
+ Hotkey `Win`+`Alt`+`V` to paste and `Win`+`Alt`+`C` to copy file contents
28
28
+[Autosave mode](https://github.com/eltos/PasteIntoFile/discussions/2): rename inside file explorer without dialog
29
29
+[Batch mode](https://github.com/eltos/PasteIntoFile/discussions/4): monitor clipboard and save on change
@@ -69,7 +69,7 @@ In addition to the instructions given below, help is also available via [GitHub
69
69
70
70
### Paste clipboard contents
71
71
72
-
This is the main mode of PasteIntoFile which allows saving clipboard contents into files.
72
+
This is the main mode of Paste Into File which allows saving clipboard contents directly into files.
73
73
To use this mode, run the program from the file explorer context menu, with the hotkey `WIN`+`ALT`+`V` (if enabled), from the tray (if enabled), from the start menu or via command line.
74
74
If **clipboard patching** is enabled, the regular paste command and `CTRL`+`V` hotkey can also be used.
75
75
@@ -99,16 +99,17 @@ using `html` will cause the html-formatted text to be saved,
99
99
while using `HTML` will save the plain text.
100
100
101
101
102
-
### Replace with clipboard content
103
-
The context menu entry **Replace with clipboard content** allows you to paste clipboard contents into existing files by replacing them.
102
+
### Paste into existing files (Append/Replace)
103
+
The context menu entry **Paste into this file (Append/Replace)** allows you to paste clipboard contents into existing files by either appending or replacing them.
104
104
This works as long as the clipboard contains data compatible with the selected file type.
105
-
The old file is moved to the recycle bin and can be restored with the usual undo options of the file explorer.
105
+
In the case of replace, the old file is moved to the recycle bin and can be restored with the usual undo options of the file explorer (e.g. `CTRL-Z`).
106
106
107
107
108
108
### Copy file contents
109
109
110
110
To copy the contents of a file to the clipboard, use the file explorer context menu, the hotkey `WIN`+`ALT`+`C` (if enabled) or the command line option.
111
111
Currently, image and text files are supported. If the file format is not understood, an error message will be shown.
112
+
For non-text files, the file path is copied as text in addition to the image contents and file.
112
113
113
114
114
115
@@ -117,7 +118,7 @@ Currently, image and text files are supported. If the file format is not underst
117
118
Use `help`, `help paste`, `help config` etc. as argument to show available command line options, e.g.:
0 commit comments