emacs-chess icon indicating copy to clipboard operation
emacs-chess copied to clipboard

Display the move list?

Open WorldsEndless opened this issue 5 years ago • 1 comments

I would like to display the move list and expected to find a custom or module for that, but don't see one. Is there a simple way to display the move list alongside the board?

WorldsEndless avatar Aug 29 '18 14:08 WorldsEndless

This code should turn the current game into a PGN string:

  (let ((game chess-module-game))
	(with-temp-buffer
		    (chess-game-to-pgn game)
		    (buffer-string)))

Which you could then populate another buffer with. I don't think there's a way to do that right now that's built-in, although it's a feature we absolutely should have.

jwiegley avatar Aug 29 '18 18:08 jwiegley