Column
决策表的列定义。
Ruleflow-Group
A string identifying a rule flow group. In rule flow groups, rules can fire only when the group is activated by the associated rule flow. Example: ruleflow-group "GroupName"
Agenda-Group
A string identifying an agenda group to which you want t
Read more ...
fzf 的介绍看这篇文章,这篇文章主要总结一下 Fzf 在 vim 下面的使用。
安装过程就不再说,安装后 :help fzf 可以查看所有帮助。
fzf-vim 安装之后, :FZF 命令会被添加。
" 在当前目录搜索"
:FZF
" 在 home 目录搜索"
:FZF ~
" fzf 全屏"
:FZF!
插件配置
常用的配置 :help 中都能看到。
" An action can be a reference to a function that processes selected lines
function! s:build_qu
Read more ...
今天遇到一个奇怪的网络问题,记录一下研究过程和一些配置情况,顺便学习一下 Linux 下网络环境配置。
网络配置文件
该文件配置网卡信息 vi /etc/network/interfaces
auto lo
iface lo inet loopback
# 配置 eth0 dhcp 获取 IP 地址
auto eth0
iface eth0 inet dhcp
配置的作用
在 /etc/network/interfaces 这个配置中可能原本就有一些配置,比如
auto lo
iface lo inet loopback
这两行表示的是
Read more ...