feat: cut also copy

This commit is contained in:
Tine Jozelj 2023-09-14 14:25:07 +02:00
parent fdb48e750a
commit dbf3533ae5
Signed by: mentos1386
SSH key fingerprint: SHA256:MNtTsLbihYaWF8j1fkOHfkKNlnN1JQfxEU/rBU8nCGw
2 changed files with 2 additions and 3 deletions

View file

@ -20,7 +20,6 @@
"filetypes": ["typescript", "typescriptreact", "graphql"]
}
},
"prettier.disableSuccessMessage": true,
"coc.preferences.formatOnSaveFiletypes": [
"javascript",
"javascriptreact",
@ -33,7 +32,7 @@
"jsonc",
"rust"
],
"tsserver.formatOnType": true,
"tsserver.useLocalTsdk": true,
"coc.preferences.formatOnType": true,
"yaml.schemaStore.enable": true,
"yaml.schemas": {

View file

@ -119,8 +119,8 @@ if has('clipboard') && has('vim_starting')
endif
if exists('##TextYankPost')
augroup BlinkClipboardIntegration
autocmd!
autocmd TextYankPost * if v:event.operator is 'y' && v:event.regname is '' | execute 'OSCYankRegister +' | endif
autocmd TextYankPost * if v:event.operator is 'd' && v:event.regname is '' | execute 'OSCYankRegister +' | endif
augroup END
endif