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 56ac3fb commit 3c8319fCopy full SHA for 3c8319f
lua/orgmode/objects/calendar.lua
@@ -568,7 +568,10 @@ function Calendar:get_selected_date()
568
local line = vim.fn.line('.')
569
vim.cmd([[redraw!]])
570
if line < 3 or not char:match('%d') then
571
- return utils.echo_warning('Please select valid day number.', nil, false)
+ utils.notify('Please select valid day number.', {
572
+ level = 'warn',
573
+ })
574
+ return self.date
575
end
576
return self.date:set({
577
day = day,
0 commit comments