mirror of
https://github.com/mentos1386/dotfiles.git
synced 2025-01-31 00:35:42 +00:00
Updated vim plugin
This commit is contained in:
parent
5ebdc3a7c1
commit
1f89051b18
2 changed files with 7 additions and 2 deletions
|
@ -10,6 +10,7 @@ dotfiles for blink.sh env
|
||||||
- [Development setup with docker](#development-setup-with-docker)
|
- [Development setup with docker](#development-setup-with-docker)
|
||||||
- [Start and stop service](#start-and-stop-service)
|
- [Start and stop service](#start-and-stop-service)
|
||||||
- [Access host from the blink](#access-host-from-the-blink)
|
- [Access host from the blink](#access-host-from-the-blink)
|
||||||
|
- [References](#references)
|
||||||
- [Demo](#demo)
|
- [Demo](#demo)
|
||||||
|
|
||||||
<!-- /MarkdownTOC -->
|
<!-- /MarkdownTOC -->
|
||||||
|
@ -140,6 +141,10 @@ mosh blink@host -P 22022 -p 22022
|
||||||
docker-compose exec alpine killall mosh-server
|
docker-compose exec alpine killall mosh-server
|
||||||
```
|
```
|
||||||
|
|
||||||
|
# References
|
||||||
|
|
||||||
|
[vim-oscyank plugin](https://github.com/ojroques/vim-oscyank)
|
||||||
|
|
||||||
# Demo
|
# Demo
|
||||||
|
|
||||||
Screencast
|
Screencast
|
||||||
|
|
|
@ -17,7 +17,7 @@ if has('vim_starting')
|
||||||
call dein#add('Shougo/deoplete.nvim')
|
call dein#add('Shougo/deoplete.nvim')
|
||||||
|
|
||||||
""" With nvim we should use ojroques's repo, details: https://github.com/fcpg/vim-osc52/issues/6
|
""" With nvim we should use ojroques's repo, details: https://github.com/fcpg/vim-osc52/issues/6
|
||||||
call dein#add('ojroques/vim-osc52')
|
call dein#add('ojroques/vim-oscyank')
|
||||||
" call dein#add('fcpg/vim-osc52')
|
" call dein#add('fcpg/vim-osc52')
|
||||||
|
|
||||||
call dein#end()
|
call dein#end()
|
||||||
|
@ -53,6 +53,6 @@ endif
|
||||||
if exists('##TextYankPost')
|
if exists('##TextYankPost')
|
||||||
augroup BlinkClipboardIntegration
|
augroup BlinkClipboardIntegration
|
||||||
autocmd!
|
autocmd!
|
||||||
autocmd TextYankPost * silent! if v:event.operator ==# 'y' | call SendViaOSC52(join(v:event["regcontents"],"\n")) | endif
|
autocmd TextYankPost * silent! if v:event.operator ==# 'y' | call YankOSC52(join(v:event["regcontents"],"\n")) | endif
|
||||||
augroup END
|
augroup END
|
||||||
endif
|
endif
|
||||||
|
|
Loading…
Reference in a new issue