Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/davidfurlong/CodeBuddy
- Owner: davidfurlong
- Created: 2014-09-07T11:40:52.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2014-09-07T12:34:18.000Z (about 10 years ago)
- Last Synced: 2024-11-01T13:05:46.707Z (7 days ago)
- Language: Python
- Homepage:
- Size: 133 KB
- Stars: 4
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-starred - davidfurlong/CodeBuddy - Learn shortcuts while programming using Sublime Text 3. (others)
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/SubNotifyGrowl (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