commit bc83bc7bc01c35826d4631c27d04f04c0677e0ae parent c95d79719a1d65d11c2d6fd818d8ea5bdc50203c Author: citbl <citbl@citbl.org> Date: Fri, 5 Dec 2025 22:36:20 +1000 fix syntax file was impacting other file types and marking them as default conf Diffstat:
| M | ox-syntax/vim/ftdetect/ox.vim | | | 6 | ++---- |
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/ox-syntax/vim/ftdetect/ox.vim b/ox-syntax/vim/ftdetect/ox.vim @@ -1,5 +1,3 @@ " Use filetype 'ox' for *.ox files -augroup filetypedetect - au! - au BufNewFile,BufRead *.ox setfiletype ox -augroup END +autocmd BufNewFile,BufRead *.ox setfiletype ox +