USFM (Unified Standard Format Markers) is a plain text-based
format widely used for translating Bibles. I plan to develop
lexer for it, and possibly even some editing tools.
---
lua/plugins/filetype.lua | 3 +++
1 file changed, 3 insertions(+)
diff --git a/lua/plugins/filetype.lua b/lua/plugins/filetype.lua
index 5bd1ff07..fe0fd3aa 100644
--- a/lua/plugins/filetype.lua
+++ b/lua/plugins/filetype.lua
@@ -465,6 +465,9 @@ vis.ftdetect.filetypes = {
vala = {
ext = { "%.vala$" }
},
+ usfm = {
+ ext = { "%.usfm$" }
+ },
vb = {
ext = {
"%.asa$", "%.bas$", "%.ctl$", "%.dob$",
--
2.46.1
Matěj Cepl <mcepl@cepl.eu> wrote:
> USFM (Unified Standard Format Markers) is a plain text-based
> format widely used for translating Bibles. I plan to develop
> lexer for it, and possibly even some editing tools.
Applied!
Cheers,
Felix