mirror of
https://github.com/Ascyii/telekasten.nvim.git
synced 2026-01-01 06:14:23 -05:00
fix: following a [hyperlink](https://.....) will now not result in an
error but search for `hyperlink`. Support for external links is planned.
This commit is contained in:
@@ -68,9 +68,16 @@ M.Cfg = {
|
||||
|
||||
-- tag notation: '#tag', ':tag:', 'yaml-bare'
|
||||
tag_notation = "#tag",
|
||||
|
||||
-- command palette theme: dropdown (window) or ivy (bottom panel)
|
||||
command_palette_theme = "ivy",
|
||||
}
|
||||
|
||||
local function file_exists(fname)
|
||||
if fname == nil then
|
||||
return false
|
||||
end
|
||||
|
||||
local f = io.open(fname, "r")
|
||||
if f ~= nil then
|
||||
io.close(f)
|
||||
|
||||
Reference in New Issue
Block a user