相关疑难解决方法(0)

如何删除sublime文本中的包2

我想删除和/或停用EmmetSublime Text 2中的包.

我应该删除Emmet目录还是删除软件包的典型工作流程?

uninstall package sublimetext2

160
推荐指数
4
解决办法
14万
查看次数

如何使用Windows将Sublime Text 3的设置从一台PC导出/导入到另一台PC?

我在我的公司使用Sublime Text 3,我想导出所有设置,包括包等等,以便在家里使用Sublime Text 3中的相同配置.我怎样才能做到这一点?

PS.:我使用的是Windows 8

windows import settings export sublimetext3

56
推荐指数
5
解决办法
5万
查看次数

在Sublime Text 2中打开控制台的快捷键不起作用

我在Windows 7上使用Sublime Text 2(版本2.0.1),我没有为此软件安装任何插件.我可以使用菜单打开控制台,但我无法通过ctrl+ `快捷方式打开控制台.如何解决这个问题?

sublimetext2

46
推荐指数
7
解决办法
8万
查看次数

关于缩进的崇高文本排序

我正在寻找Sublime Text插件或任何可以按字母顺序排序但尊重缩进的程序。

例如,

beatsByUserPath: (userId) ->
  "/api/beats/by_user/#{userId}"
sendMassMessagePath: ->
  "/api/send_mass_message"
sendMessagePath: (userId) ->
  "/api/send_message/#{userId}"
feedbackCreatePath: ->
  "/api/feedbacks"
Run Code Online (Sandbox Code Playgroud)

将按功能名称排序。在Sublime Text中使用默认排序会导致:

  "/api/beats/by_user/#{userId}"
  "/api/feedbacks"
  "/api/send_mass_message"
  "/api/send_message/#{userId}"
beatsByUserPath: (userId) ->
feedbackCreatePath: ->
sendMassMessagePath: ->
sendMessagePath: (userId) ->
Run Code Online (Sandbox Code Playgroud)

这是我要排序的完整文件。

RouteHelper =
  EXTERNAL:
    soundcloudConvertPath: (url) ->
      url = encodeURIComponent(url)
      "http://streampocket.com/?stream=#{url}"
    youtubeConvertPath: (url) ->
      url = encodeURIComponent(url)
      "http://www.video2mp3.net/loading.php?url=#{url}"
  UTIL:
    imageProxy: (url) ->
      url = encodeURIComponent(url)
      "/image-proxy/#{url}"
  API:
    beatsReportPath: (param) ->
      beatId = param
      beatId = param.id if typeof param is 'object' && param.id
      "/api/beats/#{beatId}/report"
    beatsTrackDownloadPath: (param) -> …
Run Code Online (Sandbox Code Playgroud)

sublimetext2 sublimetext3 sublime-text-plugin

4
推荐指数
1
解决办法
543
查看次数