Will Bond
Will Bond
I'm happy to consider a new binding. Do you have a suggestion for something that works across all different languages and doesn't conflict with any existing plugins or default bindings?
@davemac @bawigga You'll have to choose your own shortcut and place it in Preferences > Package Settings > Alignment > Key Bindings - User.
It is unclear to me what lines you were trying to align, or what you expected the output to be. From copy and pasting your second example, the plugin seems...
What issues are you running into aligning things with LESS?
Well, that file can be in any folder. Ideally it is in your `Packages/User/` folder so if you sync your packages to another machine, you get it also. Of note,...
> I hope we can agree that the general solution would be preferable. I don't think allowing users to ignore individual files would be a good idea, since they will...
> This is only possible at the plugin & settings level. There are other static sublime resource files that a user may want to "ignore" for whatever reasons like completions...
> Can you explain what do you mean by "scalable" in this context. Scalable in the sense that only a small number of people will be able to handle this....
> The feature request is to effectively have option(s) like ignored_keybindings: ["/*.sublime-keymap"] and the likes. No the feature request is to ignore arbitrary file patterns. I am saying it would...
In: ``` c++ myClassA myObject; myClassB* myObjectPointer; ``` the `*` and `;` are scoped. In: ``` c++ std::vector myVectorOfObjects; std::vector myVectorOfObjectPointers; ``` the `::`, `` and `;` are scoped. I...