From 4ceba651f13d7adfbf5508a99ecf0950f266ba8a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rene=CC=81=20Schwaiger?= Date: Sun, 1 Aug 2021 14:24:04 +0200 Subject: [PATCH] Template: Add missing import MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Before this update the command “LaTeX Template” would report an error. Thank you to David Rodriguez Elizalde (@stoicdavid) for reporting this problem and suggesting the fix. This commit fixes #187. --- Support/lib/Ruby/command.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Support/lib/Ruby/command.rb b/Support/lib/Ruby/command.rb index f128d2b3..fe32f880 100644 --- a/Support/lib/Ruby/command.rb +++ b/Support/lib/Ruby/command.rb @@ -11,6 +11,7 @@ require ENV['TM_SUPPORT_PATH'] + '/lib/exit_codes.rb' require ENV['TM_SUPPORT_PATH'] + '/lib/ui.rb' require ENV['TM_SUPPORT_PATH'] + '/lib/web_preview.rb' +require ENV['TM_SUPPORT_PATH'] + '/lib/osx/plist' require ENV['TM_BUNDLE_SUPPORT'] + '/lib/Ruby/indent.rb' require ENV['TM_BUNDLE_SUPPORT'] + '/lib/Ruby/latex.rb'