a291c8690a
GitOrigin-RevId: e6e19f3d81a982a62e1bba08f0b4f7fdc21b4ea0
7 lines
282 B
EmacsLisp
7 lines
282 B
EmacsLisp
;; Helper functions for creating the other files.
|
|
|
|
(defun wiktionary-lookup-at-point (ask-lang)
|
|
(interactive "P")
|
|
(let ((language (if ask-lang (read-string "Language code? ") "ru")))
|
|
(eww (concat "https://ru.wiktionary.org/wiki/"
|
|
(thing-at-point 'word)))))
|