完美日用小命令: Revision history

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

30 September 2025

29 September 2025

  • curprev 10:5210:52, 29 September 2025Mwroot talk contribs 11,380 bytes +11,380 Created page with "{| class = "wikitable" ! 目标或作用 ! 对应方法 |- | emacs 中插入两个全角空格 | <syntaxhighlight lang="bash"> insert-char 3000 #或者 (global-set-key (kbd "C-c s") (lambda () (interactive) (insert-char #x3000 2))) </syntaxhighlight> |- | 解决 ssh 断联问题 | <syntaxhighlight lang="bash"> # 本地 ~/.ssh/config Host * ServerAliveInterval 60 ServerAliveCountMax 3 # 远程 /etc/ssh/sshd_config ClientAliveInterval 60 ClientAliveCountMax 3 <..."