diff options
Diffstat (limited to 'lsp/markdown_oxide.lua')
| -rw-r--r-- | lsp/markdown_oxide.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lsp/markdown_oxide.lua b/lsp/markdown_oxide.lua index 5059363b..79b11913 100644 --- a/lsp/markdown_oxide.lua +++ b/lsp/markdown_oxide.lua @@ -13,17 +13,17 @@ return { filetypes = { 'markdown' }, cmd = { 'markdown-oxide' }, on_attach = function() - vim.api.nvim_buf_create_user_command(0, 'Today', function() + vim.api.nvim_buf_create_user_command(0, 'LspToday', function() vim.lsp.buf.execute_command { command = 'jump', arguments = { 'today' } } end, { desc = "Open today's daily note", }) - vim.api.nvim_buf_create_user_command(0, 'Tomorrow', function() + vim.api.nvim_buf_create_user_command(0, 'LspTomorrow', function() vim.lsp.buf.execute_command { command = 'jump', arguments = { 'tomorrow' } } end, { desc = "Open tomorrow's daily note", }) - vim.api.nvim_buf_create_user_command(0, 'Yesterday', function() + vim.api.nvim_buf_create_user_command(0, 'LspYesterday', function() vim.lsp.buf.execute_command { command = 'jump', arguments = { 'yesterday' } } end, { desc = "Open yesterday's daily note", |
