-
Hi, as the title says, when I run bun in watch mode on linux, I am getting the error When running on macos however, I am not seeing this at all, it just works. Any ideas? The command is {
"name": "site",
"main": "index.js",
"devDependencies": {
"@types/bun": "latest"
},
"dependencies": {
"fzf": "^0.5.2",
"lit-html": "^3.2.1"
}
} |
Beta Was this translation helpful? Give feedback.
Answered by
mhanberg
Oct 16, 2024
Replies: 1 comment 2 replies
-
I'm actually wondering if this is related to saving the file in vim and how vim flushes files to disk... |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I forgot to come back, this is directly related to: #2987 (comment)
in vim, setting
set noswapfile
fixed it, as i believe that makes vim just write it to disk instead of doing a dance with touching the file multiple times