Skip to content
This repository has been archived by the owner on Sep 28, 2024. It is now read-only.

Commit

Permalink
Disable loading the dll in Windows terminal version.
Browse files Browse the repository at this point in the history
It crashes the editor for some reason.
  • Loading branch information
orbitalquark committed Mar 25, 2022
1 parent 062896a commit d7acf5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ local M = {}
-- Jump to the anchor for the alias under the caret.
module('_M.yaml')]]

local lyaml = require('yaml.lyaml')
local lyaml = not (WIN32 and CURSES) and require('yaml.lyaml') or nil

-- Always use spaces.
events.connect(events.LEXER_LOADED, function(name)
Expand Down

0 comments on commit d7acf5e

Please sign in to comment.