We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a27adc commit d060afeCopy full SHA for d060afe
lua/cppman/index.lua
@@ -6,7 +6,8 @@ local CACHE_HOME = os.getenv("XDG_CACHE_HOME") or vim.fs.joinpath(os.getenv("HOM
6
local CACHE_DIR = vim.fs.joinpath(CACHE_HOME, "cppman")
7
8
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
+index_db_path = vim.fn.filereadable(index_db_path) == 1 and index_db_path
10
+ or require("cppman.config").get().index_db_path
11
12
---@type vim.SystemObj
13
local job = nil
0 commit comments