Skip to content

Commit

Permalink
🐛fix(regression): In the OS detection condition.
Browse files Browse the repository at this point in the history
  • Loading branch information
Zeioth authored Mar 25, 2024
1 parent 559cf81 commit e2e449f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/markmap/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ local M = {}
M.setup = function(opts)
-- Detect OS
local is_windows = uv.os_uname().sysname == "Windows_NT"
local is_android = vim.fn.isdirectory("/system" == 1)
local is_android = vim.fn.isdirectory("/system") == 1

-- Setup options
local html_output = opts.html_output
Expand Down

0 comments on commit e2e449f

Please sign in to comment.