6 ms·
> Creating empty files is rarely useful or necessary I kind of disagree? Most files were once created as an empty file! (at least that's the case in my workflo
by hexomancer 1y ago
> Creating empty files is rarely useful or necessary
I kind of disagree? Most files were once created as an empty file! (at least that's the case in my workflow).
- ckolkey 1y agoI've always just used `:e <filename>` - never saw the appeal of oil.nvim for that use case. But for other kinds of modifications it's nifty.
- globular-toast 1y agoThe normal pattern, in Unix-like systems at least, is to just write to a non-existent file. There is very little reason to create an empty file first. In Emacs I can even open a file in a non-existent directory and it will create all the containing directories when I try to save. So I rarely even use mkdir.