From 65b5eea9a2a5ad409ec89634265b3cb88da90570 Mon Sep 17 00:00:00 2001 From: Nathan Ringo Date: Sun, 4 Aug 2019 15:54:18 -0500 Subject: [PATCH] Adds .fth extension for Forth. --- lexers/f/forth.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lexers/f/forth.go b/lexers/f/forth.go index 3fb3aa784..47de6365f 100644 --- a/lexers/f/forth.go +++ b/lexers/f/forth.go @@ -10,7 +10,7 @@ var Forth = internal.Register(MustNewLexer( &Config{ Name: "Forth", Aliases: []string{"forth"}, - Filenames: []string{"*.frt", "*.fs"}, + Filenames: []string{"*.frt", "*.fth", "*.fs"}, MimeTypes: []string{"application/x-forth"}, CaseInsensitive: true, },