Skip to content

aki77/atom-sequential-command

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

sequential-command package

Many commands into one command Build Status

A screenshot of your package

Inspired by sequential-command.el.

Keymap

No keymap by default.

edit ~/.atom/keymap.cson

'atom-text-editor':
  'ctrl-e': 'seq:end'
  'ctrl-a': 'seq:home'
  'alt-u': 'seq:upcase-backward-word'
  'alt-l': 'seq:lower-backward-word'

Settings

edit ~/.atom/config.cson

# default settings
"*":
  "sequential-command":
    "commands": [
      {
        "name": "seq:end",
        "commands": [
          "editor:move-to-end-of-screen-line",
          "core:move-to-bottom",
          "seq:return"
        ]
      },
      {
        "name": "seq:home",
        "commands": [
          "editor:move-to-first-character-of-line",
          "editor:move-to-beginning-of-line",
          "core:move-to-top",
          "seq:return"
        ]
      }
    ]

About

Many commands into one command

Resources

License

Stars

Watchers

Forks

Packages

No packages published