Vim 中的自动完成/缩写和计算?
我正在尝试在 Vim 中编写类似的脚本,这给我带来了一系列问题。我确信这是可能的。
每当我插入一个数字后跟大写 F,例如 88F
,我希望 Vim 自动将其转换为 88°F (31°C)
—— 也就是说,扩展表达式,同时将华氏度转换为摄氏度。
触发这种内联扩展的最佳方法是什么?运行计算的最佳方法是什么?
I'm trying to script something like this in Vim, and it's raising a series of questions for me. I'm sure it's possible.
Whenever I insert a number followed by a capital F, like 88F
, I would like Vim to automatically convert that to 88°F (31°C)
-- that is, expanding the expression but also converting Fahrenheit to Celsius.
What's the best way to trigger that sort of inline expansion? And the best way to run the calculation?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是 @kev 答案的重构,不会强迫您使用
F
并且不会触及任何寄存器:请注意,您不得使用
imap
除非你确切知道原因。更新:
))-32)/1.8)):('F')) )?(printf(' °F (%d °C)', float2nr((matchstr(getline('.')[:(col('.')-2)], '\d\+假设您使用点作为小数点分隔符,请勿使用科学记数法或常见(对于编程语言)截断,例如
.1==0.1
、10.==10.0
:请注意,您不得使用
imap
除非你确切知道原因。更新:
)-32)/1.8))):('F'))假设您使用点作为小数点分隔符,请勿使用科学记数法或常见(对于编程语言)截断,例如
.1==0.1
、10.==10.0
:请注意,您不得使用
imap
除非你确切知道原因。更新:
假设您使用点作为小数点分隔符,请勿使用科学记数法或常见(对于编程语言)截断,例如
.1==0.1
、10.==10.0
:This is the refactoring of @kev’s answer that won’t force you to use
<C-v>F
and won’t touch any registers:Note that you must not use
imap
unless you know exactly why.Update:
))-32)/1.8)):('F')) )?(printf(' °F (%d °C)', float2nr((matchstr(getline('.')[:(col('.')-2)], '\d\+Assuming that you use dot as a decimal separator, do not use scientific notation or common (for programming languages) truncations like
.1==0.1
,10.==10.0
:Note that you must not use
imap
unless you know exactly why.Update:
)-32)/1.8))):('F'))Assuming that you use dot as a decimal separator, do not use scientific notation or common (for programming languages) truncations like
.1==0.1
,10.==10.0
:Note that you must not use
imap
unless you know exactly why.Update:
Assuming that you use dot as a decimal separator, do not use scientific notation or common (for programming languages) truncations like
.1==0.1
,10.==10.0
:如果您愿意,它将在
插入模式
下将88F
扩展到88°F (31°C)
注意:要键入字符
F
,请按 Ctrl-VF。It will expand
88F
to88°F (31°C)
ininsert-mode
note: if you want to type the character
F
, press Ctrl-VF.