如何使 emacs 中的自动完成功能匹配长 perl 变量?
自动完成功能最好的功能就是匹配单词字符。例如:自动完成将仅匹配先前使用的变量 $longvariablename[$i]{'key'} 中的 $longvariablename。我想配置自动完成或任何其他 emacs el 文件以匹配整个变量。
作为最后的手段,我必须学习 lisp #shudder#。
提前致谢。
The best auto-complete can do is match word characters. For example: auto-complete will only match $longvariablename in a previously used variable, $longvariablename[$i]{'key'}. I would like to configure auto-complete, or any other emacs el file to match the entire variable.
As a last resort, I'm going to have to learn lisp #shudder#.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以自定义嬉皮扩展。
例如,以下自定义将所有字符串展开直到出现空格或分号。
不要忘记将您的自定义函数包含到
make-hippie-expand-function
列表中You can customize hippie expand.
For example the following customization expands all strings until a space or a semicolon.
Don't forget to include your custom function into
make-hippie-expand-function
list