emacs-calfw icon indicating copy to clipboard operation
emacs-calfw copied to clipboard

A calendar framework for Emacs

Results 81 emacs-calfw issues
Sort by recently updated
recently updated
newest added

Hi, I'm dipping my toes into the emacs waters after years of vimming :-) and trying now to get my calendar setup working. I use `vdirsyncer` to sync my calendars...

This commit allows users to disable the display of separator lines between items in a day (by setting cfw:display-item-separators to nil).

Emacs 27 loads with a warning message about this use of cl being deprecated when using this package.

In my config.el I put ``` (require 'calfw) (require 'calfw-ical) (setq calendar-week-start-day 1) (defun my-open-calendar () (interactive) (cfw:open-calendar-buffer :contents-sources (list (cfw:ical-create-source "personal" "https://myURL/remote.php/dav/calendars/myUsername/personal" "Purple") ))) ``` So, when I open...

Fix recurring events in single-org-file sources This supersedes #145, is a much cleaner fix, and actually shortens the original source code. This does incorporate changes made in #144, so if...

https://github.com/kiwanami/emacs-calfw/blob/03abce97620a4a7f7ec5f911e669da9031ab9088/calfw-ical.el#L279 Obviously this can conflict badly with themes. I think there should be a defcustom color or even a face for this text? For example: ```el (defcustom cfw:color-ical "#2952a3" "Colour...

This org-agenda todo appears 3 times on the same Monday, instead of every Monday on my `cfw:open-org-calendar | | Monday | Tuesday | |10:15 TODO...| | |10:15 TODO...| ` It...