【发布时间】:2020-11-22 14:12:04
【问题描述】:
我在阅读带有空格的代码时确实遇到了问题,因此我在阅读之前使用 Visual Studio 代码编辑器将代码从空格缩进到制表符。
但问题是rails文件很多,我必须重复做同样的操作。所以,我想使用Dir.glob 来遍历所有这些并将空格转换为制表符并覆盖这些文件。这是一个糟糕的主意,但仍然......
目前我的 String#spaces_to_tabs() 方法如下所示:
代码
# A method that works for now...
String.define_method(:spaces_to_tabs) do
each_line.map do |x|
match = x.match(/^([^\S\t\n\r]*)/)[0]
m_len = match.length
(m_len > 0 && m_len % 2 == 0) ? ?\t * (m_len / 2) + x[m_len .. -1] : x
end.join
end
什么样的作品
这是一个测试:
# Put some content that will get converted to space
content = <<~EOF << '# Hello!'
def x
'Hello World'
end
p x
module X
refine Array do
define_method(:tally2) do
uniq.reduce({}) { |h, x| h.merge!( x => count(x) ) }
end
end
end
using X
[1, 2, 3, 4, 4, 4,?a, ?b, ?a].tally2
p [1, 2, 3, 4, 4, 4,?a, ?b, ?a].tally2
\r\r\t\t # Some invalid content
EOF
puts content.spaces_to_tabs
输出:
def x
'Hello World'
end
p x
module X
refine Array do
define_method(:tally2) do
uniq.reduce({}) { |h, x| h.merge!( x => count(x) ) }
end
end
end
using X
[1, 2, 3, 4, 4, 4,?a, ?b, ?a].tally2
p [1, 2, 3, 4, 4, 4,?a, ?b, ?a].tally2
# Some invalid content
# Hello!
目前没有:
- 影响除空格以外的空白(\t、\r、\n)。
- 影响代码输出,仅将空格转换为制表符。
我无法使用我的编辑器,因为:
- 使用 Dir.glob(未包含在此示例中),我只能迭代 .rb、.js、.erb、.html、.css 和 .scss 文件。
另外,这很慢,但我最多可以有 1000 个文件(扩展名以上),每个文件有 1000 行代码,但这是最大值,而且不太实用,我通常有
有没有更好的方法?
编辑
以下是用于在 rails 中转换所有主要文件的完整代码:
#!/usr/bin/ruby -w
String.define_method(:bold) { "\e[1m#{self}" }
String.define_method(:spaces_to_tabs) do
each_line.map do |x|
match = x.match(/^([^\S\t\n\r]*)/)[0]
m_len = match.length
(m_len > 0 && m_len % 2 == 0) ? ?\t * (m_len / 2) + x[m_len .. -1] : x
end.join
end
GREEN = "\e[38;2;85;160;10m".freeze
BLUE = "\e[38;2;0;125;255m".freeze
TURQUOISE = "\e[38;2;60;230;180m".freeze
RESET = "\e[0m".freeze
BLINK = "\e[5m".freeze
dry_test = ARGV.any? { |x| x[/^\-(\-dry\-test|d)$/] }
puts "#{TURQUOISE.bold}:: Info:#{RESET}#{TURQUOISE} Running in Dry Test mode. Files will not be changed.#{RESET}\n\n" if dry_test
Dir.glob("{app,config,db,lib,public}/**/**.{rb,erb,js,css,scss,html}").map do |y|
if File.file?(y) && File.readable?(y)
read = IO.read(y)
converted = read.spaces_to_tabs
unless read == converted
puts "#{BLINK}#{BLUE.bold}:: Converting#{RESET}#{GREEN} indentation to tabs of #{y}#{RESET}"
IO.write(y, converted) unless dry_test
end
end
end
【问题讨论】:
-
您是否介意详细说明为什么您在阅读带有空格的代码时遇到问题?我从来没有注意到我的编辑器在两者之间有什么不同。
-
这是a really bad idea。配置您的编辑器以您想要的方式显示代码,而不是对代码进行人工处理。我不使用 VSCode,但这可以在几乎所有现有的代码编辑器中进行配置。
-
我认为 1 个空格显示为 1 个空格,但我可以将选项卡配置为 4 个或 8 个空格。目前我使用 4 个空格制表符,但 Rails 使用 2 个空格缩进,我想我不能用 VSCode 将 2 个空格渲染为 4 个空格...