-
Windows 環境において、Lem エディタを ConEmu 上で実行する方法をまとめたものです。
-
mintty + winpty 上では 16 色 しか表示できませんでした (winpty の制約による) が、
ConEmu 上では 256 色 で表示することができます。
(参考URL: rprichard/winpty#108
https://conemu.github.io/en/Xterm256Colors.html )
This file contains 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
/* | |
GitHub New GUI Customization | |
2022-7-19 v1.09 | |
*/ | |
@-moz-document domain("github.com") { | |
/* width >= 768px */ | |
@media (min-width: 768px) { | |
/* narrow width of sidebar */ | |
turbo-frame > #repo-content-pjax-container > div > div > .Layout.Layout--sidebarPosition-end, |
This file contains 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
;; | |
;; pcdemo3_debug.scm | |
;; 2020-6-4 v1.02 | |
;; | |
(use data.queue) | |
(use gauche.partcont) | |
;; for debug | |
(define *dbg-level* 3) ; (bitwise setting (e.g. 3 is error+info) | |
; ; =0:none, =1:error, =2:info) |
This file contains 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 プルリクエスト #558 測定結果> | |
https://github.com/shirok/Gauche/pull/558 | |
測定用のスクリプトは下に添付します ( handle_vals.scm ) 。 | |
(1) 変更前 (for + local allay) | |
values-0 : #<time-result 3000000 times/ 6.818 real/ 7.547 user/ 0.781 sys> | |
values-1 : #<time-result 3000000 times/ 7.043 real/ 8.000 user/ 0.875 sys> |
This file contains 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 の r7rs-swank 対応> | |
関連プルリクエスト: https://github.com/cxxxr/lem/pull/435 | |
https://github.com/cxxxr/lem/pull/438 | |
(1)ファイル | |
scheme-mode | |
scheme-mode.lisp process にも swank にも無関係なもの(上位層)(※) |
This file contains 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
;; | |
;; dynamic-test.scm | |
;; 2019-12-17 v5.04 | |
;; | |
;; Emulate dynamic-wind and reset/shift on Gauche | |
;; | |
;; (emu-dynamic-wind before thunk after) | |
;; before is (^[] expr ...) | |
;; thunk is (^[] expr ...) | |
;; after is (^[] expr ...) |
This file contains 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
<テスト> | |
init.lisp の設定ありで確認 | |
(1)mintty + winpty | |
起動 | |
winpty ros -Q -s lem-pdcurses -L sbcl-bin -- $USERPROFILE/.roswell/bin/lem-ncurses | |
→ 2019-5-14 OK |
This file contains 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
// | |
// thread32.c | |
// 2019-2-16 v1.03 | |
// | |
// Description: | |
// GetThreadContext test for Windows Wow64 thread. | |
// | |
// Original source: | |
// https://social.msdn.microsoft.com/Forums/vstudio/ja-JP/aa176c36-6624-4776-9380-1c9cf37a314e/getthreadcontext-returns-stale-register-values-on-wow64?forum=windowscompatibility | |
// (GetThreadContext returns stale register values on WOW64) |