Oleh Krehel
d0a5559b25
ace-window.el (ace-window): M-0 should not modify aw-ignore-on permanently
7 years ago
Oleh Krehel
94986cb687
ace-window.el (aw-ignored-p): Don't ignore window if it's selected
...
If the current window is on `aw-ignored-buffers', and it's currently
selected, and `aw-ignore-current' is nil, the current window is not to
be ignored.
Fixes #144
7 years ago
Oleh Krehel
2307fd15db
ace-window.el (aw-dispatch-alist): Don't bind anything on home row
...
Re #156
7 years ago
Eric Froemling
1194d6162a
Add copy-window functionality
...
Fixes #156
Fixes #149
7 years ago
Nick Drozd
9ca16c6bc3
Fix aw-switch-buffer-other-window bug
...
When aw-switch-buffer-other-window is executed, it switches to the
selected window, changes the buffer, and then switches back. If the
buffer-switching function is canceled, the window won't get switched
back. Using unwind-protect ensures that the function ends with the
starting window selected.
7 years ago
Oleh Krehel
a2f1dd5c28
ace-window.el (aw--face-rel-height): Fix for int height
...
Fixes #157
7 years ago
Oleh Krehel
379413cad1
ace-window.el (aw-offset): Update
...
Don't call forward line if the buffer is too small.
Re #131
7 years ago
Oleh Krehel
d20bd7c6f1
ace-window.el (aw-delete-window): Add optional kill-buffer arg
...
Example config:
(add-to-list
'aw-dispatch-alist
(list
?X
(lambda (w)
(aw-delete-window w t))
"Delete Window and Kill Buffer"))
Fixes #146
7 years ago
Oleh Krehel
21fb8abb3b
ace-window.el (aw--after-make-frame): Extract, add make-frame-visible
...
Fixes #153
7 years ago
Oleh Krehel
95e478e97c
ace-window.el (aw-offset): Use the fix in all modes, not just shell-mode
...
Fixes #131
Fixes #134
7 years ago
Oleh Krehel
88e48db56a
ace-window.el: Fix leading char not displayed if the face height isn't 1.0
...
Fixes #145
7 years ago
duianto
1b1950e15c
Update readme.md, add melpa badges
7 years ago
Ca Xiansheng
bd4802756c
ace-window.el (aw-ignored-p): Only call frame-parent if defined
...
Fixes crash on Emacs-24.5
Fixes #151
Fixes #150
7 years ago
Oleh Krehel
2e3b9562b5
ace-window.el (aw-ignored-p): Ignore child frames
...
Fixes #150
7 years ago
Oleh Krehel
746ffd2508
ace-window.el (aw-ignored-buffers): Clean up doc
...
Re #148
7 years ago
Pengji Zhang
3fe86fbf3f
Update the name of the LV buffer
7 years ago
Ca Xiansheng
95a75e63d8
ace-window.el: Fix frame-parameter being nil sometimes
...
Happens on Emacs-24.5.1.
7 years ago
Oleh Krehel
5b88de026c
ace-window.el (aw-translate-char-function): New defcustom
...
Fixes #141
8 years ago
Oleh Krehel
d93e16b52e
ace-window.el: Fix frame-parameter being a cons sometimes
...
Happens on Emacs-24.5.
Fixes #138
8 years ago
Oleh Krehel
92d20e7e75
Bring back "Make window ordering rely on frame position"
...
Fixes #136
Fixes #135
8 years ago
Oleh Krehel
8d71b8f97d
ace-window.el (aw--lead-overlay): Fix warning
8 years ago
Wilfred Hughes
702bc2767a
Show the overlay in the bottom of the window too
...
This is useful when point overlaps the overlay at the top of the
window, making it difficult to read the label.
Fixes #129 .
Fixes #132 .
8 years ago
Oleh Krehel
d4066b1de0
Revert "Make window ordering rely on frame position"
...
This reverts commit c35618ed00 .
Fixes #135
8 years ago
Connor Nelson
c35618ed00
Make window ordering rely on frame position
...
I'm not quite sure what exactly the intention was of doing this off the id comparisons of the frames (they don't seem to be very consistent?).
I think that going off frame positions is much more intuitive. This only considers horizontal frame position, but it might also be worth considering their vertical position.
8 years ago
Oleh Krehel
208ea2a4e8
Change key suggestion "M-p" -> "M-o"
...
"M-p" conflicts with e.g. `shell-mode' and the minibuffer binding.
Fixes #123
8 years ago
Oleh Krehel
ceea53d7b6
ace-window.el (aw-dispatch-default): Add fboundp
...
Fixes #124
8 years ago
Oleh Krehel
c0fbdd51be
ace-window.el: Fix compiler warning
...
Re #121
8 years ago
Oleh Krehel
4ab92e1ea6
Fix up the previous commit
...
Re #121
8 years ago
Bob Weiner
be3a885a55
Fix so ace-window-display-mode ids are displayed in new frames
...
Add aw-ignore-p enhancements and expand documentation
Allow mouse selection of window when only one choice in window list
Add doc for aw-make-frame-char
Utilize aw-make-frame-char in aw-dispatch-default plus comment fix
In aw-update, let ignore-window-parameters be t to get all windows
Remove treatment of aw-action as a window from a mouse click
Fixes #121
8 years ago
Oleh Krehel
6c52b0bbcf
ace-window.el (aw-clean-up-avy-current-path): Extract
...
Re #119
8 years ago
Oleh Krehel
26c0ad0515
ace-window.el (aw-dispatch-default): Check action
...
Instead of providing defaults to destructure.
Fixes #119
8 years ago
Bob Weiner
5e733ff695
ace-window.el: Documentation and minor changes
...
Fixes #118
8 years ago
Oleh Krehel
15b0639ba5
ace-window.el (aw-make-frame-char): New defcustom
...
* ace-window.el (aw-set-make-frame-char): Add setter.
(aw-dispatch-default): Update.
8 years ago
Sho Takemori
6ff31d133d
Do not ignore window-parameters
8 years ago
Oleh Krehel
137af0de12
ace-window.el: Make "z" open a frame right away
...
Re #114
8 years ago
Bob Weiner
0799fddb06
Add aw-minibuffer-flag
...
Fixes #114
8 years ago
Bob Weiner
d5d8f5d831
Update README.md with latest commands and remove "i" (duplicate)
...
Re #114
8 years ago
Bob Weiner
2f433c8700
Added ability to specify a new frame window as the target
...
* ace-window.el (aw-dispatch-alist): Bind to "z".
The location and size of the new frame are controlled by `aw-frame-offset' and `aw-frame-size'.
Re #114
8 years ago
Oleh Krehel
9bec357bd3
ace-window.el: Fix compiler warning
8 years ago
Nick Drozd
66bfd421e8
Add switch-buffer-other-window
8 years ago
Nick Drozd
188c07a7aa
Add aw--switch-buffer with ivy and ido
8 years ago
Oleh Krehel
74c9cef04f
ace-window.el (aw-dispatch-when-more-than): New defcustom
...
Fixes #109
8 years ago
Oleh Krehel
3665daffc1
ace-window.el (aw-dispatch-default): No error on "C-g"
...
Fixes #108
8 years ago
Oleh Krehel
6d3a6a0729
ace-window.el (aw-switch-buffer-in-window): Use ivy if available
...
Fixes #107
8 years ago
Oleh Krehel
c875ffbe64
ace-window.el (aw-show-dispatch-help): Clean up overlays
...
Fixes #105
8 years ago
Oleh Krehel
ad7c0fb480
test/make-plain.el: Add
...
* Makefile: Update
8 years ago
Damien Cassou
c6f5c03055
Clarify when aw-dispatch-always should be set to t.
...
Fixes #102 .
8 years ago
Oleh Krehel
a037b7a916
Cask: Remove dependency
8 years ago
Oleh Krehel
2701919f88
ace-window.el (aw-key-face): Add
...
Re #103
8 years ago
Oleh Krehel
a4886577b4
ace-window.el (aw-show-dispatch-help): Call ace-window
...
Re #103
8 years ago