100203笔记

删除所有以“~”结尾的临时文件 :  find . -name '*~' -exec rm {} /;

右键在菜单里当左键使

Vimperator
C-z  一直进入pass through模式,指令不是vimperator的
C-v  下一次进入passthrou模式,比如复制就是先C-v,再C-c,在编辑区可以直接C-c


同时按左右键 = 鼠标中键

晚上终于把flash的乱码问题彻底解决,
以前是删除/etc/fonts/conf.d/49-sansserif.conf
最近弄乱了,删除了也不起作用,
修改这个49-sansserif.conf文件终于解决


<?xml version="1.0"?> <!DOCTYPE fontconfig SYSTEM "fonts.dtd"> <fontconfig> <!-- If the font still has no generic name, add sans-serif --> <match target="pattern"> <test qual="all" name="family" compare="not_eq"> <string>微软雅黑</string> </test> <test qual="all" name="family" compare="not_eq"> <string>微软雅黑</string> </test> <test qual="all" name="family" compare="not_eq"> <string>monospace</string> </test> <edit name="family" mode="append_last"> <string>微软雅黑</string> </edit> </match> </fontconfig>  

3个地方要改为中文字体

你可能感兴趣的:(100203笔记)