diff options
author | zeertzjq <zeertzjq@outlook.com> | 2025-03-29 07:01:49 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-29 07:01:49 +0800 |
commit | cb31663663b9be92dd9c2fbe06ccea88625b2fca (patch) | |
tree | 812b56ede3741de74443099815e5eac4c2ff8988 /runtime/lua/vim/_meta/options.lua | |
parent | f4ee0ab2f1a15fe3bb88122fa162620e4af74b1d (diff) | |
download | rneovim-cb31663663b9be92dd9c2fbe06ccea88625b2fca.tar.gz rneovim-cb31663663b9be92dd9c2fbe06ccea88625b2fca.tar.bz2 rneovim-cb31663663b9be92dd9c2fbe06ccea88625b2fca.zip |
vim-patch:9.1.1252: typos in code and docs related to 'diffopt' "inline:" (#33143)
Problem: Typos in code and docs related to 'diffopt' "inline:".
(after v9.1.1243)
Solution: Fix typos and slightly improve the docs.
(zeertzjq)
closes: vim/vim#16997
https://github.com/vim/vim/commit/5a307c361cbe9f7ac438a917b905378d87f8f2de
Diffstat (limited to 'runtime/lua/vim/_meta/options.lua')
-rw-r--r-- | runtime/lua/vim/_meta/options.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/lua/vim/_meta/options.lua b/runtime/lua/vim/_meta/options.lua index 427bbd5124..5f93e42c35 100644 --- a/runtime/lua/vim/_meta/options.lua +++ b/runtime/lua/vim/_meta/options.lua @@ -1722,8 +1722,8 @@ vim.go.dex = vim.go.diffexpr --- none Do not perform inline highlighting. --- simple Highlight from first different --- character to the last one in each ---- line. This is the default if nothing ---- is set. +--- line. This is the default if no +--- `inline:` value is set. --- char Use internal diff to perform a --- character-wise diff and highlight the --- difference. |