├── +Snippet ├── +Element │ ├── Array.m │ ├── Regexp.m │ ├── Tabstop.m │ ├── TabstopMultiChoice.m │ └── Text.m ├── +Variable │ ├── clipBoard.m │ ├── date.m │ ├── dayName.m │ ├── dayNameShort.m │ ├── directory.m │ ├── fileName.m │ ├── fileNameBase.m │ ├── filePath.m │ ├── hour.m │ ├── lineIndex.m │ ├── lineNumber.m │ ├── minute.m │ ├── month.m │ ├── monthName.m │ ├── monthNameShort.m │ ├── second.m │ ├── selectedText.m │ ├── userName.m │ ├── year.m │ └── yearShort.m ├── Element.m └── Snippet.m ├── .gitattributes ├── LICENSE.md ├── MATLAB Snippets.mlappinstall ├── MATLAB Snippets.prj ├── MATLAB Snippets_resources ├── icon_16.png ├── icon_24.png └── icon_48.png ├── README.md ├── dialogs ├── insertSnippetAboutDlg.m └── insertSnippetOptionsDlg.m ├── favoriteCallback.txt ├── graphics ├── about_16_16.png ├── configure_16_16.png ├── edit_16_16.png ├── help_16_16.png ├── insertSnippet_16.png ├── insertSnippet_24.png ├── insertSnippet_48.png ├── open_16_16.png └── screenshot01.png ├── html ├── 02_simple_tabstop.gif ├── 03_simple_tabstop_prefix.gif ├── 04_complex_tabstops.gif ├── 05_plain_snippet.gif ├── 06_block_operations.gif ├── add_to_favorites.png ├── insertSnippet.png ├── matlabSnippets.mlx ├── options.png ├── previewModes.png └── quick_bar.png ├── insertSnippet.m ├── insertSnippetOptions.mat ├── jsonlab-1.5 ├── AUTHORS.txt ├── ChangeLog.txt ├── LICENSE_BSD.txt ├── README.txt ├── examples │ ├── demo_jsonlab_basic.m │ ├── demo_ubjson_basic.m │ ├── example1.json │ ├── example2.json │ ├── example3.json │ ├── example4.json │ ├── jsonlab_basictest.matlab │ ├── jsonlab_selftest.m │ ├── jsonlab_selftest.matlab │ └── jsonlab_speedtest.m ├── jsonopt.m ├── loadjson.m ├── loadubjson.m ├── mergestruct.m ├── savejson.m ├── saveubjson.m ├── struct2jdata.m └── varargin2struct.m ├── matlabSnippets.html ├── snippets ├── matlab-basic.json ├── matlab-custom.json ├── matlab-examples.json ├── matlab-miscellaneous.json ├── matlab-plot.json ├── matlab-separators.json ├── matlab-textformatting.json ├── matlab-uicontrol.json └── matlab-variables.json └── utils ├── addToFavorites.m ├── editor ├── clearWordAtCaretPosion.m ├── getActiveEditor.m ├── getLineAtCaretPosition.m └── getWordAtCaretPosition.m ├── findMatchingClosingBracket.m ├── findjobj_fast.m ├── formatting ├── alignCharacter.m ├── capitalize.m ├── fillEditorLineEndByCharacter.m ├── singleSpace.m └── strAbs.m ├── getAppID.m └── regexp ├── decomposeRegexpPlaceholder.m ├── passFirstIfNotEqual.m ├── passIfEqual.m ├── passIfNotEmpty.m ├── passIfNotEqual.m └── textMate2regexprep.m /+Snippet/+Element/Array.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/+Snippet/+Element/Array.m -------------------------------------------------------------------------------- /+Snippet/+Element/Regexp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/+Snippet/+Element/Regexp.m -------------------------------------------------------------------------------- /+Snippet/+Element/Tabstop.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/+Snippet/+Element/Tabstop.m -------------------------------------------------------------------------------- /+Snippet/+Element/TabstopMultiChoice.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/+Snippet/+Element/TabstopMultiChoice.m -------------------------------------------------------------------------------- /+Snippet/+Element/Text.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/+Snippet/+Element/Text.m -------------------------------------------------------------------------------- /+Snippet/+Variable/clipBoard.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/+Snippet/+Variable/clipBoard.m -------------------------------------------------------------------------------- /+Snippet/+Variable/date.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/+Snippet/+Variable/date.m -------------------------------------------------------------------------------- /+Snippet/+Variable/dayName.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/+Snippet/+Variable/dayName.m -------------------------------------------------------------------------------- /+Snippet/+Variable/dayNameShort.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/+Snippet/+Variable/dayNameShort.m -------------------------------------------------------------------------------- /+Snippet/+Variable/directory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/+Snippet/+Variable/directory.m -------------------------------------------------------------------------------- /+Snippet/+Variable/fileName.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/+Snippet/+Variable/fileName.m -------------------------------------------------------------------------------- /+Snippet/+Variable/fileNameBase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/+Snippet/+Variable/fileNameBase.m -------------------------------------------------------------------------------- /+Snippet/+Variable/filePath.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/+Snippet/+Variable/filePath.m -------------------------------------------------------------------------------- /+Snippet/+Variable/hour.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/+Snippet/+Variable/hour.m -------------------------------------------------------------------------------- /+Snippet/+Variable/lineIndex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/+Snippet/+Variable/lineIndex.m -------------------------------------------------------------------------------- /+Snippet/+Variable/lineNumber.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/+Snippet/+Variable/lineNumber.m -------------------------------------------------------------------------------- /+Snippet/+Variable/minute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/+Snippet/+Variable/minute.m -------------------------------------------------------------------------------- /+Snippet/+Variable/month.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/+Snippet/+Variable/month.m -------------------------------------------------------------------------------- /+Snippet/+Variable/monthName.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/+Snippet/+Variable/monthName.m -------------------------------------------------------------------------------- /+Snippet/+Variable/monthNameShort.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/+Snippet/+Variable/monthNameShort.m -------------------------------------------------------------------------------- /+Snippet/+Variable/second.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/+Snippet/+Variable/second.m -------------------------------------------------------------------------------- /+Snippet/+Variable/selectedText.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/+Snippet/+Variable/selectedText.m -------------------------------------------------------------------------------- /+Snippet/+Variable/userName.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/+Snippet/+Variable/userName.m -------------------------------------------------------------------------------- /+Snippet/+Variable/year.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/+Snippet/+Variable/year.m -------------------------------------------------------------------------------- /+Snippet/+Variable/yearShort.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/+Snippet/+Variable/yearShort.m -------------------------------------------------------------------------------- /+Snippet/Element.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/+Snippet/Element.m -------------------------------------------------------------------------------- /+Snippet/Snippet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/+Snippet/Snippet.m -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.html linguist-documentation=true 2 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MATLAB Snippets.mlappinstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/MATLAB Snippets.mlappinstall -------------------------------------------------------------------------------- /MATLAB Snippets.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/MATLAB Snippets.prj -------------------------------------------------------------------------------- /MATLAB Snippets_resources/icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/MATLAB Snippets_resources/icon_16.png -------------------------------------------------------------------------------- /MATLAB Snippets_resources/icon_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/MATLAB Snippets_resources/icon_24.png -------------------------------------------------------------------------------- /MATLAB Snippets_resources/icon_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/MATLAB Snippets_resources/icon_48.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/README.md -------------------------------------------------------------------------------- /dialogs/insertSnippetAboutDlg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/dialogs/insertSnippetAboutDlg.m -------------------------------------------------------------------------------- /dialogs/insertSnippetOptionsDlg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/dialogs/insertSnippetOptionsDlg.m -------------------------------------------------------------------------------- /favoriteCallback.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/favoriteCallback.txt -------------------------------------------------------------------------------- /graphics/about_16_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/graphics/about_16_16.png -------------------------------------------------------------------------------- /graphics/configure_16_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/graphics/configure_16_16.png -------------------------------------------------------------------------------- /graphics/edit_16_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/graphics/edit_16_16.png -------------------------------------------------------------------------------- /graphics/help_16_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/graphics/help_16_16.png -------------------------------------------------------------------------------- /graphics/insertSnippet_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/graphics/insertSnippet_16.png -------------------------------------------------------------------------------- /graphics/insertSnippet_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/graphics/insertSnippet_24.png -------------------------------------------------------------------------------- /graphics/insertSnippet_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/graphics/insertSnippet_48.png -------------------------------------------------------------------------------- /graphics/open_16_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/graphics/open_16_16.png -------------------------------------------------------------------------------- /graphics/screenshot01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/graphics/screenshot01.png -------------------------------------------------------------------------------- /html/02_simple_tabstop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/html/02_simple_tabstop.gif -------------------------------------------------------------------------------- /html/03_simple_tabstop_prefix.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/html/03_simple_tabstop_prefix.gif -------------------------------------------------------------------------------- /html/04_complex_tabstops.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/html/04_complex_tabstops.gif -------------------------------------------------------------------------------- /html/05_plain_snippet.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/html/05_plain_snippet.gif -------------------------------------------------------------------------------- /html/06_block_operations.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/html/06_block_operations.gif -------------------------------------------------------------------------------- /html/add_to_favorites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/html/add_to_favorites.png -------------------------------------------------------------------------------- /html/insertSnippet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/html/insertSnippet.png -------------------------------------------------------------------------------- /html/matlabSnippets.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/html/matlabSnippets.mlx -------------------------------------------------------------------------------- /html/options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/html/options.png -------------------------------------------------------------------------------- /html/previewModes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/html/previewModes.png -------------------------------------------------------------------------------- /html/quick_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/html/quick_bar.png -------------------------------------------------------------------------------- /insertSnippet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/insertSnippet.m -------------------------------------------------------------------------------- /insertSnippetOptions.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/insertSnippetOptions.mat -------------------------------------------------------------------------------- /jsonlab-1.5/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/jsonlab-1.5/AUTHORS.txt -------------------------------------------------------------------------------- /jsonlab-1.5/ChangeLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/jsonlab-1.5/ChangeLog.txt -------------------------------------------------------------------------------- /jsonlab-1.5/LICENSE_BSD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/jsonlab-1.5/LICENSE_BSD.txt -------------------------------------------------------------------------------- /jsonlab-1.5/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/jsonlab-1.5/README.txt -------------------------------------------------------------------------------- /jsonlab-1.5/examples/demo_jsonlab_basic.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/jsonlab-1.5/examples/demo_jsonlab_basic.m -------------------------------------------------------------------------------- /jsonlab-1.5/examples/demo_ubjson_basic.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/jsonlab-1.5/examples/demo_ubjson_basic.m -------------------------------------------------------------------------------- /jsonlab-1.5/examples/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/jsonlab-1.5/examples/example1.json -------------------------------------------------------------------------------- /jsonlab-1.5/examples/example2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/jsonlab-1.5/examples/example2.json -------------------------------------------------------------------------------- /jsonlab-1.5/examples/example3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/jsonlab-1.5/examples/example3.json -------------------------------------------------------------------------------- /jsonlab-1.5/examples/example4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/jsonlab-1.5/examples/example4.json -------------------------------------------------------------------------------- /jsonlab-1.5/examples/jsonlab_basictest.matlab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/jsonlab-1.5/examples/jsonlab_basictest.matlab -------------------------------------------------------------------------------- /jsonlab-1.5/examples/jsonlab_selftest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/jsonlab-1.5/examples/jsonlab_selftest.m -------------------------------------------------------------------------------- /jsonlab-1.5/examples/jsonlab_selftest.matlab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/jsonlab-1.5/examples/jsonlab_selftest.matlab -------------------------------------------------------------------------------- /jsonlab-1.5/examples/jsonlab_speedtest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/jsonlab-1.5/examples/jsonlab_speedtest.m -------------------------------------------------------------------------------- /jsonlab-1.5/jsonopt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/jsonlab-1.5/jsonopt.m -------------------------------------------------------------------------------- /jsonlab-1.5/loadjson.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/jsonlab-1.5/loadjson.m -------------------------------------------------------------------------------- /jsonlab-1.5/loadubjson.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/jsonlab-1.5/loadubjson.m -------------------------------------------------------------------------------- /jsonlab-1.5/mergestruct.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/jsonlab-1.5/mergestruct.m -------------------------------------------------------------------------------- /jsonlab-1.5/savejson.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/jsonlab-1.5/savejson.m -------------------------------------------------------------------------------- /jsonlab-1.5/saveubjson.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/jsonlab-1.5/saveubjson.m -------------------------------------------------------------------------------- /jsonlab-1.5/struct2jdata.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/jsonlab-1.5/struct2jdata.m -------------------------------------------------------------------------------- /jsonlab-1.5/varargin2struct.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/jsonlab-1.5/varargin2struct.m -------------------------------------------------------------------------------- /matlabSnippets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/matlabSnippets.html -------------------------------------------------------------------------------- /snippets/matlab-basic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/snippets/matlab-basic.json -------------------------------------------------------------------------------- /snippets/matlab-custom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/snippets/matlab-custom.json -------------------------------------------------------------------------------- /snippets/matlab-examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/snippets/matlab-examples.json -------------------------------------------------------------------------------- /snippets/matlab-miscellaneous.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/snippets/matlab-miscellaneous.json -------------------------------------------------------------------------------- /snippets/matlab-plot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/snippets/matlab-plot.json -------------------------------------------------------------------------------- /snippets/matlab-separators.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/snippets/matlab-separators.json -------------------------------------------------------------------------------- /snippets/matlab-textformatting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/snippets/matlab-textformatting.json -------------------------------------------------------------------------------- /snippets/matlab-uicontrol.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/snippets/matlab-uicontrol.json -------------------------------------------------------------------------------- /snippets/matlab-variables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/snippets/matlab-variables.json -------------------------------------------------------------------------------- /utils/addToFavorites.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/utils/addToFavorites.m -------------------------------------------------------------------------------- /utils/editor/clearWordAtCaretPosion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/utils/editor/clearWordAtCaretPosion.m -------------------------------------------------------------------------------- /utils/editor/getActiveEditor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/utils/editor/getActiveEditor.m -------------------------------------------------------------------------------- /utils/editor/getLineAtCaretPosition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/utils/editor/getLineAtCaretPosition.m -------------------------------------------------------------------------------- /utils/editor/getWordAtCaretPosition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/utils/editor/getWordAtCaretPosition.m -------------------------------------------------------------------------------- /utils/findMatchingClosingBracket.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/utils/findMatchingClosingBracket.m -------------------------------------------------------------------------------- /utils/findjobj_fast.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/utils/findjobj_fast.m -------------------------------------------------------------------------------- /utils/formatting/alignCharacter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/utils/formatting/alignCharacter.m -------------------------------------------------------------------------------- /utils/formatting/capitalize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/utils/formatting/capitalize.m -------------------------------------------------------------------------------- /utils/formatting/fillEditorLineEndByCharacter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/utils/formatting/fillEditorLineEndByCharacter.m -------------------------------------------------------------------------------- /utils/formatting/singleSpace.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/utils/formatting/singleSpace.m -------------------------------------------------------------------------------- /utils/formatting/strAbs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/utils/formatting/strAbs.m -------------------------------------------------------------------------------- /utils/getAppID.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/utils/getAppID.m -------------------------------------------------------------------------------- /utils/regexp/decomposeRegexpPlaceholder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/utils/regexp/decomposeRegexpPlaceholder.m -------------------------------------------------------------------------------- /utils/regexp/passFirstIfNotEqual.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/utils/regexp/passFirstIfNotEqual.m -------------------------------------------------------------------------------- /utils/regexp/passIfEqual.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/utils/regexp/passIfEqual.m -------------------------------------------------------------------------------- /utils/regexp/passIfNotEmpty.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/utils/regexp/passIfNotEmpty.m -------------------------------------------------------------------------------- /utils/regexp/passIfNotEqual.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/utils/regexp/passIfNotEqual.m -------------------------------------------------------------------------------- /utils/regexp/textMate2regexprep.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trnkap/matlab-snippets/HEAD/utils/regexp/textMate2regexprep.m --------------------------------------------------------------------------------