随笔分类 - Q&A & Quick Notes
摘要:Like type overrides, instance overrides should precede object creation. All factory overrides code should be executed in a parent prior to building th
阅读全文
摘要:终端 Vim 改变光标在不同模式下的样式 Reference: Change cursor shape in different modes Vim Help: :h termcap-cursor-shape let &t_SI = "\<Esc>[5 q" let &t_SR = "\<Esc>[
阅读全文
摘要:如何匹配对称的括号,且允许单层嵌套 ? 就像匹配一个允许包含转义字符的字符串一样,"[^\\"]*(\\.[^\\"]*)*",这是我们常用的一种正则结构 Unrolling the Loop,即opening normal* (special normal*)* closing;类似的,我们可以很
阅读全文
摘要:实际上,最主要的是我们只要知道编辑器的命令行接口,即 Command Line Interface (CLI),就可以在其他地方配置调用该编辑器,而这个不难得到,如 VS Code CLI,查看文档,我们可以用code -g file:line[:character]打开文件file,并跳转到指定的
阅读全文
摘要:如果你还因为某些原因而不得不使用 Xilinx ISE 软件,而他在 Windows 10 系统上将无法正常运行(比如双击打开时无法启动或者闪退),这里有一份来自 10 多年之前的解决方案,为防止链接失效,引用如下(点击展开): Guide: Getting Xilinx ISE to work w
阅读全文
