我想删除和/或停用EmmetSublime Text 2中的包.
我应该删除Emmet目录还是删除软件包的典型工作流程?
我在我的公司使用Sublime Text 3,我想导出所有设置,包括包等等,以便在家里使用Sublime Text 3中的相同配置.我怎样才能做到这一点?
PS.:我使用的是Windows 8
我在Windows 7上使用Sublime Text 2(版本2.0.1),我没有为此软件安装任何插件.我可以使用菜单打开控制台,但我无法通过ctrl+ `快捷方式打开控制台.如何解决这个问题?
我正在寻找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 ×3
sublimetext3 ×2
export ×1
import ×1
package ×1
settings ×1
uninstall ×1
windows ×1