read 0.1.1

win32 editor written in rust
/////////////////// read v0.1.1 //

#include <stdio.h>
{
  printf("hello, world\n");
  return 0;
}

//////////////////////////////////

// ctrl + h : help
// ctrl + o : debug
// ctrl + x : test
// ctrl + c : copy
// ctrl + v : paste
// ctrl + w : side panel

//////////////////////////////////

// 0  : move cursor to x 0
// $  : move cursor to x end
// D  : remove and copy some line
// dd : remove and copy all line
// gg : move cursor first index
// G  : move cursor last index
// zz : save and exit

//////////////////////////////////

// i  : edit mode
// a  : edit mode
// o  : edit mode
// O  : edit mode
// v  : visual mode
// y  : copy 
// p  : paste

//////////////////////////////////