Skip to content

pulsar-edit/sort-lines

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Sort Lines Package

Sorts your lines in Pulsar. Never gets tired.

sort-lines-demo

Installation

From within Pulsar: Settings -> Install -> search for "sort-lines" and click "Install" OR

From CLI: apm install sort-lines and restart Pulsar.

Commands and Keybindings

All of the following commands are under the atom-text-editor selector.

If any lines are selected in the active buffer, the commands operate on the selected lines. Otherwise, the commands operate on all lines in the active buffer.

Command Description Keybinding
sort-lines:sort Sorts the lines (case sensitive) F5
sort-lines:case-insensitive-sort Sorts the lines (case insensitive)
sort-lines:natural Sorts the lines ("natural" order)
sort-lines:by-length Sorts the lines by length
sort-lines:shuffle Sorts the lines in random order
sort-lines:reverse Reverses current order of the lines
sort-lines:unique Removes duplicate lines

Custom keybindings can be added by referencing the above commands. To learn more, visit the Using Atom: Basic Customization or Behind Atom: Keymaps In-Depth sections in the flight manual.

[Optional] Custom sorting combinations

Each command above provides an individual type of sorting operation. If you find yourself frequently performing multiple types of sorts back-to-back, you can optionally define a command to perform all those sorts at once. For example, if you want to perform a case-insensitive reverse sort, you can first run the sort-lines:case-insensitive-sort command followed by the sort-lines:reverse command, or you can define a custom composed command that performs both of these operations for you.

You can define these custom commands in your init file. (You can read more about customizing your init file in the flight manual.) If your init file is named init.coffee, refer to the init.coffee example below. If your init file is named init.js, refer to the init.js example below.

init.js example

// Perform a case-insensitive reverse sort of the selected lines (or all lines
// in the file if no lines are selected)
atom.commands.add('atom-text-editor:not([mini])', 'me:case-insensitive-reverse-sort', async () => {
  const editor = atom.workspace.getActiveTextEditor()
  const editorView = atom.views.getView(editor)
  await atom.commands.dispatch(editorView, 'sort-lines:case-insensitive-sort')
  await atom.commands.dispatch(editorView, 'sort-lines:reverse')
})

About

A Pulsar package to sort lines of text

Topics

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%