diff options
author | David Morgan <djm_uk@protonmail.com> | 2024-10-01 15:50:13 +0100 |
---|---|---|
committer | David Morgan <djm_uk@protonmail.com> | 2024-10-01 15:50:13 +0100 |
commit | 1ff6bfd6860ca269eedaf6e5965f9dceea7fe09a (patch) | |
tree | 7627d9141ea7cf956aaab4e707872a75c5a52eab | |
parent | f925f618d51e3f0334710a32024617a380f4e413 (diff) | |
download | dotfiles-1ff6bfd6860ca269eedaf6e5965f9dceea7fe09a.tar.gz |
Add a full stop to the end of docstrings
-rw-r--r-- | .emacs.d/lisp/init-editor.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.emacs.d/lisp/init-editor.el b/.emacs.d/lisp/init-editor.el index 72369f5..925b05d 100644 --- a/.emacs.d/lisp/init-editor.el +++ b/.emacs.d/lisp/init-editor.el @@ -173,11 +173,11 @@ :custom (xref-search-program 'ripgrep) :config (defun xref-find-references-other-window (identifier) - "Like `xref-find-references' but switch to the other window" + "Like `xref-find-references' but switch to the other window." (interactive (list (xref--read-identifier "Find references of: "))) (xref--find-xrefs identifier 'references identifier 'window)) (defun xref-find-references-other-frame (identifier) - "Like `xref-find-references' but switch to the other frame" + "Like `xref-find-references' but switch to the other frame." (interactive (list (xref--read-identifier "Find references of: "))) (xref--find-xrefs identifier 'references identifier 'frame)) (define-key ctl-x-4-map (kbd "M-?") 'xref-find-references-other-window) |