Textmate“comment”命令对css代码无法正常工作

时间:2012-02-06 03:01:24

标签: css comments textmate bundle

当我在TextMate中为CSS源代码切换注释时,我遇到了一些问题。

使用快捷键 CMD + / 我从“source”包中激活“Comment Line / Selection”命令。问题是它为所有类型的语言插入了一系列//。例如,在CSS文件中,它应该插入/**/块,但它不会。在CSS文件中,我还尝试了源包中的“插入块注释”命令,结果很奇怪,我得到了以下//

// ----------------------------------------

而不是我的代码,删除代码并插入代码。

我知道我应该从捆绑包中修改命令,但我无法弄清楚如何以及如何。

这是“Source”Bundle中“Comment Line / Selection”命令的代码:

#!/usr/bin/env ruby

# by James Edward Gray II <james (at) grayproductions.net>

# 
# To override the operation of this commond for your language add a Preferences
# bundle item that defines the following valiables as appropriate for your
# language:
# 
#   TM_COMMENT_START - the character string that starts comments, e.g. /*
#   TM_COMMENT_END   - the character string that ends comments (if appropriate),
#                      e.g. */
#   TM_COMMENT_MODE  - the type of comment to use - either 'line' or 'block'
# 

require "#{ENV["TM_SUPPORT_PATH"]}/lib/escape"

def out(*args)
  print( *args.map do |arg|
    escaped = e_sn(arg)
    $selected ? escaped.gsub("}", "\\}") : escaped.sub("\0", "${0}")
  end )
end

# find all available comment variables
var_suffixes = [""]
2.upto(1.0/0.0) do |n|
  if ENV.include? "TM_COMMENT_START_#{n}"
    var_suffixes << "_#{n}"
  else
    break
  end
end

text    = STDIN.read
default = nil  # the comment we will insert, if none are removed

# maintain selection
if text == ENV["TM_SELECTED_TEXT"]
  $selected = true
  print "${0:"
  at_exit { print "}" }
else
  $selected = false
end

# try a removal for each comment...
var_suffixes.each do |suffix|
  # build comment
  com = { :start     => ENV["TM_COMMENT_START#{suffix}"] || "# ",
          :end       => ENV["TM_COMMENT_END#{suffix}"]   || "",
          :mode      => ENV["TM_COMMENT_MODE#{suffix}"]  ||
                        (ENV["TM_COMMENT_END#{suffix}"] ? "block" : "line"),
          :no_indent => ENV["TM_COMMENT_DISABLE_INDENT#{suffix}"] }

  com[:esc_start], com[:esc_end] = [com[:start], com[:end]].map do |str|
    str.gsub(/[\\|()\[\].?*+{}^$]/, '\\\\\&').
        gsub(/\A\s+|\s+\z/, '(?:\&)?')
  end

  # save the first one as our insertion default
  default = com if default.nil?

  # try a removal
  case com[:mode]
  when "line"  # line by line comment
    if text !~ /\A[\t ]+\z/ &&
       text.send(text.respond_to?(:lines) ? :lines : :to_s).
            map { |l| !!(l =~ /\A\s*(#{com[:esc_start]}|$)/) }.uniq == [true]
      if $selected
        out text.gsub( /^(\s*)#{com[:esc_start]}(.*?)#{com[:esc_end]}(\s*)$/,
                       '\1\2\3' )
        exit
      else
        r = text.sub( /^(\s*)#{com[:esc_start]}(.*?)#{com[:esc_end]}(\s*)$/,
                      '\1\2\3' )
        i = ENV["TM_LINE_INDEX"].to_i
        i = i > text.index(/#{com[:esc_start]}/)            ?
            [[0, i - com[:start].length].max, r.length].min :
            [i, r.length].min
        r[i, 0] = "\0"
        out r
        exit
      end
    end
  when "block" # block comment
    regex = /\A(\s*)#{com[:esc_start]}(.*?)#{com[:esc_end]}(\s*)\z/m
    if text =~ regex
      if $selected
        out text.sub(regex, '\1\2\3')
        exit
      else
        r = text.sub(regex, '\1\2\3')
        i = ENV["TM_LINE_INDEX"].to_i
        i = i > text.index(/#{com[:esc_start]}/)            ?
            [[0, i - com[:start].length].max, r.length].min :
            [i, r.length].min
        r[i, 0] = "\0"
        out r
        exit
      end
    end
  end
end

# none of our removals worked, so preform an insert (minding indent setting)
text[ENV["TM_LINE_INDEX"].to_i, 0] = "\0" unless $selected or text.empty?
case default[:mode]
when "line"  # apply comment line by line
  if text.empty?
    out "#{default[:start]}\0#{default[:end]}"
  elsif default[:no_indent]
    out text.gsub(/^.*$/, "#{default[:start]}\\&#{default[:end]}")
  elsif text =~ /\A([\t ]*)\0([\t ]*)\z/
    out text.gsub(/^.*$/, "#{$1}#{default[:start]}#{$2}#{default[:end]}")
  else
    indent = text.scan(/^[\t \0]*(?=\S)/).
                  min { |a, b| a.length <=> b.length } || ""
    text.send(text.respond_to?(:lines) ? :lines : :to_s).map do |line|
      if line =~ /^(#{indent})(.*)$(\n?)/ then
        out $1 + default[:start] + $2 + default[:end] + $3
      elsif line =~ /^(.*)$(\n?)/ then
        out indent + default[:start] + $1 + default[:end] + $2
      end
    end
  end
when "block" # apply comment around selection
  if text.empty?
    out default[:start]
    print "${0}"
    out default[:end]
  elsif text =~ /\A([\t ]*)\0([\t ]*)\z/
    out $1, default[:start]
    print "${0}"
    out $2, default[:end]
  elsif default[:no_indent]
    out default[:start], text, default[:end]
  else
    lines = text.to_a
    if lines.empty?
      out default[:start], default[:end]
    else
      lines[-1].sub!(/^(.*)$/, "\\1#{default[:end]}")
      out lines.shift.sub(/^([\s\0]*)(.*)$/, "\\1#{default[:start]}\\2")
      out(*lines) unless lines.empty?
    end
  end
end

4 个答案:

答案 0 :(得分:4)

确保已安装“Source”捆绑包。在撰写本文时的最新Textmate 2 Alpha中,转到TextMate - &gt;偏好 - &gt;捆绑 - &gt;选中“Source”包进行安装。 CMD + /快捷方式现在可以正常工作。

答案 1 :(得分:3)

如果你使用的是高于1.8.7的Ruby,那么这是一个很小的语法问题。您会发现to_a方法已被删除。如果你想解决问题,你需要做的就是修改这个文件中的代码。

要解决此问题,您需要搜索他们称之为to_a的任何位置,并将其替换为Array("string")

就我而言,我做到了这一点。这也适合你:

lines = text.to_a

lines = text.lines.to_a

enter image description here

这应该是每件事的解决方案。查看图像,看看我最终修复了哪个文件。

答案 2 :(得分:2)

我遇到了同样的问题,结果发现我安装了一个SCSS软件包,其首选项设置为使用“//”作为带有source.css和source.scss范围选择器的注释。

我会检查以确保您没有相同的SCSS包,如果这样做,请将注释首选项的范围选择器更改为source.scss。

答案 3 :(得分:0)

Cmd / 已经工作多年了,现在仍然如此。好吧,我的TM2 alpha副本被破坏了(不适用于数字键盘中的/,但是,它是alpha)但是TM 1.5.x可以正常工作。

应该在任何地方修改任何东西。 评论行/选择命令非常智能,可以在“任何”类型的文件中添加正确的评论。

你是否搞乱了语言定义?您的文件是否被识别为“CSS”?删除所有或某些插件/包时它是否有效?

-- EDIT --

enter image description here