VIM文档中的“ idem”是什么意思?


Answers:


12

这是一个拉丁词,意为“相同”。在引用的上下文中,这仅意味着列出的命令与先前列出的命令具有相同的作用,即remove item 3

:let i = remove(list, 3)    " remove item 3  
:unlet list[3]              " idem

7
有趣的事实:在意大利,例如当人们拿相同的菜在餐厅下订单时,经常使用“同上”一词。A:“ Prendo la fiorentina con l'insalata” B:“ ideat con patate”(A:“我会把Fiorentina牛排和沙拉一起吃”,B:“相同,但是用土豆代替”)。特别地,在两个事物之间的一般比较中,经常使用“同义共轭”来表示它们并不完全相同,但实际上应将它们视为相同。
Giacomo Alzetta

在德国,人们可能会对@GiacomoAlzetta所描述的情况说“ dito”。
罗尔夫

@Rolf“ Ditto”在英语中也很常见。不过,我从未听说过“土豆炖肉”。
Rich

@Rich是的,在德国之后也只会说“ dito”。
罗尔夫(Rolf)

5

:help list

...
:let i = remove(list, 3)            " remove item 3
:unlet list[3]                      " idem
:let l = remove(list, 3, -1)        " remove items 3 to last item
:unlet list[3 : ]                   " idem
...

idem 也就是说那行代码与上面的代码行相同。

这可能很有用:https : //en.wiktionary.org/wiki/idem

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.