Skip to content

Commit

Permalink
Update README.
Browse files Browse the repository at this point in the history
  • Loading branch information
mikoto2000 committed Nov 11, 2024
1 parent edbb246 commit 83efaff
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,8 @@ deno をコンテナにインストールする例:

### Vim のカスタマイズ

#### devcontainer.vim 上の Vim にのみ読み込まれる vimrc の作成

`devcontainer.vim vimrc -o` で、コンテナ上で実行する Vim に、追加で読み込ませるスクリプトが開きます。

このスクリプトを更新することで、コンテナ上の Vim のみに適用させたい設定ができます。
Expand All @@ -269,6 +271,17 @@ vnoremap <silent> "*y y:call SendToCdr('"')<CR>
devcontainer.vim vimrc -g
```

#### devcontainer.vim 上の Vim でのみ実行したい Vim script

devcontainer.vim 上で動く Vim には、 `g:devcontainer_vim` 変数が `v:true` で定義される。
以下のように判定すれば、「devcontainer.vim 上で動く Vim のみで実行される Vim script」が記述できる。

```vim
if get(g:, "devcontainer_vim", v:false)
" Run only on devcontainer.vim
endif
```


### run サブコマンドの引数のカスタマイズ

Expand Down

0 comments on commit 83efaff

Please sign in to comment.