diff options
author | Oscar Najera <hi@oscarnajera.com> | 2025-02-26 22:23:22 +0100 |
---|---|---|
committer | Oscar Najera <hi@oscarnajera.com> | 2025-02-26 22:23:22 +0100 |
commit | c04149a7bdcfe8578c6527f86cc117ec03331a24 (patch) | |
tree | b45d93a4efe91f9aaae5e3a12ece3f6dfd571e8f /config | |
parent | 7eab371f635e37df5cd2d09343f6c90b88ffd413 (diff) | |
download | dotfiles-c04149a7bdcfe8578c6527f86cc117ec03331a24.tar.gz dotfiles-c04149a7bdcfe8578c6527f86cc117ec03331a24.tar.bz2 dotfiles-c04149a7bdcfe8578c6527f86cc117ec03331a24.zip |
vtable fix on emacs 30 is shorter
Diffstat (limited to 'config')
-rw-r--r-- | config/doom/config.org | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/config/doom/config.org b/config/doom/config.org index 7ef66e4..4db7459 100644 --- a/config/doom/config.org +++ b/config/doom/config.org @@ -138,22 +138,7 @@ Because I always need help and it should come up quickly #+end_src ** Fixes #+begin_src emacs-lisp -;; this imports fixes of emacs 30 (after! vtable - (defun vtable-beginning-of-table () - "Go to the start of the current table." - (if (or (text-property-search-backward 'vtable (vtable-current-table) #'eq) - (get-text-property (point) 'vtable)) - (point) - (goto-char (point-min)))) - - (defun vtable-end-of-table () - "Go to the end of the current table." - (if (text-property-search-forward 'vtable (vtable-current-table) #'eq) - (point) - (goto-char (point-max)))) - - ;; This is my own fix (defun vtable-header-line-sort (e) "Sort a vtable from the header line." (interactive "e") |