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

Sublime​Bufmod

by minism ST2

Operations on text selections for SublimeText2

Details

  • 2012.05.30.20.22.23
  • github.​com
  • github.​com
  • 12 years ago
  • 20 minutes ago
  • 13 years ago

Installs

  • Total 428
  • Win 209
  • Mac 97
  • Linux 122
Jul 27 Jul 26 Jul 25 Jul 24 Jul 23 Jul 22 Jul 21 Jul 20 Jul 19 Jul 18 Jul 17 Jul 16 Jul 15 Jul 14 Jul 13 Jul 12 Jul 11 Jul 10 Jul 9 Jul 8 Jul 7 Jul 6 Jul 5 Jul 4 Jul 3 Jul 2 Jul 1 Jun 30 Jun 29 Jun 28 Jun 27 Jun 26 Jun 25 Jun 24 Jun 23 Jun 22 Jun 21 Jun 20 Jun 19 Jun 18 Jun 17 Jun 16 Jun 15 Jun 14 Jun 13
Windows 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 0 0 0 0 0 0 0
Mac 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 0 0 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 0 0 0 0 0 0 0 0 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

Description

Bufmod is a package for SublimeText2 that contains various commands to manipulate the current text selection in useful ways.

Installation

You can install this package by running the following command in your ST2 Packages directory:

git clone git://github.com/minism/SublimeBufmod.git

Once installed, be sure to edit the appropriate keybinding config file, as the keys are blank by default. The files are:

  • Default (Linux).sublime-keymap
  • Default (OSX).sublime-keymap
  • Default (Windows).sublime-keymap

Commands

You can run commands by using the key shortcuts, or through the command menu by pressing Ctrl/Cmd+P and typing “Bufmod”. All commands require one or more active selections of text in your editor to have any effect.

Apply function to selection

This is a simple yet powerful command. An input window will open up which accepts a python function as a string, on a single line, with the following constraints:

  • The variable s is a unicode object containing the selected text.
  • The function must return a unicode or string.

The possibilities are really endless here. Some examples of what you can do:

return str(len(s))
return s.encode('ascii')
return s.strip().upper().center(80)

Or, perhaps something more complicated (make sure to use semicolons!):

import os; return '\n'.join(os.path.join(os.path.expanduser('~'), chunk.strip()) for chunk in s.split(','))

Which would turn this:

images, scripts, notes

Into:

/Users/josh/images
/Users/josh/scripts
/Users/josh/notes

Apply function to each line in selection

Similar to the previous command, except for the following differences:

  • The function is mapped to every line in the selection.
  • The variable s is a unicode object containing the text for a single line.
  • The value returned replaces a single line.

This (ideally) obviates the need to use split and join in your function to process multiple lines.

Decorate text with border

An input window opens which accepts a single character (extra characters are discarded). The current selection is wrapped in a padded box using the specified character.

Example:

bufmod.py - SublimeText2 Helper

Becomes:

###################################
#                                 #
# bufmod.py - SublimeText2 Helper #
#                                 #
###################################

Discussion

Forum thread: http://www.sublimetext.com/forum/viewtopic.php?f=5&t=3677