diff options
author | Rob Pilling <robpilling@gmail.com> | 2022-02-11 15:12:10 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-02-11 15:12:10 +0000 |
commit | 8196e94a8b72ed8618605cb66615571313097d78 (patch) | |
tree | ada10ee3829393c8e0e2ad76915f8ef0c2ae1f9f /src/spellfile.c | |
parent | 92f645bef7bb817822d115291fe584b15647d577 (diff) | |
download | vim-git-8196e94a8b72ed8618605cb66615571313097d78.tar.gz |
patch 8.2.4343: when reloading not all properties are detectedv8.2.4343
Problem: When reloading not all properties are detected.
Solution: Add the "edit" value to v:fcs_choice. (Rob Pilling, closes #9579)
Diffstat (limited to 'src/spellfile.c')
-rw-r--r-- | src/spellfile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/spellfile.c b/src/spellfile.c index b5c669396..5b34298d7 100644 --- a/src/spellfile.c +++ b/src/spellfile.c @@ -6336,7 +6336,7 @@ spell_add_word( // If the .add file is edited somewhere, reload it. if (buf != NULL) - buf_reload(buf, buf->b_orig_mode); + buf_reload(buf, buf->b_orig_mode, FALSE); redraw_all_later(SOME_VALID); } |