comparison runtime/doc/eval.txt @ 27635:6ca2d8f4cd32 v8.2.4343

patch 8.2.4343: when reloading not all properties are detected Commit: https://github.com/vim/vim/commit/8196e94a8b72ed8618605cb66615571313097d78 Author: Rob Pilling <robpilling@gmail.com> Date: Fri Feb 11 15:12:10 2022 +0000 patch 8.2.4343: when reloading not all properties are detected Problem: When reloading not all properties are detected. Solution: Add the "edit" value to v:fcs_choice. (Rob Pilling, closes https://github.com/vim/vim/issues/9579)
author Bram Moolenaar <Bram@vim.org>
date Fri, 11 Feb 2022 16:15:03 +0100
parents 063952f68595
children 8fc68ce4a097
comparison
equal deleted inserted replaced
27634:9fe2fed9bb4b 27635:6ca2d8f4cd32
2068 v:fcs_choice What should happen after a |FileChangedShell| event was 2068 v:fcs_choice What should happen after a |FileChangedShell| event was
2069 triggered. Can be used in an autocommand to tell Vim what to 2069 triggered. Can be used in an autocommand to tell Vim what to
2070 do with the affected buffer: 2070 do with the affected buffer:
2071 reload Reload the buffer (does not work if 2071 reload Reload the buffer (does not work if
2072 the file was deleted). 2072 the file was deleted).
2073 edit Reload the buffer and detect the
2074 values for options such as
2075 'fileformat', 'fileencoding', 'binary'
2076 (does not work if the file was
2077 deleted).
2073 ask Ask the user what to do, as if there 2078 ask Ask the user what to do, as if there
2074 was no autocommand. Except that when 2079 was no autocommand. Except that when
2075 only the timestamp changed nothing 2080 only the timestamp changed nothing
2076 will happen. 2081 will happen.
2077 <empty> Nothing, the autocommand should do 2082 <empty> Nothing, the autocommand should do