現代仮名遣の文章を正字正かなに書換へるマクロです。 淒い文法解析をするわけではなくて、單純な置換の組合せしかしてゐません。 未完成かつ開發中ですが、 "それなり" な精度で變換します。
- 動作環境
- 秀丸(たぶんV6.0以降必須)
| test.* | |
| import sys;[i for i in range(1,101)if(sys.stdout.write((""if i%3 else"Fizz")+(""if i%5 else "Buzz")+(str(i)if i%3 and i%5 else"")+"\n"))] |
| ;; for Emacs 24 | |
| (require 'cl) | |
| (set-language-environment 'Japanese) | |
| (prefer-coding-system 'utf-8) | |
| (set-default-coding-systems 'utf-8) | |
| (set-keyboard-coding-system 'utf-8) | |
| (custom-set-variables |
| # Windows (notepad) like keybinding for nano editor | |
| # written by zonuexe, license under GPLv3 or NYSL(0.9982) | |
| # lastupdate: h240921 | |
| # | |
| # how to install | |
| # a. rename and move this file to $HOME/.nanorc | |
| # % mv nanorc.keybindings $HOME/.nanorc | |
| # b. concatenate this file with tail of $HOME/.nanorc | |
| # % cat nanorc.keybindings >> $HOME/.nanorc |
| #!/usr/bin/env ruby | |
| # -*- coding: utf-8 -*- | |
| # ++ TMCIT Exam Archives Downloader ++ | |
| # ++ I don't like regular expression. ++ | |
| # !! At your own risk !! | |
| # License | |
| # Copyright (c) 2012 atpons | |
| # | |
| # Permission is hereby granted, free of charge, to any person obtaining a copy of |
for Japanese: http://qiita.com/items/9ba5eb157e09463740f4
I'm using Emacs on Ubuntu, but I amazed because that had not inherited environment variable when launch Emacs by Unity launcher. So that lisp snippet have include Zsh environment variable $PATH to Emacs.