Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/davidfurlong/CodeBuddy

Learn shortcuts while programming using Sublime Text 3.
https://github.com/davidfurlong/CodeBuddy

Last synced: 5 days ago
JSON representation

Learn shortcuts while programming using Sublime Text 3.

Awesome Lists containing this project

README

        

Code Buddy
=========

Learn shortcuts while programming using Sublime Text 3.

## Shortcuts offered by package

### Text Shortcuts

- CMD + J **Join line below to the end of the current line**
- CMD + (up) **Swap line with line above**
- CMD + (down) **Swap line with line below**
- CMD + L **Select line**
- CMD + X **Delete line if no selected region, Cut behaviour**
- CMD + [ **Unindent**
- CMD + ] **Indent**
- ^ + M **Go to matching bracket**
- CMD + / **Comment Line**
- CMD + Shift + D **Duplicate Line**

### Non-text Shortcuts

- CMD + K + B **Toggle Sidebar**
- CMD + P **Quick-open files by name**
- CMD + P + : **Goto line in current file**
- CMD + R **Goto symbol, Goto word in current file**
- Click "Find Results" left Gutter **Go to file and line**

## Installing

Submitting to Sublime Package Control.

## Compatibility

Sublime Text 3
OSX, Linux, Windows

## Dependencies

SubNotify
https://github.com/facelessuser/SubNotify

Growl (OSX)

## Sublime Text 3 Api

Note: this call never seems to occur
```
post_text_command(view, command_name, args)
```

https://www.sublimetext.com/docs/3/api_reference.html#sublime.Region

## Future plans

- Scrolling detection and recommendations
- Reindent

### Alternate delivery of info

Initially native sublime popups were using to provide shortcuts. These were too intrusive and unavoidable. However they are commented out, such that in the case of technical difficulty due to dependencies/compatibility the full function of the package can be experienced.

### License

MIT License, Copyright 2014 David Furlong

Note this doesn't include the unused scrolling code at the end