Sublime Forum

Prevent Sublime Text from Copying to Clipbpard

#1

Hi,

I use ST with Vintage Mode. ST somehow copies deleted text to my clipboard on delete - when I use the command like d + w to delete a word.

How can I disable this feature?

My OS is macOS

0 Likes

#2

Try to set vintage_use_clipboard to false in settings?

0 Likes

#3

That did it. thanks.

But, it still copies text when I CMD + X to delete a line. How can I disable it as well?

0 Likes

#4

It was actually here
https://stackoverflow.com/questions/46220035/sublime-text-3-disable-shiftdelete-copying-the-selected-text
I mapped it to:

{ "keys": ["super+x"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete Line.sublime-macro"}}

It deletes an entire line without copying it into your clipboard
Thank you

0 Likes