Auto format vimscript?
- 主要言語
- Vim Script
- スター
- 9
- フォーク
- 0
- PR マージ指標
- 30日以内にマージされた PR はありません
説明
Question : ) I'm wondering if you break these lines manually or with some autoformatting plugins? Thanks!
```
" define a fancy nvim clipboard provider
if has('linux')
let g:clipboard = {
\ 'name': 'Vim Clipboard',
\ 'copy': {
\ '+': 'xclip -i -selection clipboard',
\ '*': 'xclip -i -selection secondary',
\ },
\ 'paste': {
\ '+': 'xclip -o -selection clipboard',
\ '*': 'xclip -o -selection secondary',
\ },
\ 'cache_enabled': 1,
\ }
" tell nvim to use * as its internal clipboard
" now vim sessions can share yank buffers by using the virtually unheard of
" secondary selection buffer!
set clipboard=unnamed
endif
```
コントリビューションガイド
このリポジトリのコントリビューションガイドは索引されていません
評価
この issue はまだ評価されていません。