mirror of
https://github.com/Ascyii/telekasten.nvim.git
synced 2026-01-01 06:14:23 -05:00
WikiLink aliases (#181)
* Added ability to remove link alias * Added spaces regex 'note | alias' will be displayed correctly. * show_backlinks * find_friends * Fixed simple link processing * updated style hide link body when it's aliased * Review fix * syntax review fix * more fixeS * Documentation * format fix * Added documentation
This commit is contained in:
@@ -173,6 +173,14 @@ local function escape(s)
|
||||
return string.gsub(s, "[%%%]%^%-$().[*+?]", "%%%1")
|
||||
end
|
||||
|
||||
local function remove_alias(link)
|
||||
local split_index = string.find(link, "%s*|")
|
||||
if split_index ~= nil and type(split_index) == "number" then
|
||||
return string.sub(link, 0, split_index - 1)
|
||||
end
|
||||
return link
|
||||
end
|
||||
|
||||
local function file_exists(fname)
|
||||
if fname == nil then
|
||||
return false
|
||||
@@ -1629,12 +1637,13 @@ local function FindFriends(opts)
|
||||
|
||||
vim.cmd("normal yi]")
|
||||
local title = vim.fn.getreg('"0')
|
||||
title = remove_alias(title)
|
||||
title = title:gsub("^(%[)(.+)(%])$", "%2")
|
||||
|
||||
builtin.live_grep({
|
||||
prompt_title = "Notes referencing `" .. title .. "`",
|
||||
cwd = M.Cfg.home,
|
||||
default_text = "\\[\\[" .. title .. "\\]\\]",
|
||||
default_text = "\\[\\[" .. title .. "([#|].+)?\\]\\]",
|
||||
find_command = M.Cfg.find_command,
|
||||
attach_mappings = function(_, map)
|
||||
actions.select_default:replace(picker_actions.select_default)
|
||||
@@ -1965,7 +1974,7 @@ local function ShowBacklinks(opts)
|
||||
prompt_title = "Search",
|
||||
cwd = M.Cfg.home,
|
||||
search_dirs = { M.Cfg.home },
|
||||
default_text = "\\[\\[" .. title .. "(#.+)*\\]\\]",
|
||||
default_text = "\\[\\[" .. title .. "([#|].+)?\\]\\]",
|
||||
find_command = M.Cfg.find_command,
|
||||
attach_mappings = function(_, map)
|
||||
actions.select_default:replace(picker_actions.select_default)
|
||||
@@ -2181,6 +2190,7 @@ local function FollowLink(opts)
|
||||
-- we are in a link
|
||||
vim.cmd("normal yi]")
|
||||
title = vim.fn.getreg('"0')
|
||||
title = remove_alias(title)
|
||||
title = title:gsub("^(%[)(.+)(%])$", "%2")
|
||||
else
|
||||
-- we are in an external [link]
|
||||
|
||||
Reference in New Issue
Block a user