Re: Keybinding doubt about ARG

2022-06-19 Thread Bruno Barbier
Ypo writes: > Working, thanks Bruno! > Thanks for the feedback. > I needed it, because what I was using is not working well: > > (global-set-key (kbd "M-n") (kbd "C-u 1 C-v")) FWIW, your previous method works for me in org mode buffers (emacs 28 -Q and my custom emacs 29 with custom org).

Re: Keybinding doubt about ARG

2022-06-19 Thread Juan Manuel MacĂ­as
Bruno Barbier writes: > But, you can easily define your own command. > > (defun my-scroll-up-of-1 () > (interactive) > (scroll-up-command 1)) > > (define-key global-map (kbd "M-n") 'my-scroll-up-of-1) Or simply doing something like: (define-key global-map (kbd "M-n") (lambda

Re: Keybinding doubt about ARG

2022-06-19 Thread Ypo
Working, thanks Bruno! I needed it, because what I was using is not working well: (global-set-key (kbd "M-n") (kbd "C-u 1 C-v")) From some time ago, it doesn't work in .org buffers, although it works in elisp buffers. In .org buffers I receive this message: After 0 kbd macro iterations:

Re: Keybinding doubt about ARG

2022-06-19 Thread Bruno Barbier
Ypo writes: > Is it possible to use ARG when defining keybindings? > > For the command (scroll-up-command ARG) I want to define this > keybind: > > > (define-key global-map (kbd "M-n") 'scroll-up-command 1) > > > But: > > eval-region: Wrong number of arguments: define-key, 4 I don't think

Keybinding doubt about ARG

2022-06-19 Thread Ypo
Is it possible to use ARG when defining keybindings? For the command (scroll-up-command ARG) I want to define this keybind: (define-key global-map (kbd "M-n") 'scroll-up-command 1) But: eval-region: Wrong number of arguments: define-key, 4