go-translate icon indicating copy to clipboard operation
go-translate copied to clipboard

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

Open BuddhiLW opened this issue 10 months ago • 0 comments

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))))

BuddhiLW avatar Apr 08 '24 15:04 BuddhiLW