在RStudio脚本中自动插入空格

5q4ezhmt  于 2023-06-19  发布在  其他
关注(0)|答案(1)|浏览(185)

就像使用Ctrl + ICmd + I可以正确缩进行一样,是否有在RStudio脚本中自动插入正确空格的快捷方式?
例如,对于此:

df<-data.frame(x=c(1,2,3,4,5),y=c(3,4,5,6,7))

RStudio给出的信息是 "expected whitespace around '<-' operator""expected whitespace around '=' operator"。有没有捷径可以得到这个:

df <- data.frame(x = c(1, 2, 3, 4, 5), y = c(3, 4, 5, 6, 7))
jyztefdp

jyztefdp1#

在RStudio下,您可以选择代码并在Windows和Linux中键入Ctrl+Shift+a或在macOS中键入Cmd+Shift+a以触发代码重新格式化,请参阅RStudio shortcuts
结果:

df <- data.frame(x = c(1, 2, 3, 4, 5), y = c(3, 4, 5, 6, 7))

相关问题