-
-
Notifications
You must be signed in to change notification settings - Fork 623
My Dream Editor
This is a place for the Aurelia community to dream....about tooling. If you could have a development environment for building Aurelia apps...what would that look like? What features do you want most? What couldn't you live without?
A lot of newer editors use keyboard-shortcuts that are hard (if not impossible) to use on European keyboards.
Ctrl+x/c/v without marking anything works on the current line.
Example, in Sublime Text I can mark 10 lines, hit Ctrl+P
and type comment
followed by enter.
There might be a simpler way to do this, but the command-pallete in sublime is the easiest to remember
at least for me.
When dealing with dynamic languages (like javascript), sublime does a fairly good job of showing you lists of possible tokens you might want to insert. It's light weight, and you can generally figure out what you want yourself. However, with ES6 imports, it should also show you tokens imported, and not just the ones in the same file.
Pressing tab in a code editor generally inserts whitespace where the cursor is, but this is very rarely necessary. Pressing tab should indent the line no matter where you are in it, similar to the key command >>
in Vi. Shift-Tab should work the same way, except it should unindent.
- Go to definition
- Find all references
- 100% reliable intellisense
- Syntax
- Debugging ??