winterTTr / ace-jump-mode

a quick cursor jump mode for emacs

Home Page:https://github.com/winterTTr/ace-jump-mode/wiki

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Line mode errer

mikef656 opened this issue · comments

After keying C-u C-u C-c SPC
emacs is unresponsive to the point where it must be quit with the task manager. The CPU fan begins
to spin after several seconds. (looks like some infinite loop).

C-c SPC and C-u C-c SPC work as expected.

Setup for ace-jump in my .emacs at the bottom of this issue report.
variable load-ace-jump-mode is t.

Running emacs 24.3 under Win 7.

I run Icicles and many other 3rd party packages.

I use several frames at the same time in day-to-day editing.

Pulled the latest ace-jump-mode.el today

Thanks
Mike

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(message "reached before load-ace-jump-mode")
(when load-ace-jump-mode
(add-to-list 'load-path "/.emacs.d/ace-jump-mode")
(autoload
'ace-jump-mode
"ace-jump-mode"
"Emacs quick move minor mode"
t)
;
(autoload
'ace-jump-mode-pop-mark
"ace-jump-mode"
"Ace jump back:-)"
t)
(eval-after-load "ace-jump-mode"
'(ace-jump-mode-enable-mark-sync))
;icicles in gobbeling up this binding
;(define-key global-map (kbd "C-x SPC") 'ace-jump-mode-pop-mark)
;(define-key global-map (kbd "C-x `") 'ace-jump-mode-pop-mark)
(define-key esc-map "
" 'ace-jump-mode-pop-mark));M-~
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;