Line spacing in %clipboard%

Discussion, questions and support.
Post Reply
Loxtus
Posts: 11
Joined: Jun 5th, ’18, 06:12

Post by Loxtus » Jul 14th, ’18, 11:55

When I want to do the %clipboard%-variable over several lines, for example:

1
2
3

it always turns out with a line spacing, having an outcome like:

1

2

3

Is there a way to get rid of that line spacing?

The problem exists in every program I use
User avatar
Marko
Posts: 1726
Joined: Mar 2nd, ’13, 21:02

Post by Marko » Jul 14th, ’18, 17:39

%Clipboard% variable contains the current contents of the Windows clipboard. Each line of text on Clipboard typically ends with carriage return and linefeed (CR+LF) and FastKeys types it letter by letter.

For general purpose it is better to use Paste instead.

Code: Select all

^v
Loxtus
Posts: 11
Joined: Jun 5th, ’18, 06:12

Post by Loxtus » Jul 15th, ’18, 07:35

That worked for me, thanks!
Post Reply