├── ApplescriptSources └── Scripts │ └── Source │ ├── forward_select_entire_string.applescript │ ├── jump_to_next_parameter.applescript │ ├── jump_to_previous_parameter.applescript │ ├── select_entire_string.applescript │ └── select_to_end_of_parameter_list.applescript ├── Contents ├── Clippings │ └── iso_8601_date.txt ├── Scripts │ └── Source │ │ ├── bbedit_reference_to_current_line.sh │ │ ├── forward_select_entire_string.scpt │ │ ├── jump_to_next_parameter.scpt │ │ ├── jump_to_previous_parameter.scpt │ │ ├── select_entire_string.scpt │ │ └── select_to_end_of_parameter_list.scpt └── Text Filters │ └── Source │ ├── Align Assignments.rb │ ├── Align Into Columns.sh │ ├── Sort Lines.sh │ ├── toggle_single_double_quotes.rb │ ├── toggle_snake_case_or_camelCase_or_PascalCase.rb │ ├── wrap_selection_in_parans.rb │ ├── wrap_selection_in_quotes.rb │ └── wrap_selection_in_square_brackets.rb └── README.markdown /ApplescriptSources/Scripts/Source/forward_select_entire_string.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilcox/Source.bbpackage/HEAD/ApplescriptSources/Scripts/Source/forward_select_entire_string.applescript -------------------------------------------------------------------------------- /ApplescriptSources/Scripts/Source/jump_to_next_parameter.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilcox/Source.bbpackage/HEAD/ApplescriptSources/Scripts/Source/jump_to_next_parameter.applescript -------------------------------------------------------------------------------- /ApplescriptSources/Scripts/Source/jump_to_previous_parameter.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilcox/Source.bbpackage/HEAD/ApplescriptSources/Scripts/Source/jump_to_previous_parameter.applescript -------------------------------------------------------------------------------- /ApplescriptSources/Scripts/Source/select_entire_string.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilcox/Source.bbpackage/HEAD/ApplescriptSources/Scripts/Source/select_entire_string.applescript -------------------------------------------------------------------------------- /ApplescriptSources/Scripts/Source/select_to_end_of_parameter_list.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilcox/Source.bbpackage/HEAD/ApplescriptSources/Scripts/Source/select_to_end_of_parameter_list.applescript -------------------------------------------------------------------------------- /Contents/Clippings/iso_8601_date.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilcox/Source.bbpackage/HEAD/Contents/Clippings/iso_8601_date.txt -------------------------------------------------------------------------------- /Contents/Scripts/Source/bbedit_reference_to_current_line.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilcox/Source.bbpackage/HEAD/Contents/Scripts/Source/bbedit_reference_to_current_line.sh -------------------------------------------------------------------------------- /Contents/Scripts/Source/forward_select_entire_string.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilcox/Source.bbpackage/HEAD/Contents/Scripts/Source/forward_select_entire_string.scpt -------------------------------------------------------------------------------- /Contents/Scripts/Source/jump_to_next_parameter.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilcox/Source.bbpackage/HEAD/Contents/Scripts/Source/jump_to_next_parameter.scpt -------------------------------------------------------------------------------- /Contents/Scripts/Source/jump_to_previous_parameter.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilcox/Source.bbpackage/HEAD/Contents/Scripts/Source/jump_to_previous_parameter.scpt -------------------------------------------------------------------------------- /Contents/Scripts/Source/select_entire_string.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilcox/Source.bbpackage/HEAD/Contents/Scripts/Source/select_entire_string.scpt -------------------------------------------------------------------------------- /Contents/Scripts/Source/select_to_end_of_parameter_list.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilcox/Source.bbpackage/HEAD/Contents/Scripts/Source/select_to_end_of_parameter_list.scpt -------------------------------------------------------------------------------- /Contents/Text Filters/Source/Align Assignments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilcox/Source.bbpackage/HEAD/Contents/Text Filters/Source/Align Assignments.rb -------------------------------------------------------------------------------- /Contents/Text Filters/Source/Align Into Columns.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | column -t -------------------------------------------------------------------------------- /Contents/Text Filters/Source/Sort Lines.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | sort -n 4 | -------------------------------------------------------------------------------- /Contents/Text Filters/Source/toggle_single_double_quotes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilcox/Source.bbpackage/HEAD/Contents/Text Filters/Source/toggle_single_double_quotes.rb -------------------------------------------------------------------------------- /Contents/Text Filters/Source/toggle_snake_case_or_camelCase_or_PascalCase.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilcox/Source.bbpackage/HEAD/Contents/Text Filters/Source/toggle_snake_case_or_camelCase_or_PascalCase.rb -------------------------------------------------------------------------------- /Contents/Text Filters/Source/wrap_selection_in_parans.rb: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | 3 | print "(#{ARGF.read})" 4 | -------------------------------------------------------------------------------- /Contents/Text Filters/Source/wrap_selection_in_quotes.rb: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | 3 | print "\"#{ARGF.read}\"" 4 | -------------------------------------------------------------------------------- /Contents/Text Filters/Source/wrap_selection_in_square_brackets.rb: -------------------------------------------------------------------------------- 1 | #!/bin/env ruby 2 | 3 | print "[#{ARGF.read}]" 4 | -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwilcox/Source.bbpackage/HEAD/README.markdown --------------------------------------------------------------------------------