From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mathieu Marques Subject: =?UTF-8?B?QnVnOiBJbmNvbnNpc3RlbmN5IHdpdGggQy1TLWEgYW5kIEMtUy1l?= =?UTF-8?B?IFs4LjIuMTAgKHJlbGVhc2VfOC4yLjEwIEAgL3Vzci9sb2NhbC9DZWxsYXIv?= =?UTF-8?B?ZW1hY3MtbWFjL2VtYWNzLTI0LjUtei1tYWMtNS4xNS9zaGFyZS9lbWFjcy8y?= =?UTF-8?B?NC41L2xpc3Avb3JnLyld?= Date: Tue, 26 Apr 2016 15:32:36 +0000 Message-ID: Mime-Version: 1.0 Content-Type: multipart/alternative; boundary=001a114075da4258830531650190 Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:51331) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1av4ym-0002QR-MF for emacs-orgmode@gnu.org; Tue, 26 Apr 2016 11:32:50 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1av4yk-0000dg-UA for emacs-orgmode@gnu.org; Tue, 26 Apr 2016 11:32:48 -0400 Received: from mail-yw0-x234.google.com ([2607:f8b0:4002:c05::234]:36312) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1av4yk-0000dZ-Ob for emacs-orgmode@gnu.org; Tue, 26 Apr 2016 11:32:46 -0400 Received: by mail-yw0-x234.google.com with SMTP id o66so18719723ywc.3 for ; Tue, 26 Apr 2016 08:32:46 -0700 (PDT) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: "Emacs-orgmode" To: emacs-orgmode@gnu.org --001a114075da4258830531650190 Content-Type: text/plain; charset=UTF-8 Remember to cover the basics, that is, what you expected to happen and what in fact did happen. You don't know how to make a good report? See http://orgmode.org/manual/Feedback.html#Feedback Your bug report will be posted to the Org-mode mailing list. ------------------------------------------------------------------------ In other modes, C-S-a and C-S-e behave as expected that is, move cursor to the beginning/end of line while marking region. In other words, it does what C-SPC C-a and C-SPC C-e would do. However in org-mode, C-a and C-e are bound to org-beginning-of-line and org-end-of-line respectively. In org-mode, C-S-e works as expected. But C-S-a does not. I have had these details over a discussion about my issue on /r/emacs: The interactive arg for both org-beginning-of-line and org-end-of-line is "P". So it carries over the raw arguments received by the command. So ^ is not needed. The reason C-S-e still works as expected is because of (call-interactively 'end-of-line) in org-end-of-line, and so the raw args are passed to end-of-line without any modification. ~~Whereas we do not have (call-interactively 'beginning-of-line) in org-beginning-of-line~~. *Well, we do have (call-interactively 'move-beginning-of-line)*. Instead we have goto-char calls to place the point before/after the stars. Let me know if I can be of further help. Emacs : GNU Emacs 24.5.1 (x86_64-apple-darwin15.2.0, Carbon Version 157 AppKit 1404.34) of 2015-12-28 on sandman.local Package: Org-mode version 8.2.10 (release_8.2.10 @ /usr/local/Cellar/emacs-mac/emacs-24.5-z-mac-5.15/share/emacs/24.5/lisp/org/) current state: ============== (setq org-tab-first-hook '(org-hide-block-toggle-maybe org-src-native-tab-command-maybe org-babel-hide-result-toggle-maybe org-babel-header-arg-expand) org-speed-command-hook '(org-speed-command-default-hook org-babel-speed-command-hook) org-occur-hook '(org-first-headline-recenter) org-metaup-hook '(org-babel-load-in-session-maybe) org-src-window-setup 'current-window org-confirm-shell-link-function 'yes-or-no-p org-startup-folded nil org-support-shift-select 'always org-after-todo-state-change-hook '(org-clock-out-if-current) org-from-is-user-regexp "\\" org-src-mode-hook '(org-src-babel-configure-edit-buffer org-src-mode-configure-edit-buffer) org-agenda-before-write-hook '(org-agenda-add-entry-text) org-babel-pre-tangle-hook '(save-buffer) org-mode-hook '(er/add-org-mode-expansions whitespace-turn-on turn-on-auto-fill yas-minor-mode #[nil "\300\301\302\303\304$\207" [org-add-hook change-major-mode-hook org-show-block-all append local] 5] #[nil "\300\301\302\303\304$\207" [org-add-hook change-major-mode-hook org-babel-show-result-all append local] 5] org-babel-result-hide-spec org-babel-hide-all-hashes) org-ctrl-c-ctrl-c-hook '(org-babel-hash-at-point org-babel-execute-safely-maybe) org-cycle-hook '(org-cycle-hide-archived-subtrees org-cycle-hide-drawers org-cycle-hide-inline-tasks org-cycle-show-empty-lines org-optimize-window-after-visibility-change) org-confirm-elisp-link-function 'yes-or-no-p org-edit-src-content-indentation 0 org-metadown-hook '(org-babel-pop-to-session-maybe) org-startup-truncated nil org-clock-out-hook '(org-clock-remove-empty-clock-drawer) org-src-fontify-natively t ) --001a114075da4258830531650190 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable
Remember to cover the basics, that is, what you expec= ted to happen and
what in fact did happen.=C2=A0 You don't kn= ow how to make a good report?=C2=A0 See


Y= our bug report will be posted to the Org-mode mailing list.
-----= -------------------------------------------------------------------

In other modes, C-S-a and C-S-e behave as expected that i= s, move cursor
to the beginning/end of line while marking region.= In other words, it
does what C-SPC C-a and C-SPC C-e would do.

However in org-mode, C-a and C-e are bound to org-b= eginning-of-line and
org-end-of-line respectively.
In o= rg-mode, C-S-e works as expected. But C-S-a does not.

<= div>I have had these details over a discussion about my issue on /r/emacs:<= /div>

=C2=A0 =C2=A0 The interactive arg for both org-beg= inning-of-line and
=C2=A0 =C2=A0 org-end-of-line is "P"= . So it carries over the raw arguments
=C2=A0 =C2=A0 received by = the command. So ^ is not needed. The reason C-S-e still
=C2=A0 = =C2=A0 works as expected is because of (call-interactively 'end-of-line= ) in
=C2=A0 =C2=A0 org-end-of-line, and so the raw args are passe= d to end-of-line
=C2=A0 =C2=A0 without any modification.

=C2=A0 =C2=A0 ~~Whereas we do not have (call-interactively= 'beginning-of-line) in
=C2=A0 =C2=A0 org-beginning-of-line~~= .
=C2=A0 =C2=A0 *Well, we do have (call-interactively 'move-b= eginning-of-line)*.
=C2=A0 =C2=A0 Instead we have goto-char calls= to place the point before/after the
=C2=A0 =C2=A0 stars.

Let me know if I can be of further help.


Emacs =C2=A0: GNU Emacs 24.5.1 (x86_64-apple-darwin= 15.2.0, Carbon Version 157 AppKit 1404.34)
=C2=A0of 2015-12-28 on= sandman.local
Package: Org-mode version 8.2.10 (release_8.2.10 @= /usr/local/Cellar/emacs-mac/emacs-24.5-z-mac-5.15/share/emacs/24.5/lisp/or= g/)

current state:
=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D
(setq
=C2=A0org-tab-first-hook &#= 39;(org-hide-block-toggle-maybe org-src-native-tab-command-maybe org-babel-= hide-result-toggle-maybe
=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2= =A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 org-babel-header-arg-expand)
=C2=A0org-speed-command-hook '(org-speed-command-default-hook org-ba= bel-speed-command-hook)
=C2=A0org-occur-hook '(org-first-head= line-recenter)
=C2=A0org-metaup-hook '(org-babel-load-in-sess= ion-maybe)
=C2=A0org-src-window-setup 'current-window
=C2=A0org-confirm-shell-link-function 'yes-or-no-p
=C2=A0o= rg-startup-folded nil
=C2=A0org-support-shift-select 'always<= /div>
=C2=A0org-after-todo-state-change-hook '(org-clock-out-if-cur= rent)
=C2=A0org-from-is-user-regexp "\\<Mathieu Marques\\= >"
=C2=A0org-src-mode-hook '(org-src-babel-configure-= edit-buffer org-src-mode-configure-edit-buffer)
=C2=A0org-agenda-= before-write-hook '(org-agenda-add-entry-text)
=C2=A0org-babe= l-pre-tangle-hook '(save-buffer)
=C2=A0org-mode-hook '(er= /add-org-mode-expansions whitespace-turn-on turn-on-auto-fill yas-minor-mod= e
=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0#= [nil "\300\301\302\303\304$\207" [org-add-hook change-major-mode-= hook org-show-block-all append local] 5]
=C2=A0 =C2=A0 =C2=A0 =C2= =A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0#[nil "\300\301\302\303\304$\207= " [org-add-hook change-major-mode-hook org-babel-show-result-all appen= d local] 5]
=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2= =A0 =C2=A0org-babel-result-hide-spec org-babel-hide-all-hashes)
= =C2=A0org-ctrl-c-ctrl-c-hook '(org-babel-hash-at-point org-babel-execut= e-safely-maybe)
=C2=A0org-cycle-hook '(org-cycle-hide-archive= d-subtrees org-cycle-hide-drawers org-cycle-hide-inline-tasks org-cycle-sho= w-empty-lines
=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 = =C2=A0 =C2=A0 org-optimize-window-after-visibility-change)
=C2=A0= org-confirm-elisp-link-function 'yes-or-no-p
=C2=A0org-edit-s= rc-content-indentation 0
=C2=A0org-metadown-hook '(org-babel-= pop-to-session-maybe)
=C2=A0org-startup-truncated nil
= =C2=A0org-clock-out-hook '(org-clock-remove-empty-clock-drawer)
=C2=A0org-src-fontify-natively t
=C2=A0)

<= /div> --001a114075da4258830531650190--