From ddcf2f6ae0cf3cc9617c0caccac185605520c7e1 Mon Sep 17 00:00:00 2001 From: Jonas Hahn Date: Thu, 10 Apr 2025 18:44:13 +0200 Subject: [PATCH] disable the calendar feature --- lua/telekasten.lua | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lua/telekasten.lua b/lua/telekasten.lua index 8c25fbb..aea2cdf 100644 --- a/lua/telekasten.lua +++ b/lua/telekasten.lua @@ -3057,7 +3057,8 @@ M.find_weekly_notes = FindWeeklyNotes M.yank_notelink = YankLink M.rename_note = RenameNote M.new_templated_note = CreateNoteSelectTemplate -M.show_calendar = ShowCalendar +-- disable the calendar feature +-- M.show_calendar = ShowCalendar M.CalendarSignDay = CalendarSignDay M.CalendarAction = CalendarAction M.paste_img_and_link = imgFromClipboard @@ -3092,7 +3093,8 @@ local TelekastenCmd = { "new_templated_note", M.new_templated_note, }, - { "show calendar", "show_calendar", M.show_calendar }, + -- disable the calendar feature + -- { "show calendar", "show_calendar", M.show_calendar }, { "paste image from clipboard", "paste_img_and_link",