ox

The Ox programming language, compiler and tools (WIP)
Log | Files | Refs | README | LICENSE

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:
Mox-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 +