Somelauw / evil-org-mode

Supplemental evil-mode keybindings to emacs org-mode

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

evil-org-> and < seem to have no effect in tables

dieggsy opened this issue · comments

commented

The documentation (and source code) for evil-org-> and evil-org-< imply that If I use them inside org tables, columuns will be moved in the right direction. The actual behavior I'm seeing is just that the whole table is indented.

commented

It appears the second conditional:

(save-excursion
           (goto-char beg)
           (<= (line-beginning-position) end (line-end-position)))

Is not actually returning true

commented

Ah, ok. Thanks.