From mboxrd@z Thu Jan 1 00:00:00 1970 From: Rainer M Krug Subject: Re: usage of org-mouse? Date: Fri, 14 Mar 2014 14:15:24 +0100 Message-ID: References: <87vbvh0ys0.fsf@gmail.com> <87r4650xqq.fsf@gmail.com> Mime-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha1; protocol="application/pgp-signature" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:33454) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WORxS-00008j-Qf for emacs-orgmode@gnu.org; Fri, 14 Mar 2014 09:15:35 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WORxO-000756-3N for emacs-orgmode@gnu.org; Fri, 14 Mar 2014 09:15:30 -0400 Received: from mail-wg0-f47.google.com ([74.125.82.47]:61186) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WORxN-000751-Q5 for emacs-orgmode@gnu.org; Fri, 14 Mar 2014 09:15:26 -0400 Received: by mail-wg0-f47.google.com with SMTP id x12so2099671wgg.18 for ; Fri, 14 Mar 2014 06:15:25 -0700 (PDT) In-Reply-To: (Rainer M. Krug's message of "Fri, 14 Mar 2014 14:07:34 +0100") 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-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Nick Dokos Cc: emacs-orgmode@gnu.org --=-=-= Content-Type: text/plain Content-Transfer-Encoding: quoted-printable Rainer M Krug writes: > Nick Dokos writes: > >> Rainer M Krug writes: >> >>> Nick Dokos writes: >>> >>>> Rainer M Krug writes: >>>> >>>>> Hi >>>>> >>>>> is there a worg page about the usage of org-mouse, and what it should= be >>>>> doing?=20 >>>>> >>>>> I read on this list that after (require 'org-mouse) (which I did >>>>> successfully) clicking left-mouse-buttom should fold, but it does not >>>>> happen. >>>>> >>>>> Do I have to configure something in addition? Is there an example >>>>> configuration? >>>>> >>>> >>>> No, but you have to click on the asterisks, not on the rest of the >>>> headline. If you do ``C-h c'' and then click carefully, you will see >>>> that clicking on the asterisks is bound to org-open-at-mouse, >>>> whereas clicking on the rest of the headline is bound org-mouse-down-m= ouse. >>> >>> >>> Hm - it tells me=20 >>> >>> ,---- >>> | at that spot runs the command mouse-drag-region >>> `---- >>> >>> I assume that the fact that I evaluated=20 >>> >>> ,---- >>> | (require 'org-mouse) >>> `---- >>> >>> in the scratch buffer does not make a difference. >> >> There is indeed something fishy going on: I've got two emacsen, one of >> which behaves as it "should", the other behaving as you describe. >> The second one was an emacs -q -l minimal.emacs invocation: I can't seem >> to turn on org-mouse in that. > > Let me know what I should look for in my config - mine is the normal > full config I usually use. And when I start with=20 > > ,---- > | emacs -Q > `---- > > and then activate org-mouse, it works..... > > It works with emacs -Q: > Org-mode version 7.9.3f (release_7.9.3f-17-g7524ef @ > /usr/local/Cellar/emacs-mac/emacs-24.3-mac-4.7/share/emacs/24.3/lisp/org/) > GNU Emacs 24.3.1 (x86_64-apple-darwin13.1.0, Carbon Version 1.6.0 > AppKit 1265.19) of 2014-03-07 on Rainers-MacBook-Pro-2.local [2 times] > > It doesn't work with normal emacs.org: > Org-mode version 8.2.5h (release_8.2.5h-686-g28ddf0 @ /Users/rainerkrug/.= emacs.d/org-mode/lisp/) > GNU Emacs 24.3.1 (x86_64-apple-darwin13.0.0, Carbon Version 1.6.0 > AppKit 1265) of 2014-02-13 on Rainers-MacBook-Pro-2.local To add to this: using the init.el below which does not load any further init, it doesn't work either Org-mode version 8.2.5h (release_8.2.5h-732-g073470 @ /Users/rainerkrug/.em= acs.d/org-mode/lisp/) GNU Emacs 24.3.1 (x86_64-apple-darwin13.0.0, Carbon Version 1.6.0 AppKit 12= 65) of 2014-02-13 on Rainers-MacBook-Pro-2.local =2D-8<---------------cut here---------------start------------->8--- ;;; init.el --- Where all the magic begins ;; ;; This file loads both ;; - Org-mode : http://orgmode.org/ and ;; - Org-babel: http://orgmode.org/worg/org-contrib/babel/org-babel.php#lib= rary-of-babel ;; ;; It then loads the rest of our Emacs initialization from Emacs lisp ;; embedded in literate Org-mode files. ;; avoid freezing of noninteractively started emacs daemon when there are a= utosaved files ;; see [[http://stackoverflow.com/questions/4933134/emacs-daemon-startup-fr= eezes-if-file-has-auto-save-data]] for details (defadvice desktop-restore-file-buffer (around my-desktop-restore-file-buffer-advice) "Be non-interactive while starting a daemon." (if (and (daemonp) (not server-process)) (let ((noninteractive t)) ad-do-it) ad-do-it)) (ad-activate 'desktop-restore-file-buffer) ;; Load up Org Mode and Org Babel for elisp embedded in Org Mode files (add-to-list 'load-path "~/.emacs.d/org-mode/lisp") (add-to-list 'load-path "~/.emacs.d/org-mode/contrib/lisp") ;; load up Org-mode and Org-babel (require 'org) ;; load up the main file ;; (org-babel-load-file "~/.emacs.d/emacs.org") (custom-set-variables ;; custom-set-variables was added by Custom. ;; If you edit it by hand, you could mess it up, so be careful. ;; Your init file should contain only one such instance. ;; If there is more than one, they won't work right. '(Linum-format "%7i ") '(ansi-color-names-vector ["#242424" "#E5786D" "#95E454" "#CAE682" "#8AC6F= 2" "#333366" "#CCAA8F" "#F6F3E8"]) '(ansi-term-color-vector [unspecified "#14191f" "#d15120" "#81af34" "#deae= 3e" "#7e9fc9" "#a878b5" "#7e9fc9" "#dcdddd"]) '(background-color "#fcf4dc") '(background-mode light) '(browse-url-browser-function (quote browse-url-default-macosx-browser)) '(canlock-password "da2a78a044d240d5111068dc8e1c3a9f8d311614") '(cursor-color "#52676f") '(custom-safe-themes (quote ("ed81411169b1b3e3d4cfc39b09d68ea13e0ff7708dc5= b9d0bedb319e071968ad" "a37600b047da389eccc4a17b5f165d512fb1d32f18d93cffb281= 54b5f4eb4437" "7a9f392481b6e2fb027ab9d8053ab36c0f23bf5cc1271206982339370d89= 4c74" "57072d797dc09fcf563051a85a29d6a51d6f2b1a602e029c35b05c30df319b2a" "a= 3d519ee30c0aa4b45a277ae41c4fa1ae80e52f04098a2654979b1ab859ab0bf" "f32dd8e7b= 3a508874eded03d5be43d2bdfffe81c199eea72de06ce3e653db720" "cf3ee051794b9bde2= 03a4e1bb8e005367cc121aaffc0abd94893db8fde8dcc5c" "aa74186764f2d91356b4a98aa= 56cb931cbd7f6e82e25a84ce212b254e4415cb5" "3b2acc09fedfafb58e09c130f2ff107c5= f56232cef7b3114d1b48068d7902c35" "817ce7168851955b2d67a9dfb2f4bb283504e3be8= 7b17932bd8a3ee4b43cfeb1" "3ad55e40af9a652de541140ff50d043b7a8c8a3e73e2a649e= b808ba077e75792" "4ea594ee0eb3e5741ab7c4b3eeb36066f795c61aeebad843d74f0a28a= 81a0352" "543976df2de12eb2ac235c79c7bc1dac6c58f4a34ae6f72237d6e70d8384f37a"= "2b5aa66b7d5be41b18cc67f3286ae664134b95ccc4a86c9339c886dfd736132d" "94d662= 81c0398118afd3fdb921d8b813401a36748ce4541e7ad6b1533a557a9f" "5dfacaf380068d= 9ed06e0872a066a305ab6a1217f25c3457b640e76c98ae20e6" "1f3304214265481c56341b= cee387ef1abb684e4efbccebca0e120be7b1a13589" "9ea054db5cdbd5baa4cda9d373a547= 435ba88d4e345f4b06f732edbc4f017dc3" "06f5145c01ec774a0abb49eeffa3980743ce2f= 997112b537effeb188b7c51caf" "8c5ffc9848db0f9ad4e296fa3cba7f6ea3b0e4e00e8981= a59592c99d21f99471" "1e7e097ec8cb1f8c3a912d7e1e0331caeed49fef6cff220be63bd2= a6ba4cc365" "fc5fcb6f1f1c1bc01305694c59a1a861b008c534cae8d0e48e4d5e81ad718b= c6" "15b738af688c8375d97ca2fa909cd67fe9bc82499096d7c93dcd03dc56dbb19f" "16e= d7499f0aa95afecf0a212cb1703cf6d7e804347fc4683130c847bfd9fd092" "24cb1b9c182= 198f52df7cebf378ee9ecca93a2daeb9a90049a2f1f556119c742" default))) '(fci-rule-character-color "#192028") '(foreground-color "#52676f") '(frame-brackground-mode (quote dark)) '(fringe-mode 4 nil (fringe)) '(main-line-color1 "#1e1e1e") '(main-line-color2 "#111111") '(main-line-separator-style (quote chamfer)) '(org-toodledo-folder-support-mode (quote heading)) '(org-toodledo-userid "XXXXXXXX") '(powerline-color1 "#1e1e1e") '(powerline-color2 "#111111") '(safe-local-variable-values (quote ((org-babel-tangle-run-postTangleScrip= t . t) (org-toodledo-folder-support-mode) (org-toodledo-userid . "XXXXXXX")= (org-toodledo-userid . XXXXXXXXXXXXXXX) (org-toodledo-folder-support-mode = . t) (org2blog/wp-use-tags-as-categories) (org2blog/wp-use-tags-as-categori= es . t) (line-move-visual . t) (org-babel-tangled-file . t)))) '(send-mail-function (quote smtpmail-send-it))) (custom-set-faces ;; custom-set-faces was added by Custom. ;; If you edit it by hand, you could mess it up, so be careful. ;; Your init file should contain only one such instance. ;; If there is more than one, they won't work right. ) (put 'dired-find-alternate-file 'disabled nil) =2D-8<---------------cut here---------------end--------------->8--- > > Rainer =2D-=20 Rainer M. Krug email: RMKruggmailcom --=-=-= Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG/MacGPG2 v2.0.22 (Darwin) iQEcBAEBAgAGBQJTIwDsAAoJENvXNx4PUvmC2wEIALn6huPoxe6+g+2oucekaPoA OhpcAj4IcEMfMfyQyeIrv3tk2JK+Z5Fvew5uuGt1QJ3EfqbccZ0poOZnRnJ6WN9j TlW6S9KEB8Mo9TkDvAX9BxUIE/y63NK8Lv9II6c8/MX+RZ7uxhWchMctCDffSmEY ckwIrBTW58FOiMcuPaSmBI1htpbQHN7sKEupQ6xPMSFJcRBg6WTc9JFM6qufJvl9 Ls3Cu3f4q0a3PqDh5wS5TyHP5GUvwvJ7okF6u6woXWmqQtHDbpi3YA+hjy/1/u4P GxqfTAy2sp5IeafZX/hA5Ow9r+tnpfVelrwe9uHWce1nu0wXZvdnxTQNg50omzk= =aIXn -----END PGP SIGNATURE----- --=-=-=--