diff options
Diffstat (limited to 'fnl/config/ncomment.fnl')
-rw-r--r-- | fnl/config/ncomment.fnl | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/fnl/config/ncomment.fnl b/fnl/config/ncomment.fnl index 68d4c97..b71fd1e 100644 --- a/fnl/config/ncomment.fnl +++ b/fnl/config/ncomment.fnl @@ -19,8 +19,7 @@ :key (get-type ctx U) :location (get-location ctx U)}))) -(let [(ok? ncomment) util.load-plugin :Comment] - (when ok? - (ncomment.setup - {:pre_hook (fn [ctx] - (pre-hook ctx))}))) +(let [ncomment (util.load-plugin :Comment)] + (ncomment.setup + {:pre_hook (fn [ctx] + (pre-hook ctx))})) |