ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Slugify

by alimony ALL

Convert the selected text to a slug.

Details

  • 2020.07.29.09.38.10
  • github.​com
  • github.​com
  • 4 years ago
  • 14 minutes ago
  • 11 years ago

Installs

  • Total 3K
  • Win 1K
  • Mac 2K
  • Linux 591
May 13 May 12 May 11 May 10 May 9 May 8 May 7 May 6 May 5 May 4 May 3 May 2 May 1 Apr 30 Apr 29 Apr 28 Apr 27 Apr 26 Apr 25 Apr 24 Apr 23 Apr 22 Apr 21 Apr 20 Apr 19 Apr 18 Apr 17 Apr 16 Apr 15 Apr 14 Apr 13 Apr 12 Apr 11 Apr 10 Apr 9 Apr 8 Apr 7 Apr 6 Apr 5 Apr 4 Apr 3 Apr 2 Apr 1 Mar 31 Mar 30
Windows 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Mac 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0
Linux 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

Slugify

Sublime Text 2 & 3 package that adds a command for converting the selected text to a slug.

Installation

This package is available through Package Control, it’s called “Slugify”.

Usage

Select a piece of text and run “Slugify” from the Command Palette. All characters will be converted to ASCII, removing any punctuation and such, and spaces converted to a separator character that by default is a dash. You can change what separator to use by editing the package setting slugify_separator, see Preferences > Package Settings > Slugify > Settings — User.

Adding a key binding

To add a keyboard shortcut for the Slugify command, just bind the name “slugify” to keys of your choice. For example, this binds it to cmd-alt-y:

[
    {
        "keys": ["super+alt+y"],
        "command": "slugify"
    }
]

For more information on key bindings, see the Unofficial Sublime Text Documentation.

Credits

The slugify function itself is by Armin Ronacher. The plugin part is based on sublime-slug by Damiano Seno.