What is the syntax necessary to make the binding to key t
work in the below?
(evil-leader/set-key
"f" 'find-file
"o" 'other-window
"b" 'switch-to-buffer
"k" 'kill-buffer
"1" 'delete-other-windows
"2" 'split-window-below
"3" 'split-window-right
"c" 'winner-undo
"w" 'enlarge-window-horizontally
"t" (lambda () (enlarge-window 5))
"d" 'ido-dired)
I've tried several variations, including quoting the entire expression, quoting just the enlarge-window
call and others. Perhaps you can't do it this way?