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
| status key command | |
| Composition Backspace Backspace | |
| Conversion Backspace Cancel | |
| Precomposition Backspace Revert | |
| Composition Ctrl a MoveCursorToBeginning | |
| Conversion Ctrl a SegmentFocusFirst | |
| Composition Ctrl Backspace Backspace | |
| Conversion Ctrl Backspace Cancel | |
| Precomposition Ctrl Backspace Undo | |
| Composition Ctrl d MoveCursorRight |
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
| ;;; init.el --- My init.el -*- lexical-binding: t; -*- | |
| (eval-and-compile | |
| (when (or load-file-name byte-compile-current-file) | |
| (setq user-emacs-directory | |
| (expand-file-name | |
| (file-name-directory (or load-file-name byte-compile-current-file)))))) | |
| (eval-and-compile | |
| (customize-set-variable |
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
| ;;; init.el --- My init.el -*- lexical-binding: t; -*- | |
| (eval-and-compile | |
| (when (or load-file-name byte-compile-current-file) | |
| (setq user-emacs-directory | |
| (expand-file-name | |
| (file-name-directory (or load-file-name byte-compile-current-file)))))) | |
| (eval-and-compile | |
| (customize-set-variable |
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
| (require 'e2wm) | |
| ;; 2画面ファイラ化。 | |
| (setq dired-dwim-target t) | |
| ;;; wfiler / Wfiler column editing perspective | |
| ;;;-------------------------------------------------- | |
| (defvar e2wm:c-wfiler-recipe | |
| '(- (:upper-size-ratio 0.8) |
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
| ;; mikio's solution to Simple Math | |
| ;; https://4clojure.com/problem/2 | |
| 4 |
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
| (ns net.n01se.Tree | |
| (:import (java.awt Point Graphics Frame Color) | |
| (java.awt.geom AffineTransform)) | |
| (:gen-class | |
| :extends java.applet.Applet)) | |
| ;--- recursive fractal drawing framework --- | |
| ; define min and max points for the logical stage | |
| (def minpoint (doto (Point.) (.setLocation 0 0))) |