[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/greader f97a96e186 3/3: greader-dict.el: Now when a mat
From: |
ELPA Syncer |
Subject: |
[elpa] externals/greader f97a96e186 3/3: greader-dict.el: Now when a match is found, it will be converted in a word and added as word in the dictionary. In this way i hope that the performance of substitution will be slightly improved. |
Date: |
Tue, 23 Jul 2024 03:58:12 -0400 (EDT) |
branch: externals/greader
commit f97a96e1869af4b995640c4ea425e9d2172bd0e3
Author: Michelangelo Rodriguez <michelangelo.rodriguez@gmail.com>
Commit: Michelangelo Rodriguez <michelangelo.rodriguez@gmail.com>
greader-dict.el: Now when a match is found, it will be converted in a word
and added as word in the dictionary. In this way i hope that the performance of
substitution will be slightly improved.
---
greader-dict.el | 30 ++++++++++++++++++++++++------
1 file changed, 24 insertions(+), 6 deletions(-)
diff --git a/greader-dict.el b/greader-dict.el
index d4f473286b..5c88ea8f97 100644
--- a/greader-dict.el
+++ b/greader-dict.el
@@ -425,10 +425,11 @@ Return nil if KEY is not present in `greader-dictionary'."
reduced-dictionary))
(catch 'key-matched
(maphash
- (lambda (k _v)
+ (lambda (k v)
(setq k
(string-remove-suffix greader-dict-match-indicator k))
(when (string-match k word)
+ (greader-dict--add-match-as-word k word v)
(setq key (concat k greader-dict-match-indicator))
(throw 'key-matched key)))
reduced-dictionary))
@@ -623,11 +624,11 @@ modify: "
(substring-no-properties
default-word))
(when
-
greader-dict-include-sentences-in-defaults
- (greader-dict--get-word-alternatives
- (greader-get-sentence)))
- (greader-dict--get-matches
- 'word))))
+
greader-dict-include-sentences-in-defaults
+
(greader-dict--get-word-alternatives
+ (greader-get-sentence)))
+ (greader-dict--get-matches
+ 'word))))
(setq value (read-string (concat "substitute word " key
" with: ")
(gethash key greader-dictionary)))
@@ -999,6 +1000,23 @@ hash table."
(replace-match v))))
greader-filters))
+(defun greader-dict--add-match-as-word (key word replacement)
+ "Add WORD and REPLACEMENT to the current dictionary.
+This function is used internally, please use the normal entry-points
+to add your own items to the dictionary."
+
+ (let (value start end)
+ (string-match key word)
+ (setq start (match-beginning 0))
+ (setq end (match-end 0))
+ (setq key word)
+ (when (> start 0)
+ (setq value (concat (substring word 0 start))))
+ (setq value (concat value replacement))
+ (when (> (length word) (length value))
+ (setq value (concat value (substring word end))))
+ (greader-dict-add key value)))
+
(provide 'greader-dict)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; greader-dict.el ends here