Skip to content

Commit d060afe

Browse files
committed
style: stylua
1 parent 7a27adc commit d060afe

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lua/cppman/index.lua

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ local CACHE_HOME = os.getenv("XDG_CACHE_HOME") or vim.fs.joinpath(os.getenv("HOM
66
local CACHE_DIR = vim.fs.joinpath(CACHE_HOME, "cppman")
77

88
local index_db_path = vim.fs.joinpath(CACHE_DIR, "index.db")
9-
index_db_path = vim.fn.filereadable(index_db_path) == 1 and index_db_path or require("cppman.config").get().index_db_path
9+
index_db_path = vim.fn.filereadable(index_db_path) == 1 and index_db_path
10+
or require("cppman.config").get().index_db_path
1011

1112
---@type vim.SystemObj
1213
local job = nil

0 commit comments

Comments
 (0)