Vim 中的自动完成/缩写和计算?

发布于 2024-12-21 20:18:09 字数 200 浏览 1 评论 0原文

我正在尝试在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

Smile简单爱 2024-12-28 20:18:09

这是 @kev 答案的重构,不会强迫您使用 F 并且不会触及任何寄存器:

inoremap <expr> F ((col('.')>1 && getline('.')[col('.')-2]=~#'^\d

请注意,您不得使用 imap除非你确切知道原因。

更新:
假设您使用点作为小数点分隔符,请勿使用科学记数法或常见(对于编程语言)截断,例如 .1==0.110.==10.0

inoremap <expr> F ((col('.')>1 && getline('.')[col('.')-2]=~#'^\d
)?(printf(' °F (%d °C)', float2nr((matchstr(getline('.')[:(col('.')-2)], '\d\+

请注意,您不得使用 imap除非你确切知道原因。

更新:
假设您使用点作为小数点分隔符,请勿使用科学记数法或常见(对于编程语言)截断,例如 .1==0.110.==10.0


)-32)/1.8))):('F'))

请注意,您不得使用 imap除非你确切知道原因。

更新:
假设您使用点作为小数点分隔符,请勿使用科学记数法或常见(对于编程语言)截断,例如 .1==0.110.==10.0


)?(printf(' °F (%.1g °C)', (str2float(matchstr(getline('.')[:(col('.')-2)], '\v\-?\d+(\.\d+)?
)?(printf(' °F (%d °C)', float2nr((matchstr(getline('.')[:(col('.')-2)], '\d\+

请注意,您不得使用 imap除非你确切知道原因。

更新:
假设您使用点作为小数点分隔符,请勿使用科学记数法或常见(对于编程语言)截断,例如 .1==0.110.==10.0


)-32)/1.8))):('F'))

请注意,您不得使用 imap除非你确切知道原因。

更新:
假设您使用点作为小数点分隔符,请勿使用科学记数法或常见(对于编程语言)截断,例如 .1==0.110.==10.0

))-32)/1.8)):('F')) )?(printf(' °F (%d °C)', float2nr((matchstr(getline('.')[:(col('.')-2)], '\d\+

请注意,您不得使用 imap除非你确切知道原因。

更新:
假设您使用点作为小数点分隔符,请勿使用科学记数法或常见(对于编程语言)截断,例如 .1==0.110.==10.0

)-32)/1.8))):('F'))

请注意,您不得使用 imap除非你确切知道原因。

更新:
假设您使用点作为小数点分隔符,请勿使用科学记数法或常见(对于编程语言)截断,例如 .1==0.110.==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:

inoremap <expr> F ((col('.')>1 && getline('.')[col('.')-2]=~#'^\d

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:

inoremap <expr> F ((col('.')>1 && getline('.')[col('.')-2]=~#'^\d
)?(printf(' °F (%d °C)', float2nr((matchstr(getline('.')[:(col('.')-2)], '\d\+

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:


)-32)/1.8))):('F'))

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:


)?(printf(' °F (%.1g °C)', (str2float(matchstr(getline('.')[:(col('.')-2)], '\v\-?\d+(\.\d+)?
)?(printf(' °F (%d °C)', float2nr((matchstr(getline('.')[:(col('.')-2)], '\d\+

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:


)-32)/1.8))):('F'))

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:

))-32)/1.8)):('F')) )?(printf(' °F (%d °C)', float2nr((matchstr(getline('.')[:(col('.')-2)], '\d\+

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:

)-32)/1.8))):('F'))

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:

懷念過去 2024-12-28 20:18:09
:imap F <ESC>ciw<C-R>=printf('%d°F (%d°C)', str2nr(@"), float2nr((str2nr(@")-32)/1.8))<CR>

如果您愿意,它将在 插入模式 下将 88F 扩展到 88°F (31°C)

注意:要键入字符 F,请按 Ctrl-VF

:imap F <ESC>ciw<C-R>=printf('%d°F (%d°C)', str2nr(@"), float2nr((str2nr(@")-32)/1.8))<CR>

It will expand 88F to 88°F (31°C) in insert-mode

note: if you want to type the character F, press Ctrl-VF.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文