mirror of
https://github.com/mentos1386/dotfiles.git
synced 2024-11-26 09:07:52 +00:00
feat: cut also copy
This commit is contained in:
parent
fdb48e750a
commit
dbf3533ae5
2 changed files with 2 additions and 3 deletions
|
@ -20,7 +20,6 @@
|
||||||
"filetypes": ["typescript", "typescriptreact", "graphql"]
|
"filetypes": ["typescript", "typescriptreact", "graphql"]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"prettier.disableSuccessMessage": true,
|
|
||||||
"coc.preferences.formatOnSaveFiletypes": [
|
"coc.preferences.formatOnSaveFiletypes": [
|
||||||
"javascript",
|
"javascript",
|
||||||
"javascriptreact",
|
"javascriptreact",
|
||||||
|
@ -33,7 +32,7 @@
|
||||||
"jsonc",
|
"jsonc",
|
||||||
"rust"
|
"rust"
|
||||||
],
|
],
|
||||||
"tsserver.formatOnType": true,
|
"tsserver.useLocalTsdk": true,
|
||||||
"coc.preferences.formatOnType": true,
|
"coc.preferences.formatOnType": true,
|
||||||
"yaml.schemaStore.enable": true,
|
"yaml.schemaStore.enable": true,
|
||||||
"yaml.schemas": {
|
"yaml.schemas": {
|
||||||
|
|
|
@ -119,8 +119,8 @@ if has('clipboard') && has('vim_starting')
|
||||||
endif
|
endif
|
||||||
if exists('##TextYankPost')
|
if exists('##TextYankPost')
|
||||||
augroup BlinkClipboardIntegration
|
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 '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
|
augroup END
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue