Skip to content

Commit

Permalink
[NVIM] Fix zettel keybinds with new structure
Browse files Browse the repository at this point in the history
  • Loading branch information
skbolton committed Apr 17, 2023
1 parent 7c185a0 commit f66b0df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nvim/nvim/lua/fuzzy.lua
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ map('n', '<leader>nt', '<CMD>ZkTags<CR>')
map('n', '<leader>ns', '<CMD>ZkSpells<CR>')
map('n', '<leader>n.', '<CMD>ZkBacklinks<CR>')
map('v', '<leader>zn', ":'<,'>ZkNewFromTitleSelection { dir = 'Logbook' }<CR>")
map('v', '<leader>zr', ":'<,'>ZkNewFromTitleSelection { dir = 'Ref' }<CR>")
map('v', '<leader>zz', ":'<,'>ZkNewFromTitleSelection { dir = 'Zettel' }<CR>")
map('v', '<leader>zr', ":'<,'>ZkNewFromTitleSelection { dir = 'Cortex', group = 'Ref' }<CR>")
map('v', '<leader>zz', ":'<,'>ZkNewFromTitleSelection { dir = 'Cortex', group = 'Zettel' }<CR>")
map('v', '<leader>zN', ":'<,'>ZkNewFromContentSelection { title = vim.fn.input('Title: '), dir = vim.fn.input('Dir: ') }<CR>")
map('n', '<leader>fi', '<CMD>Telescope symbols<CR>')

Expand Down

0 comments on commit f66b0df

Please sign in to comment.