emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* resizing windows from an org buffer, reqest for org-shiftcontrol<cursor>-final-hook
@ 2014-09-16 19:15 Brady Trainor
  2014-09-23 17:38 ` Aaron Ecay
  0 siblings, 1 reply; 3+ messages in thread
From: Brady Trainor @ 2014-09-16 19:15 UTC (permalink / raw)
  To: emacs-orgmode



I have

(global-set-key (kbd "S-C-<left>") 'shrink-window-horizontally)
(global-set-key (kbd "S-C-<right>") 'enlarge-window-horizontally)
(global-set-key (kbd "S-C-<down>") 'shrink-window)
(global-set-key (kbd "S-C-<up>") 'enlarge-window)

in my init file, as suggested at 
http://www.emacswiki.org/emacs-en/WindowResize. However, when I am in an 
org file, the binding fails.

I had hoped that (setq org-support-shift-select t) would fix this, but 
it only seems to want to allow selection.

A solution might be similar to the one

;; quick keys for switching windows
(windmove-default-keybindings)
;; fix windmove in org-mode
(add-hook 'org-shiftup-final-hook 'windmove-up)
(add-hook 'org-shiftleft-final-hook 'windmove-left)
(add-hook 'org-shiftdown-final-hook 'windmove-down)
(add-hook 'org-shiftright-final-hook 'windmove-right)

as suggested at http://orgmode.org/manual/Conflicts.html.

Looking at the code in org.el, it seems org-shiftcontrolup and the like 
were not so lucky to get such a final-hook. Can this be added? I am 
currently using package.el org-mode, so I may not immediately get to try 
it out, but would look forward to adding it to my workflow soon.

Or do others have another solution to resizing windows in org-mode?

Brady

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

* Re: resizing windows from an org buffer, reqest for org-shiftcontrol<cursor>-final-hook
  2014-09-16 19:15 resizing windows from an org buffer, reqest for org-shiftcontrol<cursor>-final-hook Brady Trainor
@ 2014-09-23 17:38 ` Aaron Ecay
  2014-09-23 22:58   ` Brady Trainor
  0 siblings, 1 reply; 3+ messages in thread
From: Aaron Ecay @ 2014-09-23 17:38 UTC (permalink / raw)
  To: Brady Trainor, emacs-orgmode

Hi Bradley,

2014ko irailak 16an, Brady Trainor-ek idatzi zuen:
> 
> I have
> 
> (global-set-key (kbd "S-C-<left>") 'shrink-window-horizontally)
> (global-set-key (kbd "S-C-<right>") 'enlarge-window-horizontally)
> (global-set-key (kbd "S-C-<down>") 'shrink-window)
> (global-set-key (kbd "S-C-<up>") 'enlarge-window)
> 
> in my init file, as suggested at 
> http://www.emacswiki.org/emacs-en/WindowResize. However, when I am in an 
> org file, the binding fails.
> 
> I had hoped that (setq org-support-shift-select t) would fix this, but 
> it only seems to want to allow selection.
> 
> A solution might be similar to the one
> 
> ;; quick keys for switching windows
> (windmove-default-keybindings)
> ;; fix windmove in org-mode
> (add-hook 'org-shiftup-final-hook 'windmove-up)
> (add-hook 'org-shiftleft-final-hook 'windmove-left)
> (add-hook 'org-shiftdown-final-hook 'windmove-down)
> (add-hook 'org-shiftright-final-hook 'windmove-right)
> 
> as suggested at http://orgmode.org/manual/Conflicts.html.
> 
> Looking at the code in org.el, it seems org-shiftcontrolup and the like 
> were not so lucky to get such a final-hook. Can this be added? I am 
> currently using package.el org-mode, so I may not immediately get to try 
> it out, but would look forward to adding it to my workflow soon.

Rather than adding a hook to these functions, perhaps we should add
another branch to their conditionals which tries (lookup-key global-map
(this-command-keys)), and calls that function if it exists.  The error
would be raised as before if there is no binding for the key in
global-map.

How’s your elisp?  Would you feel up to trying to create such a patch?

-- 
Aaron Ecay

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

* Re: resizing windows from an org buffer, reqest for org-shiftcontrol<cursor>-final-hook
  2014-09-23 17:38 ` Aaron Ecay
@ 2014-09-23 22:58   ` Brady Trainor
  0 siblings, 0 replies; 3+ messages in thread
From: Brady Trainor @ 2014-09-23 22:58 UTC (permalink / raw)
  To: emacs-orgmode

Aaron Ecay <aaronecay@gmail.com> writes:

> Hi Bradley,
>
> 2014ko irailak 16an, Brady Trainor-ek idatzi zuen:
>> 
>> I have
>> 
>> (global-set-key (kbd "S-C-<left>") 'shrink-window-horizontally)
>> (global-set-key (kbd "S-C-<right>") 'enlarge-window-horizontally)
>> (global-set-key (kbd "S-C-<down>") 'shrink-window)
>> (global-set-key (kbd "S-C-<up>") 'enlarge-window)
>> 
>> in my init file, as suggested at 
>> http://www.emacswiki.org/emacs-en/WindowResize. However, when I am in an 
>> org file, the binding fails.
>> 
>> I had hoped that (setq org-support-shift-select t) would fix this, but 
>> it only seems to want to allow selection.
>> 
>> A solution might be similar to the one ...
>
> How’s your elisp?  Would you feel up to trying to create such a patch?

My elisp is not such that I can stop looking for work to tackle this.
(Negligible programming experience.) Though, I might certainly find
other excuses once I find gainful employment ;)


Brady

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

end of thread, other threads:[~2014-09-23 22:59 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-09-16 19:15 resizing windows from an org buffer, reqest for org-shiftcontrol<cursor>-final-hook Brady Trainor
2014-09-23 17:38 ` Aaron Ecay
2014-09-23 22:58   ` Brady Trainor

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).