Emacs跳转标记

Emacs跳转 四个方向 1 2 3 4 C/M - f C/M - b C/M - p C/M - n 行首行尾 1 2 C - a C - e 段落首尾 1 2 M - a M - e 页首尾 1 2 < > 按照段落跳转 1 2 M - } M - { 按照页跳转 1 2 C……

阅读全文

emacs 代码折叠

这里说的是emacs自带的HideShow mode. 进入HideShow mode: M-x hs-minor-mode 主要的功能: C-c @ C-M-s 显示所有的代码(hs-show-all) C-c @ C-M-h 折叠所有的代码(h……

阅读全文

创建并打开新的scratch Buffer

使用场景 在原有的scratch保存新文件时,scratch buffer会消失 创建新命令 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ;;create-new-scratch-buffer (defun create-scratch-buffer nil "create a scratch buffer" (interactive) (switch-to-buffer (get-buffer-create "*scratch*")) (lisp-interaction-mode)) (defun switch-to-scratch-and-back () "Toggle between *scratch* buffer and the……

阅读全文

代码模板插件应用

代码模板应用场景 面对经常使用的格式化内容,重复频率多的内容可以让程序自动生成 比如头部描述 matter 1 2 3 #+title: xxx #+author: xxx #+date: xxx-xxx-xxx 比如代码片段 1 2 3 4 5 if(xxx){ body } else{ body } 插件yas-sni……

阅读全文

win10网络检测 | win10

网络检测 检测电脑本地回环 1 ping 127.0.0.1 2.检测路由器 1 ping 网关 3.检测域名 1 ping www.baidu.com……

阅读全文

文件操作 | emacs基础

模板优化, 获取文件名当作博客名称 使用到两个函数 string-replace buffer-name 博客文件模板 1 2 3 4 5 6 7 #+title: ${1:Title} #+DATE: `(format-time-string org-hugo-date-format)` #+author: zhangxingong #+SLUG: ${2:`(string-replace ".org" "" (buffer-name))`} #Result "emacs-file" 参考博客: 操作对象之三 ── 文件……

阅读全文

Emacs里自带的vi模式

Emacs里如何使用vim映射 使用自带的模式viper-mode 使用插件Evil 参考链接如下: Emacs键盘映射效率与vim映射效率哪个更快……

阅读全文

Win10系统优化

清理垃圾 WIN+R输入 cleanmgr ,如下: 校验系统 WIN+R输入 cmd 输入命令 sfc /cannow 并以管理员身份运行 如下:……

阅读全文

Win10底部任务栏没反应怎么办

现象使用win10搜索没有显示搜索框 分析原因: 磁盘卡顿引起的UI卡死 解决办法 打开任务管理器 找到Windows Explorer,右键重启 重启后底部任务栏会强制刷新……

阅读全文