Skip to content

Extend the power of multiple selections in Sublime Text 2/3. Modify selections, insert numeric sequences, incremental numbers, generate uuids, date ranges, insert continuously from a word list and more.

License

Notifications You must be signed in to change notification settings

evandroforks/TextPastry

 
 

Repository files navigation

Text Pastry

Text Pastry is a free plugin for Sublime Text, dedicated to reduce repetetive work by extending the power of multiple selections.

How can I get started?

If you're familiar with multiple selections, it's pretty straight forward. Place multiple cursors by using CMD+Click or Ctrl+Click, open the Command Palette and select Text Pastry From 1 to X. That's it! We've just pasted incrementing numbers.

Check out the wiki for examples!

Installation

By Package Control

  1. Download & Install Sublime Text 3 (https://www.sublimetext.com/3)
  2. Go to the menu Tools -> Install Package Control, then, wait few seconds until the installation finishes up
  3. Now, Go to the menu Preferences -> Package Control
  4. Type Add Channel on the opened quick panel and press Enter
  5. Then, input the following address and press Enter
    https://raw.githubusercontent.com/evandrocoan/StudioChannel/master/channel.json
    
  6. Go to the menu Tools -> Command Palette... (Ctrl+Shift+P)
  7. Type Preferences: Package Control Settings – User on the opened quick panel and press Enter
  8. Then, find the following setting on your Package Control.sublime-settings file:
    "channels":
    [
        "https://packagecontrol.io/channel_v3.json",
        "https://raw.githubusercontent.com/evandrocoan/StudioChannel/master/channel.json",
    ],
  9. And, change it to the following, i.e., put the https://raw.githubusercontent... line as first:
    "channels":
    [
        "https://raw.githubusercontent.com/evandrocoan/StudioChannel/master/channel.json",
        "https://packagecontrol.io/channel_v3.json",
    ],
    • The https://raw.githubusercontent... line must to be added before the https://packagecontrol.io... one, otherwise, you will not install this forked version of the package, but the original available on the Package Control default channel https://packagecontrol.io...
  10. Now, go to the menu Preferences -> Package Control
  11. Type Install Package on the opened quick panel and press Enter
  12. Then, search for TextPastry and press Enter

See also:

  1. ITE - Integrated Toolset Environment
  2. Package control docs for details.

Features include:

  • Incremental numbers/sequences (1, 2, 3 or 100, 80, 60)
  • Repeatable number ranges (1, 2, 3, 4, 1, 2, 3, 4 or 2, 1, 2, 1, 2, 1)
  • Generate UUIDS (ba18f7fc-c387-46da-9544-ed32e49ce6f8 or D306E86C-918F-4551-95A9-CB9865A4DD2F)
  • Extendable list of presets (Monday, Tuesday, Wednesday or alpha, beta, gamma)
  • Extendable list of commands
  • Create and modify selections
  • Improved paste (paste the first three lines of the clipboard data to the three selected locations)
  • Generate date and number ranges
  • Convert to upper/lower case
  • Duplicate values for pasting (1, 1, 2, 2, 3, 3, 4, 4) or (a, a, a, b, b, b, c, c, c)

What's new

  • 1.5.1: Bugfix release for Find by regex #56 - Thanks [@timLinscott]
  • 1.5.0: New Features!
  • 1.4.10: Scroll into view on search / after find #33 - Thanks again @miusuncle
  • 1.4.9: Bugfix release for uuid x10 #31 - Thanks @miusuncle
  • 1.4.8: Added support for repeating increments #29 - Thanks @mkruselj
  • 1.4.7: Fixed range command (stop condition was ignored)
  • 1.4.6: Bugfix release for paste by row - Thanks @Nieralyte
  • 1.4.5: Added the paste by row command (use pr or pbr in the command line) #28
  • 1.4.4: Bugfix for command \i #27 - Thanks @kcko
  • 1.4.3: New commands! Generate date ranges command, repeat argument (x-arg), and the Auto Step command
  • 1.4.2: Fix range / negative steps #24 - Thanks @TheClams
  • 1.4.1: Hotfix for #23 - Thanks @dufferzafar
  • 1.4.0: New Features!

Further information

If you would like to know more about how Text Pastry can help you out, check out our wiki.

Todo

  • formatters
  • wrappers #20
  • smart case: determine case-sensitivity by search term

Wishlist

  • Webservice "Shell": use a custom (web-)service to process our selections
  • yankring
  • Templates: apply formatting right before items are pasted

Done

  • Paste by progressing a list (Piping Bag) (1.5.0)
  • increment in multiple files (1.5.0)
  • loops (1.5.0)
  • date ranges (1.4.10)
  • incremental search: add search terms to selection by shortcut (work-in-progress) (1.4.0, use add)
  • Alphabetical sequence (upper/lower case) (1.4.0)
  • Random numbers, strings and sequences (use Random Everything in combination with commands)
  • Command List Overlay
  • Command History
  • UUID generation
  • Settings for word manipulation
  • Paste as Block

Great plugins that I love to use with Text Pastry

in alphabetical order

License

The MIT License (MIT)

Copyright (c) 2016 Duy Dao, https://github.com/duydao/Text-Pastry

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.

See Also

For further information, please take the time to look at following links:

About

Extend the power of multiple selections in Sublime Text 2/3. Modify selections, insert numeric sequences, incremental numbers, generate uuids, date ranges, insert continuously from a word list and more.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 100.0%