From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: org-mouse Date: Thu, 14 Nov 2013 11:43:14 -0500 Message-ID: <87fvqzylwd.fsf@alphaville.bos.redhat.com> References: <87vbzv2dlc.fsf@be.cs.appstate.edu> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:55195) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Vh011-0000tZ-8d for emacs-orgmode@gnu.org; Thu, 14 Nov 2013 11:43:41 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Vh00v-0007po-3x for emacs-orgmode@gnu.org; Thu, 14 Nov 2013 11:43:35 -0500 Received: from plane.gmane.org ([80.91.229.3]:39464) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Vh00u-0007pk-TG for emacs-orgmode@gnu.org; Thu, 14 Nov 2013 11:43:29 -0500 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1Vh00t-0006tQ-4q for emacs-orgmode@gnu.org; Thu, 14 Nov 2013 17:43:27 +0100 Received: from nat-pool-bos-t.redhat.com ([66.187.233.206]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 14 Nov 2013 17:43:27 +0100 Received: from ndokos by nat-pool-bos-t.redhat.com with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 14 Nov 2013 17:43:27 +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: emacs-orgmode@gnu.org Kenneth Jacker writes: > [ Xubuntu 12.04.3; Xfce 4.8; Wfwm 4.8.3; org-mode 8.2.1 ] > > As stated in the ELisp source file, I put this in my .emacs: > > (require 'org-mouse) > > I then "evaled" the above, and even restarted Emacs, but I can't seem to > get any additional "mouse behavior" in Org. > > Do I need something else? > No, evaling the require should be enough. Try clicking button-1 on an asterisk of a heading in an org file: does it fold the item? If so, it's working :-) org-mouse.el contains the following notes - that should give you an idea of what it does: ;; Org-mouse implements the following features: ;; * following links with the left mouse button (in Emacs 22) ;; * subtree expansion/collapse (org-cycle) with the left mouse button ;; * several context menus on the right mouse button: ;; + general text ;; + headlines ;; + timestamps ;; + priorities ;; + links ;; + tags ;; * promoting/demoting/moving subtrees with mouse-3 ;; + if the drag starts and ends in the same line then promote/demote ;; + otherwise move the subtree ;; It all seems to work fine for me. Nick