Extension Details

- Join Lines
- by Nate Silva
- 0 Recent Installs | 593 Total Installs
- Join lines of text.
- Repository
- Bug Reports
Readme
This extension provides a Join Lines command for Nova, similar to
the Join Lines command available in VS Code.
The default keyboard shortcut is Ctrl-J.
Pressing Ctrl-J will join the current line and the next line. For example, if you have this:
console.log(
"hello world!" );
Then, from anywhere on the first line, you press Ctrl-J. Now you have:
console.log( "hello world!" );
If you don’t want a space to be added at the end of the joined line, there’s a preference for that. It can be found in the Extensions section of your Project Settings.
That’s it!
Icon: join by Gregor Cresnar from
the Noun Project licensed CCBY
Release Notes
Version 1.4
Added “No trailing whitespace” option
Version 1.3
Don’t remove an empty line immediately after the current line
Version 1.2
Simpler, RegExp-based text replacement
Version 1.1
Copyediting
Version 1.0
Initial release
License
MIT License
Copyright (c) 2020 Nate Silva
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.