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
  • 13 years ago
  • 4 hours ago
  • 14 years ago

Installs

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