-
Lem エディタ ( https://github.com/cxxxr/lem ) の
Windows 用の文字幅データの設定サンプルです。
一部の文字の表示が改善されます。
(カーソルの表示位置がずれたりするケース等)<<現状、Windows 10 では、あまり改善できていません>>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; -*- coding: utf-8 -*- | |
;; | |
;; cocoro.scm | |
;; 2019-6-23 v1.11 | |
;; | |
;; <内容> | |
;; Gauche を使って、パズル ( https://game.nicovideo.jp/atsumaru/games/gm8913 ) | |
;; の探索を行うプログラムです (不完全版)。 | |
;; | |
;; <使い方> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<lem の OpenGL フロントエンド の確認> | |
(1)環境 | |
OS : Windows 8.1 (64bit) | |
開発環境 : MSYS2/MinGW-w64 (64bit) (gcc version 7.3.0 (Rev2, Built by MSYS2 project)) | |
(2)インストール | |
pacman -S mingw-w64-x86_64-glfw | |
ros install terminal625/utility |
- Lem エディタ ( https://github.com/cxxxr/lem ) の
Windows 上でのインストール手順等のメモです。
- MSYS2/MinGW-w64 (64bit/32bit) のインストール
事前に MSYS2/MinGW-w64 (64bit/32bit) がインストールされている必要があります。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; | |
;; testing format ~f | |
;; | |
(use gauche.test) | |
(use math.const) ; for pi | |
(test-start "format ~f") | |
(define-syntax expr-test |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Gauche の Windows コンソールのコードページ対応の試験> | |
1. 試験環境 | |
OS : Windows 8.1 (64bit) | |
開発環境 : MSYS2/MinGW-w64 (64bit) (gcc version 7.1.0 (Rev2, Built by MSYS2 project)) | |
Gauche : v0.9.6_pre2 (コミット aa189e6 + 変更) | |
mintty : v2.7.7 (x86_64-pc-msys) | |
winpty : v0.4.3 | |
emacs : v25.2.1 (x86_64-w64-mingw32) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Gauche の Windows コンソールのコードページ対応の測定> | |
1. 環境 | |
OS : Windows 8.1 (64bit) | |
開発環境 : MSYS2/MinGW-w64 (64bit) (gcc version 7.1.0 (Rev2, Built by MSYS2 project)) | |
Gauche : v0.9.6_pre2 (コミット aa189e6 + 変更) | |
2. 測定 |
Windows API の ReadConsoleW が、1バイト多く書き込む件の再現テストを行います。
<確認環境>
OS : Windows 8.1 (64bit)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; -*- coding: utf-8 -*- | |
;; | |
;; indent_conv.scm | |
;; 2020-5-2 v1.11 | |
;; | |
;; <内容> | |
;; Gauche を使用して、テキストファイルの行頭のインデントを変換します。 | |
;; | |
;; <使い方> | |
;; gosh indent_conv.scm infile outfile |