emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* org-mouse
@ 2013-11-14 15:43 Kenneth Jacker
  2013-11-14 16:43 ` org-mouse Nick Dokos
  0 siblings, 1 reply; 7+ messages in thread
From: Kenneth Jacker @ 2013-11-14 15:43 UTC (permalink / raw)
  To: emacs-orgmode

[ 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?


Sorry if I've missed the obvious,
-- 
Prof Kenneth H Jacker       khj@cs.appstate.edu
Computer Science Dept       www.cs.appstate.edu/~khj
Appalachian State Univ
Boone, NC  28608  USA        

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: org-mouse
  2013-11-14 15:43 org-mouse Kenneth Jacker
@ 2013-11-14 16:43 ` Nick Dokos
  2013-11-14 19:50   ` org-mouse Samuel Wales
                     ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Nick Dokos @ 2013-11-14 16:43 UTC (permalink / raw)
  To: emacs-orgmode

Kenneth Jacker <khj@be.cs.appstate.edu> 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

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: org-mouse
  2013-11-14 16:43 ` org-mouse Nick Dokos
@ 2013-11-14 19:50   ` Samuel Wales
  2013-11-15 13:08   ` org-mouse Rainer Stengele
  2013-11-15 23:01   ` org-mouse Kenneth Jacker
  2 siblings, 0 replies; 7+ messages in thread
From: Samuel Wales @ 2013-11-14 19:50 UTC (permalink / raw)
  To: Nick Dokos; +Cc: emacs-orgmode

org-mouse is an excellent package.  wfm:

  (when window-system (require 'org-mouse))

-- 
The Kafka Pandemic: http://thekafkapandemic.blogspot.com

The disease DOES progress.  MANY people have died from it.  ANYBODY can get it.

Denmark: free Karina Hansen NOW.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: org-mouse
  2013-11-14 16:43 ` org-mouse Nick Dokos
  2013-11-14 19:50   ` org-mouse Samuel Wales
@ 2013-11-15 13:08   ` Rainer Stengele
  2013-11-15 13:13     ` org-mouse: solved Rainer Stengele
  2013-11-15 23:01   ` org-mouse Kenneth Jacker
  2 siblings, 1 reply; 7+ messages in thread
From: Rainer Stengele @ 2013-11-15 13:08 UTC (permalink / raw)
  To: Nick Dokos, emacs-orgmode

Hi, I also do see no functionality of any mouse button press after successfully requiring org-mouse.
How can I track that problem?

Rainer

Am 14.11.2013 17:43, schrieb Nick Dokos:
> Kenneth Jacker <khj@be.cs.appstate.edu> 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
> 
> 
> 
> 

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: org-mouse: solved
  2013-11-15 13:08   ` org-mouse Rainer Stengele
@ 2013-11-15 13:13     ` Rainer Stengele
  2013-11-15 23:02       ` Kenneth Jacker
  0 siblings, 1 reply; 7+ messages in thread
From: Rainer Stengele @ 2013-11-15 13:13 UTC (permalink / raw)
  To: Nick Dokos, emacs-orgmode

I needed to configure variable org-mouse-features

Works! Thanks, Rainer.

Am 15.11.2013 14:08, schrieb Rainer Stengele:
> Hi, I also do see no functionality of any mouse button press after successfully requiring org-mouse.
> How can I track that problem?
> 
> Rainer
> 
> Am 14.11.2013 17:43, schrieb Nick Dokos:
>> Kenneth Jacker <khj@be.cs.appstate.edu> 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
>>
>>
>>
>>
> 
> 
> 

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: org-mouse
  2013-11-14 16:43 ` org-mouse Nick Dokos
  2013-11-14 19:50   ` org-mouse Samuel Wales
  2013-11-15 13:08   ` org-mouse Rainer Stengele
@ 2013-11-15 23:01   ` Kenneth Jacker
  2 siblings, 0 replies; 7+ messages in thread
From: Kenneth Jacker @ 2013-11-15 23:01 UTC (permalink / raw)
  To: Nick Dokos; +Cc: emacs-orgmode

  >> Do I need something else?

  nd> No, evaling the require should be enough.

OK.

  nd> Try clicking button-1 on an asterisk of a heading in an org file:
  nd> does it fold the item? If so, it's working :-)

Yes, that does!  Guess I was clicking in the inactive areas of the heading.


Thanks for your help!

  -Kenneth

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: org-mouse: solved
  2013-11-15 13:13     ` org-mouse: solved Rainer Stengele
@ 2013-11-15 23:02       ` Kenneth Jacker
  0 siblings, 0 replies; 7+ messages in thread
From: Kenneth Jacker @ 2013-11-15 23:02 UTC (permalink / raw)
  To: Rainer Stengele; +Cc: emacs-orgmode

  rs> I needed to configure variable org-mouse-features

Ah, the other part that I didn't know about ... ;-)


Thanks to all for the help,

  -Kenneth

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2013-11-15 23:05 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-11-14 15:43 org-mouse Kenneth Jacker
2013-11-14 16:43 ` org-mouse Nick Dokos
2013-11-14 19:50   ` org-mouse Samuel Wales
2013-11-15 13:08   ` org-mouse Rainer Stengele
2013-11-15 13:13     ` org-mouse: solved Rainer Stengele
2013-11-15 23:02       ` Kenneth Jacker
2013-11-15 23:01   ` org-mouse Kenneth Jacker

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).