lorniu / go-translate

Translator on Emacs. Supports multiple engines such as Google, Bing, deepL, ChatGPT, StarDict, Youdao and so on.
GNU General Public License v3.0
282 stars 37 forks source link

Buffer is read-only: #<buffer *Go-Translate*> #66

Open BuddhiLW opened 6 months ago

BuddhiLW commented 6 months ago

I can't use 'h' or 'SPC' or any keybinding inside a go-translate buffer.

I used to be able to use the features, as y in order to listen to the word etc.

My configs (using doom emacs):

(use-package! go-translate
  :config
  (setq gts-translate-list '(("en" "zh")
                             ("en" "ru")))

  (setq gts-default-translator
        (gts-translator
         :picker (gts-prompt-picker)
         :engines (list ;;(gts-bing-engine)
                        ;;(gts-google-engine)
                        (gts-google-rpc-engine))
         :render
         (gts-buffer-render))))
         ;; (gts-posframe-pop-render))))