문제

I want to copy/paste some text between MIT Scheme's Edwin and Windows. Is there a way?

Right now I open source code in notepad, copy/paste there, save and close, return to Edwin and synchronize. It's not convenient.

도움이 되었습니까?

해결책

In the documentation, it's stated that

Edwin is very similar to GNU Emacs—you should refer to the GNU Emacs manual for information about Edwin's commands and key bindings

So my guess is that you have to:

  • First set a mark at the beginning and at the end of the text to be copied: [Ctrl-spacebar]
  • Then copy it: [Meta-W]
  • And to paste back from windows: [Ctrl-Y]

다른 팁

The code of Edwin was creating from a branch of Emacs. In emacs the copy-paste is called yank.

The yank ring interacts with the graphical interface .

Look here at a detailed description of the interface.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top