This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{:mode-name :ruby | |
:atom-scope ["source.ruby" | |
"source.ruby.rails.rjs" | |
"source.ruby.rails" | |
"source.erb" | |
"source.ruby.rspec" | |
"source.ruby.chef"] | |
:initial-config | |
[["ruby-linter.rubyExecutablePath" "/usr/bin/ruby"] | |
["ruby-rubocop.executablePath" nil]] | |
:mode-keybindings | |
{:c {:category "convert block" | |
:d {:action "ruby-block-converter:to-curly-brackets" | |
:title "do..end -> {}" | |
:target "atom-text-editor:not([mini])"} | |
:D {:action "ruby-block-converter:to-curly-brackets-without-collapse" | |
:title "do..end -> {} (no-collapse)" | |
:target "atom-text-editor:not([mini])"} | |
:b {:action "ruby-block-converter:to-do-end" | |
:title "{} -> do..end" | |
:target "atom-text-editor:not([mini])"} | |
:B {:action "ruby-block-converter:to-do-end-without-join" | |
:title "{} -> do..end (no-join)" | |
:target "atom-text-editor:not([mini])"}} | |
:= {:title "fix formatting" | |
:action "rubocop-auto-correct:current-file" | |
:target "atom-text-editor:not([mini])"} | |
:t {:category "test" | |
:t {:action "ruby-test:toggle" | |
:title "toggle panel"} | |
:a {:action "ruby-test:test-all" | |
:title "test all"} | |
:f {:action "ruby-test:test-file" | |
:title "test file"} | |
:l {:action "ruby-test:test-single" | |
:title "test at line"} | |
:. {:action "ruby-test:test-previous" | |
:title "re-run previous test"} | |
:c {:action "ruby-test:cancel" | |
:title "cancel tests"}}}} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment