vis

a vi-like editor based on Plan 9's structural regular expressions

git clone https://9o.is/git/vis.git

commit 777092a504f28ae7149b9347b4a8b9c49dd26a1a
parent 030f0ea230aa92f8a669e4469697bd83e8a75795
Author: Matěj Cepl <mcepl@cepl.eu>
Date:   Tue, 27 Aug 2024 15:28:15 +0200

introduce new `org` file type

Diffstat:
Mlua/plugins/filetype.lua | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/lua/plugins/filetype.lua b/lua/plugins/filetype.lua @@ -310,6 +310,9 @@ vis.ftdetect.filetypes = { ext = { "%.m$", "%.mm$", "%.objc$" }, mime = { "text/x-objc" }, }, + org = { + ext = { "%.org$" }, + }, pascal = { ext = { "%.dpk$", "%.dpr$", "%.p$", "%.pas$" }, },