I'm new to emacs, I have the following keybinding which invokes my custom keybinding.
(eval-after-load 'evil-ex
'(evil-ex-define-cmd "mf" 'someFun))
It calls someFun correctly, but what if I want it to have default switches like "-ignore-case" to be directly associated with this key binding. How can I do that?