作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想阻止 hippie-expand 给我提供与我已经提供的大写字母不匹配的补全。示例:
start with "hippie1", "Hippie2", and "HIPPIE3"
"H" completes to "Hippie2" and "HIPPIE3", but not "hippie1"
有没有一种简单的方法可以做到这一点?
最佳答案
hippie-expand
将工作外包给 hippie-expand-try-functions-list
中的函数,我认为这取决于每个单独的函数它是否认为案例很重要,所以可能没有简单的解决方案?
根据实验,case-fold-search
变量在某些情况下有效,但并非全部。
编辑:
嗯,这不是所述问题的最终解决方案,但是如果设置 case-fold-search
足以满足您的目的,您可以使用以下内容:
(defadvice hippie-expand (around hippie-expand-case-fold)
"Try to do case-sensitive matching (not effective with all functions)."
(let ((case-fold-search nil))
ad-do-it))
(ad-activate 'hippie-expand)
关于emacs - 强制嬉皮扩展以尊重大写,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8722301/
我正在Python 2.7中使用Scipy 0.13.0来计算3d中的一组Voronoi单元。我需要获得每个电池的体积,以进行专有仿真的输出(去加权)。有没有简单的方法可以做到这一点-当然这是一个常见
我是一名优秀的程序员,十分优秀!