From 4464a1fa542b3f0e969d005045ce08e96c18c20e Mon Sep 17 00:00:00 2001 From: James Keim Date: Tue, 1 Feb 2022 08:46:19 +0000 Subject: [PATCH] feat: add pandoc to wordcount part (#32) This simply adds the 'pandoc' filetype so the wordcount works with Vim-Pandoc and Vim-Pandoc-Syntax. --- lua/hardline/parts/wordcount.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lua/hardline/parts/wordcount.lua b/lua/hardline/parts/wordcount.lua index 11c7be9..baabeb4 100644 --- a/lua/hardline/parts/wordcount.lua +++ b/lua/hardline/parts/wordcount.lua @@ -11,8 +11,9 @@ local options = { 'markdown', 'nroff', 'org', - 'rst', + 'pandoc', 'plaintex', + 'rst', 'tex', 'text', },