DevJac

Results 10 comments of DevJac

This happens on Fedora Linux as well. Have to just `kill -9` my Julia scripts that use GR. It seems to me this is a problem with Julia itself. It's...

@jheinen I was able to get stuck in the loop you just posted. Just to be clear, this is the loop I get stuck in: ``` for i = 1:10...

``` (evil-define-motion evil-end-of-line (count) "Move the cursor to the end of the current line. If COUNT is given, move COUNT - 1 lines downward first." :type inclusive (move-end-of-line count) (when...

I created a workaround for this issue by changing the following two functions: ``` (evil-define-motion evil-next-visual-line (count) "Move the cursor COUNT screen lines down." :type exclusive (let ((line-move-visual t)) (if...

I attempted a solution in https://github.com/emacs-evil/evil/pull/1470, but it caused a regression described in the PR.

Good tip, I'm experimenting with real-last-command. I think simply replacing last-command with real-last-command for the two functions mentioned earlier might be the general fix. (EDIT: No, that has the same...

``` (evil-define-motion evil-next-visual-line (count) "Move the cursor COUNT screen lines down." :type exclusive (let ((line-move-visual t)) (line-move-visual (or count 1)))) (evil-define-motion evil-previous-visual-line (count) "Move the cursor COUNT screen lines up."...

This should be easy enough to fix if you customize your own faces. You can start with `M-x describe-face` and go from there. This seems outside the scope of this...

It would be especially useful to be able to combine the command the the invoking keystroke. I want to know that common commands are being invoked with easy keystrokes.

This happens in IJulia as well. However, it does NOT happen if you enable the showspeed option. Thus, it is probably related to the showspeed option.