Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix google-translate bug #57

Merged
merged 1 commit into from
Jan 6, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified custom.el
Binary file not shown.
7 changes: 6 additions & 1 deletion init.el
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,12 @@
:global-minor-mode global-git-gutter-mode))
(leaf google-translate
:ensure t
:init (leaf popup :ensure t)
:init
(leaf popup :ensure t)
;; fix search fail ',ttk'
;; (see https://github.com/atykhonov/google-translate/issues/52#issuecomment-727920888)
(with-eval-after-load 'google-translate-tk
(defun google-translate--search-tkk () "Search TKK." (list 430675 2721866130)))
:require 'google-translate-default-ui
:bind (("C-c t" . google-translate-smooth-translate))
:config
Expand Down