You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At present, helm-org-ql-map is defined as follows:
(defvarhelm-org-ql-map
(let ((map (copy-keymap helm-map))
(mappings '(
"C-x C-s" helm-org-ql-save
)))
(cl-loopfor (key fn) on mappings by#'cddrdo (define-key map (kbd key) fn))
map)
"Keymap for `helm-org-ql' sessions.Based on `helm-map'.")
I suppose the correct way to inherit a keymap is to use make-composed-keymap. While I was investigating #97, I noticed that additional keybindings added to helm-map were not effective in helm-org-ql-map. Hopefully this will solve the issue.
The text was updated successfully, but these errors were encountered:
At present,
helm-org-ql-map
is defined as follows:I suppose the correct way to inherit a keymap is to use
make-composed-keymap
. While I was investigating #97, I noticed that additional keybindings added tohelm-map
were not effective inhelm-org-ql-map
. Hopefully this will solve the issue.The text was updated successfully, but these errors were encountered: