I observed that in the recent update for Vim, specifically vim 9.0.1420, it is now possible to create a text file, open it, and then open the same file through another terminal window without encountering the familiar warning message related to .swp files. This message was previously displayed before the update and helped prevent editing an already opened file.
Would anybody help me (scritpnames test, etc) to narrow down the cause of this problem?
Thank you.
Asked
Active
Viewed 62 times
0
Vivian De Smedt
- 16,336
- 3
- 18
- 37
DavidC.
- 101
- 1
vim -u NONE -i NONE? Can you reproduce the problem withvim --clean? – Vivian De Smedt Apr 20 '23 at 06:26vim -u NONE test.txtand through another terminal windowvim -u NONE test.txt, I can see the.swpwarning. Same withvim --clean test.txt. Could you help me to narrow down where the problem is? Super, many thanks – DavidC. Apr 20 '23 at 07:10vim --cleanstarts Vim without plugins. The "problem" is probably with one of your plugin. My advice would be to do some kind of binary search (disable half of them, disable the other half, ...) to find the culprit. – Vivian De Smedt Apr 20 '23 at 08:52