aboutsummaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorWilfred Hughes <me@wilfred.me.uk>2020-09-23 00:05:14 -0700
committerWilfred Hughes <me@wilfred.me.uk>2020-09-30 16:11:22 -0700
commit5a5eb62ae1f9cfdd4897ec6e878ec96231c52bdd (patch)
tree435dad49e9291e34fd44925a37fb4d7962b866f0 /CHANGELOG.md
parentf4b838c1080174e05a9e5f8672c4510a6d8298dc (diff)
Choose the default symbol more intelligently0.18
Fixes #163 Closes #245 Particular thanks to @matzebond for the first implementation of this feature!
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md23
1 files changed, 22 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 946b8f7..7e61c4e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -8,7 +8,28 @@ Fixed a crash on assigning byte-compiled objects to keybindings.
Fixed an issue with advice being shown in docstrings on Emacs 27+.
-Symbol links in docstrings are now smarter in cases like "function `foo'".
+Symbol links in docstrings are now smarter in cases like "function
+`foo'".
+
+## Improvements to the default symbol offered
+
+Functions:
+
+* If the symbol at point is a bound function, offer that.
+* If point is at a function call, offer that.
+
+Variables:
+
+* If the symbol at point is a bound variable, offer that.
+* If point is at a `defvar` or `defcustom` call, offer that variable.
+
+Symbols:
+
+* If the symbol at point is a bound function, offer that.
+* Try the function, then the variable heuristics described above.
+
+This should also make transitioning from help.el easier, and should
+improve helpful in literate org-mode files.
# v0.17