Display in minibuffer link under point

2020-05-08 Thread Garjola Dindi
Hi, Is there a way to display in the minibuffer the URL of the link under the point in the same way as when the mouse pointer is over the link? Thanks! Garjola --

Re: [PATCH] faster org-table-align

2020-05-08 Thread Nicolas Goaziou
Hello, tbanelwebmin writes: > `org-table-align' may benefit from recent `org-table-to-lisp' > speed-up. > > The current code contains the following lines in org-table.el. They > parse the table into a Lisp structure, which is precisely what > `org-table-to-lisp' is supposed to do. > > (fields

[PATCH] faster org-table-align

2020-05-08 Thread tbanelwebmin
`org-table-align' may benefit from recent `org-table-to-lisp' speed-up. The current code contains the following lines in org-table.el. They parse the table into a Lisp structure, which is precisely what `org-table-to-lisp' is supposed to do. (fields (mapcar (lambda (l)

Re: Display in minibuffer link under point

2020-05-08 Thread John Kitchin
M-x display-local-help might do it. John --- Professor John Kitchin Doherty Hall A207F Department of Chemical Engineering Carnegie Mellon University Pittsburgh, PA 15213 412-268-7803 @johnkitchin http://kitchingroup.cheme.cmu.edu On Fri, May 8, 2020 at 9:15 AM

Re: Display in minibuffer link under point

2020-05-08 Thread briangpowell .
I use this variable to toggle my Gnu Emacs Org-Mode buffer into an audio desktop: (setq tooltip-use-echo-area (not tooltip-use-echo-area)) Of course I had to do some programming to do that but the above should get you started And we can leave that programming as an exercise for the class--right

Re: [patch suggestion] Mitigating the poor Emacs performance on huge org files: Do not use overlays for PROPERTY and LOGBOOK drawers

2020-05-08 Thread Nicolas Goaziou
Hello, Ihor Radchenko writes: > ;; Unfortunately isearch, sets inhibit-point-motion-hooks and we > ;; cannot even use cursor-sensor-functions as a workaround > ;; I used a less ideas approach with advice to isearch-search-string as > ;; a workaround OK. > (defun org-find-text-property-region

Re: [PATCH] faster org-table-align

2020-05-08 Thread tbanelwebmin
Le 08/05/2020 à 15:44, Nicolas Goaziou a écrit : > Hello, > > tbanelwebmin writes: > >> `org-table-align' may benefit from recent `org-table-to-lisp' >> speed-up. >> >> The current code contains the following lines in org-table.el. They >> parse the table into a Lisp structure, which is

Re: Display in minibuffer link under point

2020-05-08 Thread John Kitchin
It looks like that variable is obsolete now since Emacs 24.1, and (tooltip-mode -1) is probably the way to get the same thing now. John --- Professor John Kitchin Doherty Hall A207F Department of Chemical Engineering Carnegie Mellon University Pittsburgh, PA 15213

Re: [PATCH] Fix moving cursor in org-set-tags-command

2020-05-08 Thread Kyle Meyer
Nicolas Goaziou writes: > Matt Lundin writes: > >> -(when (save-excursion (skip-chars-backward "*") (bolp)) >> - (forward-char >> +(and (looking-at " ") >> + (string-match "\\*+" (buffer-substring (point-at-bol) (point))) >> + (forward-char > > Please replace `and'

Re: TODO or checkboxes in org tables

2020-05-08 Thread Uwe Brauer
> I’m sorry, I didn’t tell you the whole truth. > „Projektleiter“ and „CAD Nachpflegen“ are defined as TODO keywords. > (A special case of WAITNG and an ALLMOST DONE state) > You have to add the additional options yourself: > :indent t :format "%50ITEM(Problem) %5PB(Nr)

Re: [PATCH] Fix moving cursor in org-set-tags-command

2020-05-08 Thread Nicolas Goaziou
Hello, Matt Lundin writes: > -(when (save-excursion (skip-chars-backward "*") (bolp)) > - (forward-char > +(and (looking-at " ") > + (string-match "\\*+" (buffer-substring (point-at-bol) (point))) > + (forward-char Please replace `and' with `when' if side-effects