- Add build-in
ln. - Add lua-command
lnswhich shows UAC and doln -s ls -lshows the destination of the symbolic-link.- Query continue or not when copy/move failed on one of parameters.
- New variable:
nyagos.histchar: a character for history-substitution (default:!)- To disable history-substitution, do
nyagos.histchar = nil
- To disable history-substitution, do
- New variable:
nyagos.antihistquot: characters to disable for history-substitution (default:'")- Be careful that
"!!"is not substituted by DEFAULT. - To be compatible with 4.0, do
nyagos.antihistquot = [[']]
- Be careful that
- New variable:
nyagos.quotation: characters for the completion (default:"').- The first character of
nyagos.quotationis the default quotation-mark. - The others characters are used when an user typed before completion.
- When
nyagos.quotation=[["']]C:\Prog[TAB]is completed to"C:\Program Files\("inserted)'C:\Prog[TAB]is completed to'C:\Program Files\('remains)"C:\Prog[TAB]is completed to"C:\Program Files\("remains)
- The first character of
- 内蔵コマンド ln を追加
- Lua コマンド lns を追加 (UACを表示後、
ln -sを実行する) ls -lでシンボリックリンクの宛先を表示- あるファイルでcopy/move 時に失敗した時、以降のファイルを続けるか問合せるようにした。
- 新変数:
nyagos.histchar: ヒストリ置換文字(デフォルト「!」)- ヒストリ置換を完全に無効にする場合、
nyagos.histchar = nil
- ヒストリ置換を完全に無効にする場合、
- 新変数:
nyagos.antihistquot: ヒストリ置換を抑制する引用符(デフォルト「'"」)- 【注意】
"!!"は「デフォルト」では置換されなくなりました - 4.0互換にするには
nyagos.antihistquot = [[']]とする
- 【注意】
- 新変数:
nyagos.quotation: 補完でのデリミタ文字(デフォルト「"'」)。nyagos.quotationの最初の文字がデフォルトの引用符となる。- 二番目以降の文字は、ユーザが補完前に使用していた場合に採用される
nyagos.quotation=[["']]の場合C:\Prog[TAB]→"C:\Program Files\("が挿入される)'C:\Prog[TAB]→'C:\Program Files\('が維持される)"C:\Prog[TAB]→"C:\Program Files\("が維持される)