Sublime Forum

How to disable the line-copy feature

#1

Hi there,

I have noticed that this editor when using the copy/paste function without any selection, by default copies the whole current line.

Is there a way to disable this behaviour?

Thank you

0 Likes

Un-usual paste {CTRL + V} || paste not working as intended
#2

Add this to your key bindings:

  { "keys": ["ctrl+c"], "command": "noop", "context": [
      { "key": "selection_empty", "match_all": true }
  ] }
3 Likes

#3

Put this in your user preferences:

"copy_with_empty_selection": false

4 Likes

#4

thank you! Both solutions work

0 Likes