diff options
author | Teddy Wing | 2019-09-21 19:10:09 +0200 |
---|---|---|
committer | Teddy Wing | 2019-09-26 21:42:28 +0200 |
commit | 401cb76a4466b72896a528646e51c95435ce35ff (patch) | |
tree | 3b2defc73f920820a03ac04a309473a0fdbf10d7 /plugin/surround.vim | |
parent | 5e73714ccb1423d72b67e16d8a1b6d81cc384f34 (diff) | |
download | dotvim-401cb76a4466b72896a528646e51c95435ce35ff.tar.bz2 |
surround.vim: Add `s` for GitHub suggestion surrounding
Use `s` to wrap text in a GitHub suggestion.
Before:
Text
After:
``` suggestion
Text
```
Diffstat (limited to 'plugin/surround.vim')
-rw-r--r-- | plugin/surround.vim | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugin/surround.vim b/plugin/surround.vim new file mode 100644 index 0000000..a3cae55 --- /dev/null +++ b/plugin/surround.vim @@ -0,0 +1,2 @@ +" `s` to wrap in a GitHub suggestion +let g:surround_115 = "``` suggestion\n\r\n```" |